From c2e5c6db395d599758e72557d46bdc6c743f85f8 Mon Sep 17 00:00:00 2001 From: benoit Date: Fri, 27 Feb 2009 15:49:32 +0000 Subject: [PATCH] =?utf8?q?Use=20ff=5Fhwaccel=5Fpixfmt=5Flist=5F420[]=20in?= =?utf8?q?=20H.263=20decoder.=20Patch=20by=20Gwenol=C3=A9=20Beauchesne.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17645 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/h263dec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 9a7b84a78..3cca95d3b 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -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 = { -- 2.39.2