diff --git a/libavcodec/utils.c b/libavcodec/utils.c index e22bc3302e1c89b359a768737c6ac232feae71ab..1ec039e5e99bbffd1a3ed9d5004e518b7eddc14d 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -472,8 +472,9 @@ int attribute_align_arg avcodec_open(AVCodecContext *avctx, AVCodec *codec) avcodec_set_dimensions(avctx, avctx->width, avctx->height); #define SANE_NB_CHANNELS 128U - if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height) || - avctx->channels > SANE_NB_CHANNELS) { + if (((avctx->coded_width || avctx->coded_height) + && avcodec_check_dimensions(avctx, avctx->coded_width, avctx->coded_height)) + || avctx->channels > SANE_NB_CHANNELS) { av_freep(&avctx->priv_data); ret = AVERROR(EINVAL); goto end;