summaryrefslogtreecommitdiff
path: root/libavformat/wv.c
diff options
context:
space:
mode:
authorDavid Bryant <david@WavPack.com>2007-08-05 05:56:34 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2007-08-05 05:56:34 +0000
commit6b05eb31176ff3d0493a08ccb13d7e52736d2045 (patch)
treea039427ad9fed3c01cfa69f94c39640773626f61 /libavformat/wv.c
parent2477ce23223695b665142ee5a4eb85f0b88c9cb2 (diff)
Add the handling of the INT32INFO block to the WavPack decoder.
Patch by David Bryant david at $codecname dot com Thread: [FFmpeg-devel] [PATCH] handle INT32INFO in WavPack decoder Originally committed as revision 9932 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wv.c')
-rw-r--r--libavformat/wv.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/wv.c b/libavformat/wv.c
index 40f94f950e..fcadaa01b3 100644
--- a/libavformat/wv.c
+++ b/libavformat/wv.c
@@ -105,10 +105,6 @@ static int wv_read_block_header(AVFormatContext *ctx, ByteIOContext *pb)
av_log(ctx, AV_LOG_ERROR, "Hybrid coding mode is not supported\n");
return -1;
}
- if(wc->flags & WV_INT32){
- av_log(ctx, AV_LOG_ERROR, "Integer point data is not supported\n");
- return -1;
- }
bpp = ((wc->flags & 3) + 1) << 3;
chan = 1 + !(wc->flags & WV_MONO);