diff options
author | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2015-10-11 22:31:45 +0200 |
---|---|---|
committer | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2015-10-12 00:21:13 +0200 |
commit | ec0275843d8eb933699807da81f6f366291f034a (patch) | |
tree | f4adafb9533207c195c2a228a371541c7ca73f09 /libavcodec/iff.c | |
parent | 148418a2bce3a7862f2d00ed4a424620c0d51e18 (diff) | |
download | ffmpeg-ec0275843d8eb933699807da81f6f366291f034a.tar.gz |
avcodec: remove leftover iff_byterun1 decoder
It was merged with the iff_ilbm decoder in commit
929a24efff9a208a52748605eb412ffb915c1403.
Define AV_CODEC_ID_IFF_BYTERUN1 as AV_CODEC_ID_IFF_ILBM for API
compatibility.
Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Diffstat (limited to 'libavcodec/iff.c')
-rw-r--r-- | libavcodec/iff.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavcodec/iff.c b/libavcodec/iff.c index 9d1f9a77d1..49df17ccf8 100644 --- a/libavcodec/iff.c +++ b/libavcodec/iff.c @@ -890,16 +890,3 @@ AVCodec ff_iff_ilbm_decoder = { .capabilities = AV_CODEC_CAP_DR1, }; #endif -#if CONFIG_IFF_BYTERUN1_DECODER -AVCodec ff_iff_byterun1_decoder = { - .name = "iff", - .long_name = NULL_IF_CONFIG_SMALL("IFF"), - .type = AVMEDIA_TYPE_VIDEO, - .id = AV_CODEC_ID_IFF_BYTERUN1, - .priv_data_size = sizeof(IffContext), - .init = decode_init, - .close = decode_end, - .decode = decode_frame, - .capabilities = AV_CODEC_CAP_DR1, -}; -#endif |