From ec0275843d8eb933699807da81f6f366291f034a Mon Sep 17 00:00:00 2001 From: Andreas Cadhalpun Date: Sun, 11 Oct 2015 22:31:45 +0200 Subject: 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 Signed-off-by: Andreas Cadhalpun --- libavcodec/iff.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'libavcodec/iff.c') 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 -- cgit v1.2.3