diff options
author | Måns Rullgård <mans@mansr.com> | 2007-07-08 01:49:24 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-07-08 01:49:24 +0000 |
commit | b3633dee5820cdaa45bf46ebe955b1af59f878a2 (patch) | |
tree | 2416d814134526d3a4c5bc107e11a054dc35041f /libavformat/riff.c | |
parent | 6927c84c824134d21623259708c6abd0059d5807 (diff) | |
download | ffmpeg-b3633dee5820cdaa45bf46ebe955b1af59f878a2.tar.gz |
remove deprecated codec_get_{bmp,wav}_{id,tag}()
Originally committed as revision 9530 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r-- | libavformat/riff.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c index 2e95f377e2..3b8c736889 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -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) { |