remove deprecated codec_get_{bmp,wav}_{id,tag}()
Originally committed as revision 9530 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6927c84c82
commit
b3633dee58
@ -258,26 +258,6 @@ enum CodecID av_codec_get_id(const AVCodecTag *tags[4], unsigned int tag)
|
||||
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)
|
||||
{
|
||||
|
@ -49,22 +49,6 @@ extern const AVCodecTag codec_wav_tags[];
|
||||
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user