summaryrefslogtreecommitdiffstats
path: root/libmpdemux/mp_taglists.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-22 05:00:25 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-26 06:16:52 +0300
commit9ce0838ffd01371bd5b62fae38f94ce23d5339bb (patch)
tree4d787831ce5678ffa061e7c3a4b198744601b649 /libmpdemux/mp_taglists.h
parentcd4e8dc1fa2863dcce62a44dd9ea105f9f9288f4 (diff)
downloadmpv-9ce0838ffd01371bd5b62fae38f94ce23d5339bb.tar.bz2
mpv-9ce0838ffd01371bd5b62fae38f94ce23d5339bb.tar.xz
Use own mp_*_taglists code instead of libavformat internals
Use the version of code under ffmpeg_files/ instead of relying on libavformat source files to be available.
Diffstat (limited to 'libmpdemux/mp_taglists.h')
-rw-r--r--libmpdemux/mp_taglists.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/libmpdemux/mp_taglists.h b/libmpdemux/mp_taglists.h
index a5262652b7..daa9c2dbcc 100644
--- a/libmpdemux/mp_taglists.h
+++ b/libmpdemux/mp_taglists.h
@@ -19,10 +19,14 @@
#ifndef MPLAYER_MP_TAGLISTS_H
#define MPLAYER_MP_TAGLISTS_H
-extern const struct AVCodecTag *mp_wav_taglists[];
+#include <libavcodec/avcodec.h>
-extern const struct AVCodecTag *mp_wav_override_taglists[];
+#include "ffmpeg_files/taglists.h"
-extern const struct AVCodecTag *mp_bmp_taglists[];
+extern const struct mp_AVCodecTag *mp_wav_taglists[];
+
+extern const struct mp_AVCodecTag *mp_wav_override_taglists[];
+
+extern const struct mp_AVCodecTag *mp_bmp_taglists[];
#endif /* MPLAYER_MP_TAGLISTS_H */