diff options
author | James Darnley | 2013-12-30 18:13:08 +0100 |
---|---|---|
committer | Michael Niedermayer | 2014-01-24 22:50:06 +0100 |
commit | 0de03fd6a1f1eed8ca18908fc9529b36508ac144 (patch) | |
tree | 00eeaeefbf74e2bf8b43cb57219dc9608f29ee5e /libavformat/id3v2.h | |
parent | c14b011a97f370c5cb0b8af123e916fa6932a72b (diff) |
lavf/id3v2enc: use metadata_header_padding
As with the change to flacenc this allows the user to control the amount
of padding they want added to the file.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/id3v2.h')
-rw-r--r-- | libavformat/id3v2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/id3v2.h b/libavformat/id3v2.h index 935e934311..eb4dc799e6 100644 --- a/libavformat/id3v2.h +++ b/libavformat/id3v2.h @@ -134,7 +134,7 @@ int ff_id3v2_write_apic(AVFormatContext *s, ID3v2EncContext *id3, AVPacket *pkt) /** * Finalize an opened ID3v2 tag. */ -void ff_id3v2_finish(ID3v2EncContext *id3, AVIOContext *pb); +void ff_id3v2_finish(ID3v2EncContext *id3, AVIOContext *pb, int padding_bytes); /** * Write an ID3v2 tag containing all global metadata from s. |