diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-03-01 00:12:08 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-03-01 00:12:08 +0000 |
commit | 719e721a145680bec580f644788179435b43754a (patch) | |
tree | 35ee2a65509d2e760c22a7d126210cafdf7c75dc /libavformat/matroska.h | |
parent | f610a9f284e8319907962b1be4d93051444bcf90 (diff) | |
download | ffmpeg-719e721a145680bec580f644788179435b43754a.tar.gz |
Add some basic metadata conversion tables for matroska and asf.
Add missing const qualifiers for metadata_conv in AV{In|Out}putFormat.
Originally committed as revision 17671 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroska.h')
-rw-r--r-- | libavformat/matroska.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/matroska.h b/libavformat/matroska.h index a66c10e1d3..40ab3a7424 100644 --- a/libavformat/matroska.h +++ b/libavformat/matroska.h @@ -23,6 +23,7 @@ #define AVFORMAT_MATROSKA_H #include "libavcodec/avcodec.h" +#include "metadata.h" /* EBML version supported */ #define EBML_VERSION 1 @@ -235,5 +236,6 @@ typedef struct CodecMime{ extern const CodecTags ff_mkv_codec_tags[]; extern const CodecMime ff_mkv_mime_tags[]; +extern const AVMetadataConv ff_mkv_metadata_conv[]; #endif /* AVFORMAT_MATROSKA_H */ |