lavc/mlpenc: remove the redundant condition check

remove the redundant condition check for 'frame'

Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
Jun Zhao 2019-05-10 21:24:17 +08:00
parent f82a02aa89
commit 64e610b5f4
1 changed files with 2 additions and 4 deletions

View File

@ -2232,10 +2232,8 @@ static int mlp_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
return 1;
/* add current frame to queue */
if (frame) {
if ((ret = ff_af_queue_add(&ctx->afq, frame)) < 0)
return ret;
}
if ((ret = ff_af_queue_add(&ctx->afq, frame)) < 0)
return ret;
data = frame->data[0];