On 2014-04-29 15:22:02 +0200, Anton Khirnov wrote:
> ---
>  tests/tiny_psnr.c |    5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/tests/tiny_psnr.c b/tests/tiny_psnr.c
> index 66eaf82..0055ffc 100644
> --- a/tests/tiny_psnr.c
> +++ b/tests/tiny_psnr.c
> @@ -223,6 +223,11 @@ int main(int argc, char *argv[])
>                      a = get_f32l(buf[0] + j);
>                      b = get_f32l(buf[1] + j);
>                  }
> +                if (!isfinite(a) || !isfinite(b)) {
> +                    fprintf(stderr, "Invalid values in the input.\n");
> +                    return 1;
> +                }

stdout is probably easier to spot in fate, stderr is slightly more logical.  
Proceed as you like. both options are ok for me

Janne
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to