summaryrefslogtreecommitdiff
path: root/libavformat/mov.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/mov.c
parente8714f6f93d1a32f4e4655209960afcf4c185214 (diff)
wavdec: RIFX file format support
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 0282ac4d0d..2ce6f9c664 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -714,7 +714,7 @@ static int mov_read_wfex(MOVContext *c, AVIOContext *pb, MOVAtom atom)
return 0;
st = c->fc->streams[c->fc->nb_streams-1];
- if ((ret = ff_get_wav_header(pb, st->codec, atom.size)) < 0)
+ if ((ret = ff_get_wav_header(pb, st->codec, atom.size, 0)) < 0)
av_log(c->fc, AV_LOG_WARNING, "get_wav_header failed\n");
return ret;