Commit 27dc20a0 authored by Michael Niedermayer's avatar Michael Niedermayer

set supported pixel formats correctly

Originally committed as revision 5896 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 832e6e90
......@@ -1255,6 +1255,7 @@ AVCodec huffyuv_encoder = {
encode_init,
encode_frame,
encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV422P, -1},
};
AVCodec ffvhuff_encoder = {
......@@ -1265,6 +1266,7 @@ AVCodec ffvhuff_encoder = {
encode_init,
encode_frame,
encode_end,
.pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_YUV422P, -1},
};
#endif //CONFIG_ENCODERS
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