From d7525cba23654452346c1c16456e53b3bd206ba0 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 7 Jan 2010 06:25:41 +0000 Subject: Split out intel H263 decoder. Originally committed as revision 21054 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h263dec.c | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'libavcodec/h263dec.c') diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index dda414d504..e63a210474 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -414,7 +414,7 @@ retry: } ret = ff_mpeg4_decode_picture_header(s, &s->gb); } else if (s->codec_id == CODEC_ID_H263I) { - ret = intel_h263_decode_picture_header(s); + ret = ff_intel_h263_decode_picture_header(s); } else if (CONFIG_FLV_DECODER && s->h263_flv) { ret = ff_flv_decode_picture_header(s); } else { @@ -817,20 +817,6 @@ AVCodec wmv1_decoder = { .pix_fmts= ff_pixfmt_list_420, }; -AVCodec h263i_decoder = { - "h263i", - CODEC_TYPE_VIDEO, - CODEC_ID_H263I, - sizeof(MpegEncContext), - ff_h263_decode_init, - NULL, - ff_h263_decode_end, - ff_h263_decode_frame, - CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, - .long_name = NULL_IF_CONFIG_SMALL("Intel H.263"), - .pix_fmts= ff_pixfmt_list_420, -}; - #if CONFIG_MPEG4_VDPAU_DECODER AVCodec mpeg4_vdpau_decoder = { "mpeg4_vdpau", -- cgit v1.2.3