Quoting Vittorio Giovara (2014-10-14 17:46:45)
> CC: [email protected]
> Bug-Id: CID 739877
> ---
>  avconv.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/avconv.c b/avconv.c
> index a21edae..52e88f5 100644
> --- a/avconv.c
> +++ b/avconv.c
> @@ -250,7 +250,7 @@ static void abort_codec_experimental(AVCodec *c, int 
> encoder)
>              "results.\nAdd '-strict experimental' if you want to use it.\n",
>              codec_string, c->name);
>      codec = encoder ? avcodec_find_encoder(c->id) : 
> avcodec_find_decoder(c->id);
> -    if (!(codec->capabilities & CODEC_CAP_EXPERIMENTAL))
> +    if (codec && !(codec->capabilities & CODEC_CAP_EXPERIMENTAL))
>          av_log(NULL, AV_LOG_FATAL, "Or use the non experimental %s '%s'.\n",
>                 codec_string, codec->name);
>      exit_program(1);
> -- 
> 1.9.3 (Apple Git-50)
> 

codec == NULL cannot happen, since at this point we already know that at
least one encoder/decoder for this codec id exists (the experimental
one)

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

Reply via email to