diff options
author | David Bryant | 2007-08-05 05:56:34 +0000 |
---|---|---|
committer | Kostya Shishkov | 2007-08-05 05:56:34 +0000 |
commit | 6b05eb31176ff3d0493a08ccb13d7e52736d2045 (patch) | |
tree | a039427ad9fed3c01cfa69f94c39640773626f61 /libavformat | |
parent | 2477ce23223695b665142ee5a4eb85f0b88c9cb2 (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')
-rw-r--r-- | libavformat/wv.c | 4 |
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); |