diff options
author | Thomas Volkert <thomas@homer-conferencing.com> | 2014-12-17 12:04:37 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-12-18 00:10:35 +0100 |
commit | 00d7555f3468193a761c0534df6742646b15829c (patch) | |
tree | 2048d6d1646b1256ddcbc1965b12d02b29af9aa6 /libavformat/mlvdec.c | |
parent | e8714f6f93d1a32f4e4655209960afcf4c185214 (diff) | |
download | ffmpeg-00d7555f3468193a761c0534df6742646b15829c.tar.gz |
wavdec: RIFX file format support
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mlvdec.c')
-rw-r--r-- | libavformat/mlvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mlvdec.c b/libavformat/mlvdec.c index 17bdb17e72..06ea7b3ea5 100644 --- a/libavformat/mlvdec.c +++ b/libavformat/mlvdec.c @@ -142,7 +142,7 @@ static int scan_file(AVFormatContext *avctx, AVStream *vst, AVStream *ast, int f vst->codec->codec_tag = MKTAG('B', 'I', 'T', 16); size -= 164; } else if (ast && type == MKTAG('W', 'A', 'V', 'I') && size >= 16) { - ret = ff_get_wav_header(pb, ast->codec, 16); + ret = ff_get_wav_header(pb, ast->codec, 16, 0); if (ret < 0) return ret; size -= 16; |