diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-01-19 10:21:29 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-29 13:57:59 +0100 |
commit | b73ad746606e193aa3e2dde20ce8afeeb8fa7e0e (patch) | |
tree | 218de164d63d035da48e106d9dcdc259027450e2 /libavformat/matroska.h | |
parent | eaea76d72ce56f0c9ae4b15dbb6629ef1b027de7 (diff) | |
download | ffmpeg-b73ad746606e193aa3e2dde20ce8afeeb8fa7e0e.tar.gz |
lavf: move CodecMime from matroska.h to internal.h
it will be useful for attached pictures in ID3v2
Diffstat (limited to 'libavformat/matroska.h')
-rw-r--r-- | libavformat/matroska.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavformat/matroska.h b/libavformat/matroska.h index 8e747e6a9c..ada735f172 100644 --- a/libavformat/matroska.h +++ b/libavformat/matroska.h @@ -24,6 +24,7 @@ #include "libavcodec/avcodec.h" #include "metadata.h" +#include "internal.h" /* EBML version supported */ #define EBML_VERSION 1 @@ -245,11 +246,6 @@ typedef struct CodecTags{ enum CodecID id; }CodecTags; -typedef struct CodecMime{ - char str[32]; - enum CodecID id; -}CodecMime; - /* max. depth in the EBML tree structure */ #define EBML_MAX_DEPTH 16 |