mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avcodec/metasound: Remove always-false checks
The number of channels that is checked here is automatically valid because it has just been set by us (based upon an entry in codec_props). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
d94a445e3d
commit
1490ba6f41
@ -302,11 +302,6 @@ static av_cold int metasound_decode_init(AVCodecContext *avctx)
|
||||
props++;
|
||||
}
|
||||
|
||||
if (channels <= 0 || channels > TWINVQ_CHANNELS_MAX) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Unsupported number of channels: %i\n",
|
||||
channels);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
av_channel_layout_uninit(&avctx->ch_layout);
|
||||
av_channel_layout_default(&avctx->ch_layout, channels);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user