Hi,
I wanted to scale the video output from 720x480 to 1200x256 resolution. I tried using libswscale but it is not scaling the output video.
I modified the file under dir vlc\modules\codec\avcodec\video.c and include the header file "# include <libswscale/swscale.h>" and added the following functions sws_getContext() and sws_scale().
These has been added under function picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )after avcodec_decode_video(). But it is not scaling the video output.
Can anybody please help me to scale the output video before displaying, also the necessary steps and functions.
-ben