forked from pool/SVT-AV1
Compare commits
9 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
386bb0029b | ||
|
9451f542af | ||
|
bd35696047 | ||
|
413a460f92 | ||
|
ff1bf82040 | ||
|
90b2af800f | ||
|
816825fc17 | ||
|
0cfeef8d28 | ||
|
395c6f231c |
BIN
SVT-AV1-v2.1.2.tar.gz
(Stored with Git LFS)
BIN
SVT-AV1-v2.1.2.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
SVT-AV1-v2.3.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
SVT-AV1-v2.3.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,46 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 17 12:27:35 UTC 2025 - Yoong Jin <solomoncyj@gmail.com>
|
||||||
|
|
||||||
|
- Added optimzation flags to Cmake
|
||||||
|
- Santitized thired party folder
|
||||||
|
* Deleted bechmarking folders
|
||||||
|
* Renamed conflicting license files
|
||||||
|
* Switced to system libcpuinfo
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 29 22:11:44 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 2.3.0
|
||||||
|
* Improved fast-decode level 1 option to increase its AV1 software
|
||||||
|
cycle reduction by ~10% while maintaining the same quality
|
||||||
|
levels.
|
||||||
|
* New fast-decode level 2 to allow for an average AV1 software
|
||||||
|
cycle reduction of 25-50% vs fast-decode 0 with a 1-3% BD-Rate
|
||||||
|
loss across the presets.
|
||||||
|
* Improved --lp settings for high resolutions, with CRF gaining a
|
||||||
|
~4% improvement in speed and VBR gaining ~15%.
|
||||||
|
* Further ARM-based optimizations improving the efficiency of
|
||||||
|
previously written NEON implementations by an average of 30%.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 23 20:39:25 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 2.2.1
|
||||||
|
* Bug fixes for ARM-based macOS only
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 19 20:39:27 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 2.2.0
|
||||||
|
* Improve the tradeoffs for the random access mode across presets:
|
||||||
|
* Speedup of ~15% across presets M0 - M8 while maintaining
|
||||||
|
similar quality levels
|
||||||
|
* Improve the tradeoffs for the low-delay mode across presets
|
||||||
|
* Increased temporal resolution setting to 6L for 4k
|
||||||
|
resolutions by default
|
||||||
|
* Added ARM optimizations for functions with c_only equivalent
|
||||||
|
yielding an average speedup of ~13% for 4k10bit
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jul 11 08:47:36 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Thu Jul 11 08:47:36 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
27
SVT-AV1.spec
27
SVT-AV1.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: SVT-AV1
|
Name: SVT-AV1
|
||||||
Version: 2.1.2
|
Version: 2.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: An AV1 decoder/encoder for video streams
|
Summary: An AV1 decoder/encoder for video streams
|
||||||
License: BSD-3-Clause-Clear
|
License: BSD-3-Clause-Clear
|
||||||
@ -30,8 +30,13 @@ BuildRequires: gcc-c++ >= 5.4.0
|
|||||||
BuildRequires: help2man
|
BuildRequires: help2man
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
BuildRequires: yasm >= 1.2.0
|
BuildRequires: yasm >= 1.2.0
|
||||||
|
# broken package
|
||||||
|
# BuildRequires: cpuinfo-devel
|
||||||
|
Provides: bundled(fastfeat)
|
||||||
|
Provides: bundled(safestringlib)
|
||||||
ExclusiveArch: aarch64 riscv64 x86_64
|
ExclusiveArch: aarch64 riscv64 x86_64
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder) is an
|
The Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder) is an
|
||||||
AV1-compliant encoder/decoder library core. The SVT-AV1 encoder development is
|
AV1-compliant encoder/decoder library core. The SVT-AV1 encoder development is
|
||||||
@ -63,8 +68,24 @@ This package contains the header files for svt-av1.
|
|||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n %name-v%version
|
%autosetup -p1 -n %name-v%version
|
||||||
|
|
||||||
|
#mitigate name collisions
|
||||||
|
mv third_party/safestringlib/LICENSE third_party/safestringlib/LICENSE.safestringlib
|
||||||
|
mv third_party/fastfeat/LICENSE third_party/fastfeat/LICENSE.fastfeat
|
||||||
|
|
||||||
|
#sanitize third_party
|
||||||
|
# rm -rf third_party/cpuinfo
|
||||||
|
rm -rf third_party/aom*
|
||||||
|
rm -rf third_party/googletest
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake
|
%cmake \
|
||||||
|
-DNATIVE=OFF \
|
||||||
|
-DSVT_AV1_LTO=ON \
|
||||||
|
-DENABLE_AVX512=ON \
|
||||||
|
-DSVT_AV1_PGO=ON
|
||||||
|
# -DUSE_EXTERNAL_CPUINFO=ON \
|
||||||
|
# cpuinfo cmake is broken, force fallback to pkg-config
|
||||||
%cmake_build
|
%cmake_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -84,7 +105,7 @@ cp -a Docs README.md "$b/"
|
|||||||
%ldconfig_scriptlets -n libSvtAv1Enc2
|
%ldconfig_scriptlets -n libSvtAv1Enc2
|
||||||
|
|
||||||
%files -n libSvtAv1Enc2
|
%files -n libSvtAv1Enc2
|
||||||
%license LICENSE.md PATENTS.md
|
%license LICENSE.md PATENTS.md third_party/fastfeat/LICENSE.fastfeat third_party/safestringlib/LICENSE.safestringlib
|
||||||
%_libdir/libSvtAv1Enc.so.*
|
%_libdir/libSvtAv1Enc.so.*
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
mtime: 1720712580
|
mtime: 1737214038
|
||||||
commit: 9a076443a1834f5745ad8b4f1cb74a3e2e32ddfaf0911031083836fb2d31c382
|
commit: 5bba03b61b306863c65c77c9deb81ff24e3e11d336eca4ef4b9313d11d807566
|
||||||
url: https://src.opensuse.org/jengelh/SVT-AV1
|
url: https://src.opensuse.org/jengelh/SVT-AV1
|
||||||
revision: master
|
revision: master
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:f6d36e0188c01150b12fb44f0ebee07295b145e3b1c0930e3996eb6c5f070c87
|
oid sha256:4be8ae40959bf8a3dce5011303bf3630b7cdcfc2305422f8d63607cda3a07ba4
|
||||||
size 256
|
size 256
|
||||||
|
Loading…
x
Reference in New Issue
Block a user