diff libmpdemux/mp_taglists.h @ 34155:505b49b171f4

Change codec tag/id conversion to not use ff_codec_bmp_tags/ff_codec_wav_tags. This fixes linking against latest FFmpeg dynamic libs.
author reimar
date Sun, 23 Oct 2011 12:12:43 +0000
parents 1a2c12c0de26
children 3891a9f2f36b
line wrap: on
line diff
--- a/libmpdemux/mp_taglists.h	Sun Oct 23 12:03:40 2011 +0000
+++ b/libmpdemux/mp_taglists.h	Sun Oct 23 12:12:43 2011 +0000
@@ -19,10 +19,9 @@
 #ifndef MPLAYER_MP_TAGLISTS_H
 #define MPLAYER_MP_TAGLISTS_H
 
-extern const struct AVCodecTag * const mp_wav_taglists[];
+#include <stdint.h>
 
-extern const struct AVCodecTag * const mp_codecid_override_taglists[];
-
-extern const struct AVCodecTag * const mp_bmp_taglists[];
+enum CodecID mp_tag2codec_id(uint32_t tag, int audio);
+uint32_t mp_codec_id2tag(enum CodecID codec_id, uint32_t old_tag, int audio);
 
 #endif /* MPLAYER_MP_TAGLISTS_H */