forked from jengelh/SVT-AV1
Compare commits
3 Commits
Author | SHA256 | Date | |
---|---|---|---|
21ea6b2d4c | |||
63a41d6773 | |||
5bba03b61b |
BIN
SVT-AV1-v2.3.0.tar.gz
(Stored with Git LFS)
BIN
SVT-AV1-v2.3.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
SVT-AV1-v3.0.1.tar.gz
(Stored with Git LFS)
Normal file
BIN
SVT-AV1-v3.0.1.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,19 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 14 10:08:16 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 3.0.1
|
||||||
|
* Refreshed API cleaning up unused fields
|
||||||
|
* Repositioned the presets and removed one preset resulting in
|
||||||
|
a max preset of M10 in the current version
|
||||||
|
* Added temporal layer and averageQP fields in output picture
|
||||||
|
structure, along with an option to specify a QP offset for
|
||||||
|
the startup gop
|
||||||
|
* Improved mid and high quality presets quality vs speed
|
||||||
|
tradeoffs for fast-decode 2 mode:
|
||||||
|
* ~15-25% speedup for M3-M10 at the same quality levels
|
||||||
|
* ~1% BD-rate improvement for presets M0-M2
|
||||||
|
* A few ARM NEON speedups
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jan 17 12:27:35 UTC 2025 - Yoong Jin <solomoncyj@gmail.com>
|
Fri Jan 17 12:27:35 UTC 2025 - Yoong Jin <solomoncyj@gmail.com>
|
||||||
|
|
||||||
|
19
SVT-AV1.spec
19
SVT-AV1.spec
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package SVT-AV1
|
# spec file for package SVT-AV1
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -17,19 +17,20 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: SVT-AV1
|
Name: SVT-AV1
|
||||||
Version: 2.3.0
|
Version: 3.0.1
|
||||||
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
|
||||||
Group: Productivity/Multimedia/Other
|
Group: Productivity/Multimedia/Other
|
||||||
URL: https://gitlab.com/AOMediaCodec/SVT-AV1
|
URL: https://gitlab.com/AOMediaCodec/SVT-AV1
|
||||||
Source: https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v%version/SVT-AV1-v%version.tar.gz
|
Source: https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v%version/SVT-AV1-v%version.tar.gz
|
||||||
BuildRequires: cmake >= 3.5.1
|
BuildRequires: cmake >= 3.16
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gcc-c++ >= 5.4.0
|
BuildRequires: gcc-c++ >= 5.4.0
|
||||||
BuildRequires: help2man
|
BuildRequires: help2man
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
BuildRequires: yasm >= 1.2.0
|
BuildRequires: pkgconfig(libcpuinfo)
|
||||||
|
BuildRequires: yasm
|
||||||
# broken package
|
# broken package
|
||||||
# BuildRequires: cpuinfo-devel
|
# BuildRequires: cpuinfo-devel
|
||||||
Provides: bundled(fastfeat)
|
Provides: bundled(fastfeat)
|
||||||
@@ -44,11 +45,11 @@ a work-in-progress targeting performance levels applicable to both VOD and Live
|
|||||||
encoding / transcoding video applications. The SVT-AV1 decoder implementation
|
encoding / transcoding video applications. The SVT-AV1 decoder implementation
|
||||||
is targeting future codec research activities.
|
is targeting future codec research activities.
|
||||||
|
|
||||||
%package -n libSvtAv1Enc2
|
%package -n libSvtAv1Enc3
|
||||||
Summary: An AV1 decoder/encoder for video streams
|
Summary: An AV1 decoder/encoder for video streams
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
|
|
||||||
%description -n libSvtAv1Enc2
|
%description -n libSvtAv1Enc3
|
||||||
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
|
||||||
a work-in-progress targeting performance levels applicable to both VOD and Live
|
a work-in-progress targeting performance levels applicable to both VOD and Live
|
||||||
@@ -58,7 +59,7 @@ is targeting future codec research activities.
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for %name
|
Summary: Development files for %name
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: libSvtAv1Enc2 = %version
|
Requires: libSvtAv1Enc3 = %version
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
An AV1 encoder for video streams from Intel.
|
An AV1 encoder for video streams from Intel.
|
||||||
@@ -102,9 +103,9 @@ mkdir -p "$b"
|
|||||||
cp -a Docs README.md "$b/"
|
cp -a Docs README.md "$b/"
|
||||||
%fdupes %buildroot/%_prefix
|
%fdupes %buildroot/%_prefix
|
||||||
|
|
||||||
%ldconfig_scriptlets -n libSvtAv1Enc2
|
%ldconfig_scriptlets -n libSvtAv1Enc3
|
||||||
|
|
||||||
%files -n libSvtAv1Enc2
|
%files -n libSvtAv1Enc3
|
||||||
%license LICENSE.md PATENTS.md third_party/fastfeat/LICENSE.fastfeat third_party/safestringlib/LICENSE.safestringlib
|
%license LICENSE.md PATENTS.md third_party/fastfeat/LICENSE.fastfeat third_party/safestringlib/LICENSE.safestringlib
|
||||||
%_libdir/libSvtAv1Enc.so.*
|
%_libdir/libSvtAv1Enc.so.*
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user