mirror of https://git.ffmpeg.org/ffmpeg.git
(10l) supported pix_fmts forgotten
Originally committed as revision 4022 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c1e292ea91
commit
d8a57c6db9
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue