[FFmpeg-devel] [PATCH 16/16] avcodec/eacmv: Return more specific error codes and forward error codes
Paul B Mahol
onemda at gmail.com
Tue Jan 1 13:03:36 EET 2019
On 12/31/18, Michael Niedermayer <michael at niedermayer.cc> wrote:
> Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> ---
> libavcodec/eacmv.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/libavcodec/eacmv.c b/libavcodec/eacmv.c
> index bf4404ce42..6f39d72b88 100644
> --- a/libavcodec/eacmv.c
> +++ b/libavcodec/eacmv.c
> @@ -191,12 +191,12 @@ static int cmv_decode_frame(AVCodecContext *avctx,
> if (ret < 0)
> return ret;
> if (size > buf_end - buf - EA_PREAMBLE_SIZE)
> - return -1;
> + return AVERROR_INVALIDDATA;
> buf += size;
> }
>
> - if (av_image_check_size(s->width, s->height, 0, s->avctx))
> - return -1;
> + if ((ret = av_image_check_size(s->width, s->height, 0, s->avctx)) < 0)
> + return ret;
>
> if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0)
> return ret;
> --
> 2.20.1
>
All changes in set are very trivial, so LGTM.
More information about the ffmpeg-devel
mailing list