summaryrefslogtreecommitdiff
path: root/libavformat/avienc.c
diff options
context:
space:
mode:
authorVictor Vasiliev <vasilvv@gmail.com>2011-11-25 23:29:12 +0400
committerAnton Khirnov <anton@khirnov.net>2012-10-16 18:50:36 +0200
commit71e92414bfd79e56ea6fff174a665ff7b9b86e68 (patch)
treed2d780db102f7123021c0ce9ef8d13317f479f3d /libavformat/avienc.c
parenta119c64e38bd9bfc5c3c94b70b321619c6fabac9 (diff)
lavf: move RIFF INFO tag writing from avienc to riff
It will be useful in the wav muxer. Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat/avienc.c')
-rw-r--r--libavformat/avienc.c24
1 files changed, 2 insertions, 22 deletions
diff --git a/libavformat/avienc.c b/libavformat/avienc.c
index fa6321200e..9d1f5102a1 100644
--- a/libavformat/avienc.c
+++ b/libavformat/avienc.c
@@ -105,19 +105,6 @@ static char* avi_stream2fourcc(char* tag, int index, enum AVMediaType type)
return tag;
}
-static void avi_write_info_tag(AVIOContext *pb, const char *tag, const char *str)
-{
- int len = strlen(str);
- if (len > 0) {
- len++;
- ffio_wfourcc(pb, tag);
- avio_wl32(pb, len);
- avio_put_str(pb, str);
- if (len & 1)
- avio_w8(pb, 0);
- }
-}
-
static int avi_write_counters(AVFormatContext* s, int riff_id)
{
AVIOContext *pb = s->pb;
@@ -300,7 +287,7 @@ static int avi_write_header(AVFormatContext *s)
}
ff_end_tag(pb, strf);
if ((t = av_dict_get(s->streams[i]->metadata, "title", NULL, 0))) {
- avi_write_info_tag(s->pb, "strn", t->value);
+ ff_riff_write_info_tag(s->pb, "strn", t->value);
t = NULL;
}
}
@@ -377,14 +364,7 @@ static int avi_write_header(AVFormatContext *s)
ff_end_tag(pb, list1);
- list2 = ff_start_tag(pb, "LIST");
- ffio_wfourcc(pb, "INFO");
- ff_metadata_conv(&s->metadata, ff_riff_info_conv, NULL);
- for (i = 0; *ff_riff_tags[i]; i++) {
- if ((t = av_dict_get(s->metadata, ff_riff_tags[i], NULL, AV_DICT_MATCH_CASE)))
- avi_write_info_tag(s->pb, t->key, t->value);
- }
- ff_end_tag(pb, list2);
+ ff_riff_write_info(s);
/* some padding for easier tag editing */
list2 = ff_start_tag(pb, "JUNK");