Mercurial > libavformat.hg
changeset 2314:85ed1e2ce41e libavformat
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
author | kostya |
---|---|
date | Sun, 05 Aug 2007 05:56:34 +0000 |
parents | 7f6e22803038 |
children | f93b242dde21 |
files | wv.c |
diffstat | 1 files changed, 0 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/wv.c Sun Aug 05 03:36:50 2007 +0000 +++ b/wv.c Sun Aug 05 05:56:34 2007 +0000 @@ -105,10 +105,6 @@ 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);