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/avcodec.h | |
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/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 22a68fbfd9..9b7ab3c32e 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -241,7 +241,7 @@ enum AVCodecID { AV_CODEC_ID_ANM, AV_CODEC_ID_BINKVIDEO, AV_CODEC_ID_IFF_ILBM, - AV_CODEC_ID_IFF_BYTERUN1, +#define AV_CODEC_ID_IFF_BYTERUN1 AV_CODEC_ID_IFF_ILBM AV_CODEC_ID_KGV1, AV_CODEC_ID_YOP, AV_CODEC_ID_VP8, |