summaryrefslogtreecommitdiff
path: root/libavformat/wtvdec.c
diff options
context:
space:
mode:
authorThomas Volkert <thomas@homer-conferencing.com>2014-12-17 12:04:37 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-12-18 00:10:35 +0100
commit00d7555f3468193a761c0534df6742646b15829c (patch)
tree2048d6d1646b1256ddcbc1965b12d02b29af9aa6 /libavformat/wtvdec.c
parente8714f6f93d1a32f4e4655209960afcf4c185214 (diff)
downloadffmpeg-00d7555f3468193a761c0534df6742646b15829c.tar.gz
wavdec: RIFX file format support
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/wtvdec.c')
-rw-r--r--libavformat/wtvdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c
index 4009964824..7fc5e6377c 100644
--- a/libavformat/wtvdec.c
+++ b/libavformat/wtvdec.c
@@ -670,7 +670,7 @@ static AVStream * parse_media_type(AVFormatContext *s, AVStream *st, int sid,
if (!st)
return NULL;
if (!ff_guidcmp(formattype, ff_format_waveformatex)) {
- int ret = ff_get_wav_header(pb, st->codec, size);
+ int ret = ff_get_wav_header(pb, st->codec, size, 0);
if (ret < 0)
return NULL;
} else {