changeset 2230:0ff503c4caef libavformat

remove deprecated codec_get_{bmp,wav}_{id,tag}()
author mru
date Sun, 08 Jul 2007 01:49:24 +0000
parents 4db0808c3f91
children 7ad682f38b9a
files riff.c riff.h
diffstat 2 files changed, 0 insertions(+), 36 deletions(-) [+]
line wrap: on
line diff
--- 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)
 {
--- 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