summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2009-03-01 00:12:08 +0000
committerAurelien Jacobs <aurel@gnuage.org>2009-03-01 00:12:08 +0000
commit719e721a145680bec580f644788179435b43754a (patch)
tree35ee2a65509d2e760c22a7d126210cafdf7c75dc /libavformat/avformat.h
parentf610a9f284e8319907962b1be4d93051444bcf90 (diff)
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.h4
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;