Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Volkert <thomas@homer-conferencing.com>2014-12-17 14:04:37 +0300
committerMichael Niedermayer <michaelni@gmx.at>2014-12-18 02:10:35 +0300
commit00d7555f3468193a761c0534df6742646b15829c (patch)
tree2048d6d1646b1256ddcbc1965b12d02b29af9aa6 /libavformat/xwma.c
parente8714f6f93d1a32f4e4655209960afcf4c185214 (diff)
wavdec: RIFX file format support
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/xwma.c')
-rw-r--r--libavformat/xwma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/xwma.c b/libavformat/xwma.c
index 5d29d0b99e..b1721207e7 100644
--- a/libavformat/xwma.c
+++ b/libavformat/xwma.c
@@ -75,7 +75,7 @@ static int xwma_read_header(AVFormatContext *s)
if (!st)
return AVERROR(ENOMEM);
- ret = ff_get_wav_header(pb, st->codec, size);
+ ret = ff_get_wav_header(pb, st->codec, size, 0);
if (ret < 0)
return ret;
st->need_parsing = AVSTREAM_PARSE_NONE;