|
|
%global sover 3
|
|
|
# git describe
|
|
|
%global aom_version v3.2.0
|
|
|
|
|
|
# Use commit with updated changelog for correct versioning
|
|
|
%global commit 287164de79516c25c8c84fd544f67752c170082a
|
|
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
|
|
%global snapshotdate 20211013
|
|
|
|
|
|
%if 0%{?fedora}
|
|
|
%ifarch x86_64
|
|
|
%bcond_without vmaf
|
|
|
%endif
|
|
|
%bcond_without jpegxl
|
|
|
%endif
|
|
|
|
|
|
Name: aom
|
|
|
Version: 3.2.0
|
|
|
Release: %autorelease
|
|
|
Summary: Royalty-free next-generation video format
|
|
|
|
|
|
License: BSD
|
|
|
URL: http://aomedia.org/
|
|
|
Source0: https://aomedia.googlesource.com/%{name}/+archive/%{commit}.tar.gz#/%{name}-%{shortcommit}.tar.gz
|
|
|
|
|
|
BuildRequires: gcc-c++
|
|
|
BuildRequires: gcc
|
|
|
BuildRequires: cmake3
|
|
|
BuildRequires: doxygen
|
|
|
BuildRequires: git-core
|
|
|
# BuildRequires: graphviz
|
|
|
BuildRequires: perl-interpreter
|
|
|
BuildRequires: perl(Getopt::Long)
|
|
|
BuildRequires: python3-devel
|
|
|
BuildRequires: yasm
|
|
|
%if %{with jpegxl}
|
|
|
BuildRequires: pkgconfig(libjxl)
|
|
|
BuildRequires: pkgconfig(libhwy)
|
|
|
%endif
|
|
|
%if %{with vmaf}
|
|
|
BuildRequires: pkgconfig(libvmaf)
|
|
|
%endif
|
|
|
|
|
|
Provides: av1 = %{version}-%{release}
|
|
|
Requires: libaom%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
%description
|
|
|
The Alliance for Open Media’s focus is to deliver a next-generation
|
|
|
video format that is:
|
|
|
|
|
|
- Interoperable and open;
|
|
|
- Optimized for the Internet;
|
|
|
- Scalable to any modern device at any bandwidth;
|
|
|
- Designed with a low computational footprint and optimized for hardware;
|
|
|
- Capable of consistent, highest-quality, real-time video delivery; and
|
|
|
- Flexible for both commercial and non-commercial content, including
|
|
|
user-generated content.
|
|
|
|
|
|
This package contains the reference encoder and decoder.
|
|
|
|
|
|
%package -n libaom
|
|
|
Summary: Library files for aom
|
|
|
|
|
|
%description -n libaom
|
|
|
Library files for aom, the royalty-free next-generation
|
|
|
video format.
|
|
|
|
|
|
%package -n libaom-devel
|
|
|
Summary: Development files for aom
|
|
|
Requires: libaom%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
%description -n libaom-devel
|
|
|
Development files for aom, the royalty-free next-generation
|
|
|
video format.
|
|
|
|
|
|
%prep
|
|
|
%autosetup -p1 -c %{name}-%{commit}
|
|
|
# Set GIT revision in version
|
|
|
sed -i 's@set(aom_version "")@set(aom_version "%{aom_version}")@' build/cmake/version.cmake
|
|
|
|
|
|
%build
|
|
|
%ifarch %{arm}
|
|
|
%global optflags %{__global_compiler_flags} -march=armv7-a -mfpu=neon -mtune=cortex-a8 -mabi=aapcs-linux -mfloat-abi=hard
|
|
|
%endif
|
|
|
|
|
|
%cmake3 -DENABLE_CCACHE=1 \
|
|
|
-DCMAKE_SKIP_RPATH=1 \
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
|
-DCONFIG_WEBM_IO=1 \
|
|
|
-DENABLE_DOCS=1 \
|
|
|
-DENABLE_TESTS=0 \
|
|
|
-DCONFIG_ANALYZER=0 \
|
|
|
-DBUILD_SHARED_LIBS=1 \
|
|
|
%if %{with jpegxl}
|
|
|
-DCONFIG_TUNE_BUTTERAUGLI=1 \
|
|
|
%endif
|
|
|
%if %{with vmaf}
|
|
|
-DCONFIG_TUNE_VMAF=1 \
|
|
|
%endif
|
|
|
%{nil}
|
|
|
%cmake3_build
|
|
|
|
|
|
%install
|
|
|
%cmake3_install
|
|
|
rm -rvf %{buildroot}%{_libdir}/libaom.a
|
|
|
|
|
|
%files
|
|
|
%doc AUTHORS CHANGELOG README.md
|
|
|
%license LICENSE PATENTS
|
|
|
%{_bindir}/aomdec
|
|
|
%{_bindir}/aomenc
|
|
|
|
|
|
%files -n libaom
|
|
|
%license LICENSE PATENTS
|
|
|
%{_libdir}/libaom.so.%{sover}*
|
|
|
|
|
|
%files -n libaom-devel
|
|
|
%doc %{_vpath_builddir}/docs/html/
|
|
|
%{_includedir}/%{name}
|
|
|
%{_libdir}/libaom.so
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
|
|
%changelog
|
|
|
%autochangelog
|