avcodec/utils: remove extra brackets

Signed-off-by: leozhang <leozhang@qiyi.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
leozhang 2020-02-01 17:12:13 +08:00 committed by Michael Niedermayer
parent 843c24a400
commit 81d25e5bfc

View File

@ -556,11 +556,11 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code
if (avcodec_is_open(avctx)) if (avcodec_is_open(avctx))
return 0; return 0;
if ((!codec && !avctx->codec)) { if (!codec && !avctx->codec) {
av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2()\n"); av_log(avctx, AV_LOG_ERROR, "No codec provided to avcodec_open2()\n");
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
if ((codec && avctx->codec && codec != avctx->codec)) { if (codec && avctx->codec && codec != avctx->codec) {
av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, " av_log(avctx, AV_LOG_ERROR, "This AVCodecContext was allocated for %s, "
"but %s passed to avcodec_open2()\n", avctx->codec->name, codec->name); "but %s passed to avcodec_open2()\n", avctx->codec->name, codec->name);
return AVERROR(EINVAL); return AVERROR(EINVAL);