Update to version 8.1

This commit is contained in:
Daniel Bermond
2026-03-16 22:50:27 -03:00
parent 81d81285f4
commit ada9206af1
6 changed files with 807 additions and 58 deletions
+8 -8
View File
@@ -1,6 +1,6 @@
--- a/configure
+++ b/configure
@@ -339,6 +339,7 @@ External library support:
@@ -346,6 +346,7 @@ External library support:
--enable-whisper enable whisper filter [no]
--disable-xlib disable xlib [autodetect]
--disable-zlib disable zlib [autodetect]
@@ -8,15 +8,15 @@
The following libraries provide various hardware acceleration features:
--disable-amf disable AMF video encoding code [autodetect]
@@ -1979,6 +1980,7 @@ EXTERNAL_LIBRARY_LIST="
libsrt
@@ -2090,6 +2091,7 @@ EXTERNAL_LIBRARY_LIST="
libssh
libsvtav1
libsvtjpegxs
+ libsvthevc
libtensorflow
libtesseract
libtheora
@@ -3678,6 +3680,7 @@ vapoursynth_demuxer_deps="vapoursynth"
@@ -3845,6 +3847,7 @@ vapoursynth_demuxer_deps="vapoursynth"
videotoolbox_suggest="coreservices"
videotoolbox_deps="corefoundation coremedia corevideo VTDecompressionSessionDecodeFrame"
videotoolbox_encoder_deps="videotoolbox VTCompressionSessionPrepareToEncodeFrames"
@@ -24,17 +24,17 @@
# demuxers / muxers
ac3_demuxer_select="ac3_parser"
@@ -7154,6 +7157,7 @@ enabled libssh && require_pkg_config libssh "libssh >= 0.6.0" libssh/
enabled libspeex && require_pkg_config libspeex speex speex/speex.h speex_decoder_init
@@ -7376,6 +7379,7 @@ enabled libspeex && require_pkg_config libspeex speex speex/speex.h spe
enabled libsrt && require_pkg_config libsrt "srt >= 1.3.0" srt/srt.h srt_socket
enabled libsvtav1 && require_pkg_config libsvtav1 "SvtAv1Enc >= 0.9.0" EbSvtAv1Enc.h svt_av1_enc_init_handle
enabled libsvtjpegxs && require_pkg_config libsvtjpegxs "SvtJpegxs >= 0.10.0" SvtJpegxsEnc.h svt_jpeg_xs_encoder_init
+enabled libsvthevc && require_pkg_config libsvthevc SvtHevcEnc EbApi.h EbInitHandle
enabled libtensorflow && require libtensorflow tensorflow/c/c_api.h TF_Version -ltensorflow
enabled libtesseract && require_pkg_config libtesseract tesseract tesseract/capi.h TessBaseAPICreate
enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -1201,6 +1201,7 @@ OBJS-$(CONFIG_LIBWEBP_ANIM_ENCODER) += libwebpenc_common.o libwebpenc_anim
@@ -1227,6 +1227,7 @@ OBJS-$(CONFIG_LIBWEBP_ANIM_ENCODER) += libwebpenc_common.o libwebpenc_anim
OBJS-$(CONFIG_LIBX262_ENCODER) += libx264.o
OBJS-$(CONFIG_LIBX264_ENCODER) += libx264.o
OBJS-$(CONFIG_LIBX265_ENCODER) += libx265.o
@@ -44,7 +44,7 @@
OBJS-$(CONFIG_LIBXEVD_DECODER) += libxevd.o
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -827,6 +827,7 @@ extern const FFCodec ff_libxavs_encoder;
@@ -844,6 +844,7 @@ extern const FFCodec ff_libxavs_encoder;
extern const FFCodec ff_libxavs2_encoder;
extern const FFCodec ff_libxvid_encoder;
extern const FFCodec ff_libzvbi_teletext_decoder;