sonic: cleanup/simplify num_taps check
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
db27dadcb0
commit
69d0a2922f
@ -527,9 +527,7 @@ static av_cold int sonic_encode_init(AVCodecContext *avctx)
|
||||
}
|
||||
|
||||
// max tap 2048
|
||||
if ((s->num_taps < 32) || (s->num_taps > 1024) ||
|
||||
((s->num_taps>>5)<<5 != s->num_taps))
|
||||
{
|
||||
if (s->num_taps < 32 || s->num_taps > 1024 || s->num_taps % 32) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Invalid number of taps\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user