Fix compilation: codec_wav_tags/codec_bmp_tags were renamed to

ff_codec_wav_tags/ff_codec_bmp_tags.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29382 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-06-23 17:50:08 +00:00
parent 4f1425f256
commit f29dc82d7e
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ static const AVCodecTag mp_wav_tags[] = {
{ 0, 0 },
};
const struct AVCodecTag *mp_wav_taglists[] = {codec_wav_tags, mp_wav_tags, 0};
const struct AVCodecTag *mp_wav_taglists[] = {ff_codec_wav_tags, mp_wav_tags, 0};
static const AVCodecTag mp_wav_override_tags[] = {
{ CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's')},
@ -96,5 +96,5 @@ static const AVCodecTag mp_bmp_tags[] = {
{ 0, 0 },
};
const struct AVCodecTag *mp_bmp_taglists[] = {codec_bmp_tags, mp_bmp_tags, 0};
const struct AVCodecTag *mp_bmp_taglists[] = {ff_codec_bmp_tags, mp_bmp_tags, 0};