ffmpeg | branch: master | Jun Zhao <barryjz...@tencent.com> | Fri May 10 21:24:17 2019 +0800| [64e610b5f4b7c338713208a4dfa24a8f2eb728c8] | committer: Jun Zhao
lavc/mlpenc: remove the redundant condition check remove the redundant condition check for 'frame' Signed-off-by: Jun Zhao <barryjz...@tencent.com> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=64e610b5f4b7c338713208a4dfa24a8f2eb728c8 --- libavcodec/mlpenc.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavcodec/mlpenc.c b/libavcodec/mlpenc.c index 7536d3b2f5..deb171645c 100644 --- a/libavcodec/mlpenc.c +++ b/libavcodec/mlpenc.c @@ -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]; _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".