summaryrefslogtreecommitdiffstats
path: root/ffmpeg_files/taglists.h
diff options
context:
space:
mode:
authorUoti Urpala <uau@mplayer2.org>2012-02-01 18:34:51 +0200
committerUoti Urpala <uau@mplayer2.org>2012-02-01 22:46:27 +0200
commitcdb6d157ccb2d311afb72b7cbf128c3866e85ec6 (patch)
tree94dfc8f8a2fc895d796657ea74e995fb33687ca5 /ffmpeg_files/taglists.h
parentdb8cdc73e38c3490389212d94ae9b92dfddd5975 (diff)
downloadmpv-cdb6d157ccb2d311afb72b7cbf128c3866e85ec6.tar.bz2
mpv-cdb6d157ccb2d311afb72b7cbf128c3866e85ec6.tar.xz
demux_lavf: use Libav RIFF tag lists directly
Change demux_lavf to use CodecID -> RIFF tag mappings that are now available through the public Libav API. Previously it used a copy in ffmpeg_files/taglists.c. That can now be deleted.
Diffstat (limited to 'ffmpeg_files/taglists.h')
-rw-r--r--ffmpeg_files/taglists.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/ffmpeg_files/taglists.h b/ffmpeg_files/taglists.h
deleted file mode 100644
index 4c8f9bfdbd..0000000000
--- a/ffmpeg_files/taglists.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#include "libavcodec/avcodec.h"
-
-struct mp_AVCodecTag {
- int id;
- unsigned int tag;
-};
-
-unsigned int mp_av_codec_get_tag(const struct mp_AVCodecTag * const *tags, enum CodecID id);
-enum CodecID mp_av_codec_get_id(const struct mp_AVCodecTag * const *tags, unsigned int tag);