The branch, master has been updated
via eed5843392a6318894a9d4d408b0b163ee8e697f (commit)
from 4ec2bffe62b1caa6ed2104795e8a7ebc422997a4 (commit)
- Log -----------------------------------------------------------------
commit eed5843392a6318894a9d4d408b0b163ee8e697f
Author: James Almer <[email protected]>
AuthorDate: Mon Sep 1 22:31:07 2025 -0300
Commit: James Almer <[email protected]>
CommitDate: Mon Sep 1 22:31:07 2025 -0300
configure: fix logic for the unstable option
A --enable-* option should not have a condition where it's enabled by some
other mean, as is the case here if swscale is enabled.
Signed-off-by: James Almer <[email protected]>
diff --git a/configure b/configure
index 521eaeded6..3a0a3c560c 100755
--- a/configure
+++ b/configure
@@ -108,7 +108,7 @@ Configuration options:
--disable-runtime-cpudetect disable detecting CPU capabilities at runtime
(smaller binary)
--enable-gray enable full grayscale support (slower color)
--disable-swscale-alpha disable alpha channel support in swscale
- --enable-unstable enable building optional unstable / experimental
code
+ --disable-unstable disable building optional unstable / experimental
code
--disable-all disable building components, libraries and programs
--disable-autodetect disable automatically detected external libraries
[no]
@@ -4137,7 +4137,7 @@ avutil_suggest="clock_gettime ffnvcodec gcrypt libm
libdrm libmfx opencl openssl
swresample_deps="avutil"
swresample_suggest="libm libsoxr stdatomic"
swscale_deps="avutil"
-swscale_suggest="libm stdatomic unstable"
+swscale_suggest="libm stdatomic"
avcodec_extralibs="pthreads_extralibs iconv_extralibs dxva2_extralibs
liblcevc_dec_extralibs lcms2_extralibs"
avfilter_extralibs="pthreads_extralibs"
@@ -4237,6 +4237,7 @@ enable runtime_cpudetect
enable safe_bitstream_reader
enable static
enable swscale_alpha
+enable unstable
enable valgrind_backtrace
sws_max_filter_size_default=256
-----------------------------------------------------------------------
Summary of changes:
configure | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]