Commit 2c96535a authored by Kostya Shishkov's avatar Kostya Shishkov

WavPack hybrid mode support

Originally committed as revision 16643 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent bef01ca0
This diff is collapsed.
......@@ -100,10 +100,6 @@ static int wv_read_block_header(AVFormatContext *ctx, ByteIOContext *pb)
av_log(ctx, AV_LOG_ERROR, "Floating point data is not supported\n");
return -1;
}
if(wc->flags & WV_HYBRID){
av_log(ctx, AV_LOG_ERROR, "Hybrid coding mode is not supported\n");
return -1;
}
bpp = ((wc->flags & 3) + 1) << 3;
chan = 1 + !(wc->flags & WV_MONO);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment