diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 06:25:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 06:25:41 +0000 |
commit | d7525cba23654452346c1c16456e53b3bd206ba0 (patch) | |
tree | 7632fe82f8de00e4e04d41d81c91c617d65a61d1 /libavcodec/h263dec.c | |
parent | 515a5438096aec9a097de6821ff625ca605e89ee (diff) | |
download | ffmpeg-d7525cba23654452346c1c16456e53b3bd206ba0.tar.gz |
Split out intel H263 decoder.
Originally committed as revision 21054 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 16 |
1 files changed, 1 insertions, 15 deletions
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", |