Commit 873b72ed authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

use original image type (8-bit grayscale or 24-bit RGB) in the case of RAW video (ticket #782)

parent ec97683d
......@@ -1270,6 +1270,8 @@ bool CvVideoWriter_FFMPEG::open( const char * filename, int fourcc,
bitrate_scale = 128;
break;
case CODEC_ID_RAWVIDEO:
codec_pix_fmt = input_pix_fmt;
break;
default:
// good for lossy formats, MPEG, etc.
codec_pix_fmt = PIX_FMT_YUV420P;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment