I want to convert YUV Packed (Or YUV Planner) in to Standard BMP file. in VC++2010,
Through Command line and ffmapeg i am able to convert it
(example:1)
"ffmpeg -video_size 2448X2050 -pixel_format uyvy422 -i sample.yuv sample.bmp"
(Example:2)
"ffmpeg -video_size 2448X2050 -pixel_format yuvj420 -i sample.yuv sample.bmp"
but i am looking way out that this operation to be performed with in my vc++2010 code (through ffmpeg if possible)
please suggest/recommend how do i proceed.