Commit a4f3fdfa authored by Gwenole Beauchesne's avatar Gwenole Beauchesne Committed by Benoit Fouet

Use ff_hwaccel_pixfmt_list_420[] in H.263 decoder.

Patch by Gwenolé Beauchesne.

Originally committed as revision 17645 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6026a096
......@@ -740,7 +740,7 @@ AVCodec mpeg4_decoder = {
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
.flush= ff_mpeg_flush,
.long_name= NULL_IF_CONFIG_SMALL("MPEG-4 part 2"),
.pix_fmts= ff_pixfmt_list_420,
.pix_fmts= ff_hwaccel_pixfmt_list_420,
};
AVCodec h263_decoder = {
......@@ -755,7 +755,7 @@ AVCodec h263_decoder = {
CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY,
.flush= ff_mpeg_flush,
.long_name= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996, H.263+ / H.263-1998"),
.pix_fmts= ff_pixfmt_list_420,
.pix_fmts= ff_hwaccel_pixfmt_list_420,
};
AVCodec msmpeg4v1_decoder = {
......
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