summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorVictor Vasiliev <vasilvv@gmail.com>2012-10-16 10:10:16 +0200
committerAnton Khirnov <anton@khirnov.net>2012-10-16 18:51:56 +0200
commit58b619c8a226cc4564ad5af291bc99a04f89ee56 (patch)
tree0b3ef031b653de3ca090b164b593a0f07f46155f /libavformat
parent0bca0283ccded5e32da143a462168ad1988a58fd (diff)
wav muxer: write metadata
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/version.h2
-rw-r--r--libavformat/wav.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/version.h b/libavformat/version.h
index 79dc7d1439..034fa0adce 100644
--- a/libavformat/version.h
+++ b/libavformat/version.h
@@ -30,7 +30,7 @@
#include "libavutil/avutil.h"
#define LIBAVFORMAT_VERSION_MAJOR 54
-#define LIBAVFORMAT_VERSION_MINOR 18
+#define LIBAVFORMAT_VERSION_MINOR 19
#define LIBAVFORMAT_VERSION_MICRO 0
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
diff --git a/libavformat/wav.c b/libavformat/wav.c
index 47dcc736cc..ac78f4bee2 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -135,6 +135,9 @@ static int wav_write_header(AVFormatContext *s)
wav->maxpts = wav->last_duration = 0;
wav->minpts = INT64_MAX;
+ /* info header */
+ ff_riff_write_info(s);
+
/* data header */
wav->data = ff_start_tag(pb, "data");