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/avformat.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/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 94764f3875..d1d6d02b2f 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -309,7 +309,7 @@ typedef struct AVOutputFormat { enum CodecID subtitle_codec; /**< default subtitle codec */ - AVMetadataConv *metadata_conv; + const AVMetadataConv *metadata_conv; /* private fields */ struct AVOutputFormat *next; @@ -390,7 +390,7 @@ typedef struct AVInputFormat { */ int (*read_seek2)(struct AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags); - AVMetadataConv *metadata_conv; + const AVMetadataConv *metadata_conv; /* private fields */ struct AVInputFormat *next; |