[FFmpeg-devel] [PATCH] fftools/ffprobe: fix handling parse_options() return value

Marton Balint cus at passwd.hu
Thu Jul 27 22:09:34 EEST 2023



On Wed, 26 Jul 2023, Anton Khirnov wrote:

> ---
> fftools/ffprobe.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
> index a39185f6fe..81610c097b 100644
> --- a/fftools/ffprobe.c
> +++ b/fftools/ffprobe.c
> @@ -4113,7 +4113,7 @@ int main(int argc, char **argv)
>     show_banner(argc, argv, options);
>     ret = parse_options(NULL, argc, argv, options, opt_input_file);
>     if (ret < 0) {
> -        ret = AVERROR_EXIT ? 0 : ret;
> +        ret = (ret == AVERROR_EXIT) ? 0 : ret;
>         goto end;

LGTM, thanks.

Marton


More information about the ffmpeg-devel mailing list