On Sat, May 11, 2019 at 12:06 AM Jun Zhao <mypopy...@gmail.com> wrote:
>
> From: Jun Zhao <barryjz...@tencent.com>
>
> remove the redundant condition check for 'frame'
>
> Signed-off-by: Jun Zhao <barryjz...@tencent.com>
> ---
>  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
Pushed, Thanks
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to