diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-27 22:08:50 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-29 14:26:14 +0100 |
commit | 411225aabce57411d1544a7bbc6f6bee6d8ef638 (patch) | |
tree | f3dcc31c02aaf9507f369239950c7c8349248b07 /libavformat/omaenc.c | |
parent | c19981774880919c7f9417014bdcb1fb63f69231 (diff) | |
download | ffmpeg-411225aabce57411d1544a7bbc6f6bee6d8ef638.tar.gz |
id3v2enc: split ff_id3v2_write().
This will allow writing the tag in several steps, needed for writing
attached pictures.
Diffstat (limited to 'libavformat/omaenc.c')
-rw-r--r-- | libavformat/omaenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/omaenc.c b/libavformat/omaenc.c index e932b4bbc1..c3ee0e8de1 100644 --- a/libavformat/omaenc.c +++ b/libavformat/omaenc.c @@ -49,7 +49,7 @@ static av_cold int oma_write_header(AVFormatContext *s) } /* Metadata; OpenMG does not support ID3v2.4 */ - ff_id3v2_write(s, 3, ID3v2_EA3_MAGIC); + ff_id3v2_write_simple(s, 3, ID3v2_EA3_MAGIC); ffio_wfourcc(s->pb, "EA3\0"); avio_w8(s->pb, EA3_HEADER_SIZE >> 7); |