diff mbox series

[FFmpeg-devel] configure: Disable DNN without backend

Message ID AS8P250MB07449FC86457A03196380BC58FC62@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM
State New
Headers show
Series [FFmpeg-devel] configure: Disable DNN without backend | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt June 10, 2024, 3:35 p.m. UTC
The DNN filters are useless without a backend.
This will also "fix" Coverity issues #1598288 and #1601718.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Guo, Yejun June 11, 2024, 12:22 p.m. UTC | #1
> -----Original Message-----
> From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of
> Andreas Rheinhardt
> Sent: Monday, June 10, 2024 11:36 PM
> To: ffmpeg-devel@ffmpeg.org
> Cc: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> Subject: [FFmpeg-devel] [PATCH] configure: Disable DNN without backend
> 
> The DNN filters are useless without a backend.
> This will also "fix" Coverity issues #1598288 and #1601718.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
>  configure | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index 6c5b8aab9a..83284427df 100755
> --- a/configure
> +++ b/configure
> @@ -2850,8 +2850,8 @@ deflate_wrapper_deps="zlib"
>  dirac_parse_select="golomb"
>  dovi_rpudec_select="golomb"
>  dovi_rpuenc_select="golomb"
> -dnn_suggest="libtensorflow libopenvino libtorch"
>  dnn_deps="avformat swscale"
> +dnn_deps_any="libtensorflow libopenvino libtorch"

Thanks, will push soon.
diff mbox series

Patch

diff --git a/configure b/configure
index 6c5b8aab9a..83284427df 100755
--- a/configure
+++ b/configure
@@ -2850,8 +2850,8 @@  deflate_wrapper_deps="zlib"
 dirac_parse_select="golomb"
 dovi_rpudec_select="golomb"
 dovi_rpuenc_select="golomb"
-dnn_suggest="libtensorflow libopenvino libtorch"
 dnn_deps="avformat swscale"
+dnn_deps_any="libtensorflow libopenvino libtorch"
 error_resilience_select="me_cmp"
 evcparse_select="golomb"
 faandct_deps="faan"