Browse Source

remove deprecated codec_get_{bmp,wav}_{id,tag}()

Originally committed as revision 9530 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 18 years ago
parent
commit
b3633dee58
2 changed files with 0 additions and 36 deletions
  1. +0
    -20
      libavformat/riff.c
  2. +0
    -16
      libavformat/riff.h

+ 0
- 20
libavformat/riff.c View File

@@ -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)
{


+ 0
- 16
libavformat/riff.h View File

@@ -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…
Cancel
Save