diff options
author | James Darnley <james.darnley@gmail.com> | 2013-12-29 22:42:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-24 22:33:21 +0100 |
commit | 86bee7984e30cf7df6ad353be7c5153f5988e797 (patch) | |
tree | 040e64e01cf34c98fe37ec9652bddc64e2f90a34 /libavformat/utils.c | |
parent | 1d073850538694f6341e7f09cf5f8b30839df5d7 (diff) | |
download | ffmpeg-86bee7984e30cf7df6ad353be7c5153f5988e797.tar.gz |
AVFormatContext: add metadata_header_padding field
This field is used to store the number of bytes that should be written
as padding to a metadata header of a file. For example:
- The FLAC format's METADATA_BLOCK_PADDING [1]
- The ID3v2 tag format's padding [2]
[1] http://xiph.org/flac/format.html#metadata_block_padding
[2] http://id3.org/id3v2.3.0#ID3v2_overview
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index c53051155d..421dfef7df 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -103,6 +103,7 @@ MAKE_ACCESSORS(AVStream, stream, AVRational, r_frame_rate) MAKE_ACCESSORS(AVFormatContext, format, AVCodec *, video_codec) MAKE_ACCESSORS(AVFormatContext, format, AVCodec *, audio_codec) MAKE_ACCESSORS(AVFormatContext, format, AVCodec *, subtitle_codec) +MAKE_ACCESSORS(AVFormatContext, format, int, metadata_header_padding) static AVCodec *find_decoder(AVFormatContext *s, AVStream *st, enum AVCodecID codec_id) { |