2018-09-24 0:35 GMT-03:00 Steven Liu <l...@chinaffmpeg.org>: > fix ticket: 7455 > > Signed-off-by: Steven Liu <l...@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. _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel