summaryrefslogtreecommitdiff
path: root/libavformat/aiffenc.c
diff options
context:
space:
mode:
authorJames Darnley <james.darnley@gmail.com>2013-12-30 18:13:08 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-24 22:50:06 +0100
commit0de03fd6a1f1eed8ca18908fc9529b36508ac144 (patch)
tree00eeaeefbf74e2bf8b43cb57219dc9608f29ee5e /libavformat/aiffenc.c
parentc14b011a97f370c5cb0b8af123e916fa6932a72b (diff)
downloadffmpeg-0de03fd6a1f1eed8ca18908fc9529b36508ac144.tar.gz
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/aiffenc.c')
-rw-r--r--libavformat/aiffenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aiffenc.c b/libavformat/aiffenc.c
index 6e3d8bc6ad..90fc43346c 100644
--- a/libavformat/aiffenc.c
+++ b/libavformat/aiffenc.c
@@ -66,7 +66,7 @@ static int put_id3v2_tags(AVFormatContext *s, AIFFOutputContext *aiff)
return ret;
pict_list = pict_list->next;
}
- ff_id3v2_finish(&id3v2, pb);
+ ff_id3v2_finish(&id3v2, pb, s->metadata_header_padding);
end = avio_tell(pb);
size = end - pos;