From: Jun Zhao <[email protected]> remove the redundant condition check for 'frame'
Signed-off-by: Jun Zhao <[email protected]> --- libavcodec/mlpenc.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/libavcodec/mlpenc.c b/libavcodec/mlpenc.c index 7536d3b..deb1716 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]; -- 1.7.1 _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
