Commit 6e4946ce authored by michael's avatar michael

(10l) supported pix_fmts forgotten


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4022 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 421de3b8
...@@ -3142,6 +3142,7 @@ AVCodec mpeg1video_encoder = { ...@@ -3142,6 +3142,7 @@ AVCodec mpeg1video_encoder = {
MPV_encode_picture, MPV_encode_picture,
MPV_encode_end, MPV_encode_end,
.supported_framerates= frame_rate_tab+1, .supported_framerates= frame_rate_tab+1,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
.capabilities= CODEC_CAP_DELAY, .capabilities= CODEC_CAP_DELAY,
}; };
...@@ -3154,6 +3155,7 @@ AVCodec mpeg2video_encoder = { ...@@ -3154,6 +3155,7 @@ AVCodec mpeg2video_encoder = {
MPV_encode_picture, MPV_encode_picture,
MPV_encode_end, MPV_encode_end,
.supported_framerates= frame_rate_tab+1, .supported_framerates= frame_rate_tab+1,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1},
.capabilities= CODEC_CAP_DELAY, .capabilities= CODEC_CAP_DELAY,
}; };
#endif #endif
......
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