diff options
author | Benjamin Larsson <banan@ludd.ltu.se> | 2006-01-07 23:38:17 +0000 |
---|---|---|
committer | Benjamin Larsson <banan@ludd.ltu.se> | 2006-01-07 23:38:17 +0000 |
commit | 51bb91cb2412da024a9dd0ebce3c22f52eee7ec9 (patch) | |
tree | 635fff51295c674a06696d232d834c961efd3e3a /libavcodec | |
parent | cc59080c01d4ae25115aa28413dc96f2e609c319 (diff) | |
download | ffmpeg-51bb91cb2412da024a9dd0ebce3c22f52eee7ec9.tar.gz |
Incorrect check removed.
Originally committed as revision 4823 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cook.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/cook.c b/libavcodec/cook.c index 7cf76fa0ff..7ebb951adc 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -1277,10 +1277,6 @@ static int cook_decode_init(AVCodecContext *avctx) av_log(NULL,AV_LOG_ERROR,"total_subbands > 53, report sample!\n"); return -1; } - if (((q->subbands > 34) || (q->js_subband_start > 19)) && (q->joint_stereo)) { - av_log(NULL,AV_LOG_ERROR,"subbands > 34 or js_subband_start > 19, report sample!\n"); - return -1; - } if (q->subbands > 50) { av_log(NULL,AV_LOG_ERROR,"subbands > 50, report sample!\n"); return -1; |