From a6ba65f7f282e220f3aae067a89ceedbb3328528 Mon Sep 17 00:00:00 2001 From: David Bryant Date: Mon, 13 Aug 2007 05:36:50 +0000 Subject: Support for WavPack version 0x410 (false stereo chunks) Patch by David Bryant printf("david@%s.com",wv_demuxer.long_name); Thread [PATCH] handle WavPack stream version 0x410 Originally committed as revision 10101 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/wv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/wv.c') diff --git a/libavformat/wv.c b/libavformat/wv.c index fcadaa01b3..14579db92a 100644 --- a/libavformat/wv.c +++ b/libavformat/wv.c @@ -86,7 +86,7 @@ static int wv_read_block_header(AVFormatContext *ctx, ByteIOContext *pb) } wc->blksize = size; ver = get_le16(pb); - if(ver < 0x402 || ver > 0x40F){ + if(ver < 0x402 || ver > 0x410){ av_log(ctx, AV_LOG_ERROR, "Unsupported version %03X\n", ver); return -1; } -- cgit v1.2.3