diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-03-08 20:35:27 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-03-08 20:35:27 +0000 |
commit | d8a57c6db9a7b7b98590d0a239289de7215ad8d3 (patch) | |
tree | 433e2557233c34450dc01695814ae261b5eb21ef /libavcodec/mpeg12.c | |
parent | c1e292ea9137e7877131c2cf7be651d5273b6b62 (diff) | |
download | ffmpeg-d8a57c6db9a7b7b98590d0a239289de7215ad8d3.tar.gz |
(10l) supported pix_fmts forgotten
Originally committed as revision 4022 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.c')
-rw-r--r-- | libavcodec/mpeg12.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpeg12.c b/libavcodec/mpeg12.c index 8ec8f56755..b2cce663b9 100644 --- a/libavcodec/mpeg12.c +++ b/libavcodec/mpeg12.c @@ -3142,6 +3142,7 @@ AVCodec mpeg1video_encoder = { MPV_encode_picture, MPV_encode_end, .supported_framerates= frame_rate_tab+1, + .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, .capabilities= CODEC_CAP_DELAY, }; @@ -3154,6 +3155,7 @@ AVCodec mpeg2video_encoder = { MPV_encode_picture, MPV_encode_end, .supported_framerates= frame_rate_tab+1, + .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, -1}, .capabilities= CODEC_CAP_DELAY, }; #endif |