forked from jengelh/SVT-AV1
Compare commits
3 Commits
Author | SHA256 | Date | |
---|---|---|---|
5bba03b61b | |||
f7f6c3ada3 | |||
8e359f256b |
BIN
SVT-AV1-v2.2.0.tar.gz
(Stored with Git LFS)
BIN
SVT-AV1-v2.2.0.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,33 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
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>
|
Mon Aug 19 20:39:27 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
27
SVT-AV1.spec
27
SVT-AV1.spec
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: SVT-AV1
|
Name: SVT-AV1
|
||||||
Version: 2.2.0
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user