[FFmpeg-devel] [PATCH] avfilter/sr: process and output message when load_model is NULL

Pedro Arthur bygrandao at gmail.com
Mon Sep 24 16:52:07 EEST 2018


2018-09-24 0:35 GMT-03:00 Steven Liu <lq at chinaffmpeg.org>:

> fix ticket: 7455
>
> Signed-off-by: Steven Liu <lq at chinaffmpeg.org>
> ---
>  libavfilter/dnn_interface.c | 4 ++++
>  libavfilter/vf_sr.c         | 7 ++++++-
>  2 files changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/libavfilter/dnn_interface.c b/libavfilter/dnn_interface.c
> index 78d7c5cf22..792c280c53 100644
> --- a/libavfilter/dnn_interface.c
> +++ b/libavfilter/dnn_interface.c
> @@ -52,6 +52,10 @@ DNNModule *ff_get_dnn_module(DNNBackendType
> backend_type)
>          av_freep(&dnn_module);
>          return NULL;
>      #endif
> +    default:
> +        av_log(NULL, AV_LOG_ERROR, "Module backend_type is not native or
> tensorflow\n");
> +        av_freep(&dnn_module);
> +        return NULL;
>      }
>
 It is missing a break in the DNN_TF case, the rest looks good.

Thanks.


More information about the ffmpeg-devel mailing list