# HG changeset patch # User mru # Date 1183859364 0 # Node ID 0ff503c4caeff80aeaea9cf2990528fd7b5df18d # Parent 4db0808c3f91ca319b7ee043db3559a02540d3ad remove deprecated codec_get_{bmp,wav}_{id,tag}() diff -r 4db0808c3f91 -r 0ff503c4caef riff.c --- a/riff.c Sun Jul 08 01:41:09 2007 +0000 +++ b/riff.c Sun Jul 08 01:49:24 2007 +0000 @@ -258,26 +258,6 @@ return CODEC_ID_NONE; } -unsigned int codec_get_bmp_tag(int id) -{ - return codec_get_tag(codec_bmp_tags, id); -} - -unsigned int codec_get_wav_tag(int id) -{ - return codec_get_tag(codec_wav_tags, id); -} - -enum CodecID codec_get_bmp_id(unsigned int tag) -{ - return codec_get_id(codec_bmp_tags, tag); -} - -enum CodecID codec_get_wav_id(unsigned int tag) -{ - return codec_get_id(codec_wav_tags, tag); -} - #ifdef CONFIG_MUXERS offset_t start_tag(ByteIOContext *pb, const char *tag) { diff -r 4db0808c3f91 -r 0ff503c4caef riff.h --- a/riff.h Sun Jul 08 01:41:09 2007 +0000 +++ b/riff.h Sun Jul 08 01:49:24 2007 +0000 @@ -49,22 +49,6 @@ unsigned int codec_get_tag(const AVCodecTag *tags, int id); enum CodecID codec_get_id(const AVCodecTag *tags, unsigned int tag); -/** - * @deprecated Use av_codec_get_tag instead. - */ -unsigned int codec_get_bmp_tag(int id) attribute_deprecated; -/** - * @deprecated Use av_codec_get_tag instead. - */ -unsigned int codec_get_wav_tag(int id) attribute_deprecated; -/** - * @deprecated Use av_codec_get_id instead. - */ -enum CodecID codec_get_bmp_id(unsigned int tag) attribute_deprecated; -/** - * @deprecated Use av_codec_get_id instead. - */ -enum CodecID codec_get_wav_id(unsigned int tag) attribute_deprecated; void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale); #endif