Fix declarations in mp_taglists.h and include it in mp_taglists.c to

make such mismatches impossible in the future.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29901 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-11-11 11:52:36 +00:00
parent c62952a9ac
commit 30ffc2dea4
2 changed files with 4 additions and 3 deletions

View File

@ -18,6 +18,7 @@
#include "config.h"
#include "mp_taglists.h"
#include "libavformat/avformat.h"
#include "libavformat/riff.h"

View File

@ -19,10 +19,10 @@
#ifndef MPLAYER_MP_TAGLISTS_H
#define MPLAYER_MP_TAGLISTS_H
extern const struct AVCodecTag *mp_wav_taglists[];
extern const struct AVCodecTag * const mp_wav_taglists[];
extern const struct AVCodecTag *mp_codecid_override_taglists[];
extern const struct AVCodecTag * const mp_codecid_override_taglists[];
extern const struct AVCodecTag *mp_bmp_taglists[];
extern const struct AVCodecTag * const mp_bmp_taglists[];
#endif /* MPLAYER_MP_TAGLISTS_H */