Files
packages/anda/multimedia/LCEVCdec/LCEVCdec.spec
T
Raboneko 0e2e8da6be chore(LCEVCdec): Rename directory to package name (#7672) (#7696)
(cherry picked from commit 30ff86166c)

Co-authored-by: Gilver <rockgrub@disroot.org>
2025-11-25 19:36:05 -06:00

165 lines
4.5 KiB
RPMSpec

# Tests require network, as described in src/func_tests/README.md, and each test type
# (Qualcomm dev kit, Ubuntu, etc.) requires the download of a few gigabytes of videos
# from https://lcevcdec.nbg1.your-objectstorage.com. The videos used for testing
# are described in the "Content attribution" paragraph of the README.md file.
# So disable tests by default:
%bcond python_tests 0
# python3-sphinxcontrib-plantuml currently missing from Fedora:
%bcond docs 0
Name: LCEVCdec
Version: 4.0.3
Release: 1%{?dist}
Summary: MPEG-5 LCEVC Decoder
License: BSD-3-Clause-Clear
URL: https://docs.v-nova.com/v-nova/lcevc/lcevc-sdk-overview
BuildRequires: anda-srpm-macros
BuildRequires: cmake
BuildRequires: cmake(CLI11)
BuildRequires: cmake(fmt)
BuildRequires: cmake(nlohmann_json)
BuildRequires: cmake(range-v3)
BuildRequires: gcc-c++
BuildRequires: git
BuildRequires: gmock-devel
BuildRequires: pkgconfig(libavcodec)
BuildRequires: pkgconfig(libavdevice)
BuildRequires: pkgconfig(libxxhash)
BuildRequires: pkgconfig(gtest)
%if %{with docs}
BuildRequires: doxygen
BuildRequires: sphinx
BuildRequires: plantuml
BuildRequires: python3-breathe
BuildRequires: python3-sphinx
BuildRequires: python3-sphinx_rtd_theme
BuildRequires: python3-sphinxcontrib-plantuml
%endif
%if %{with tests}
BuildRequires: python3
BuildRequires: python3-GitPython
BuildRequires: python3-numpy
BuildRequires: python3-requests
%endif
%description
Low Complexity Enhancement Video Codec Decoder (LCEVCdec) is the primary MPEG-5
Part 2 decoder SDK repository maintained by V-Nova.
Features:
- Decode LCEVC compliant bitstreams
- Support for a range of formats including YUV, NV12 and RGBA
- Support for a range of colour formats including BT709 and BT2020
- Support for HDR and 10-bit streams
- Support for ABR ladders
- CPU pixel processing stage
- Extensive API
%package devel
Summary: Development files for %{name}
Provides: %{name}-static = %{version}-%{release}
Obsoletes: %{name}-static < %{version}-%{release}
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: plutovg-devel%{?_isa}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%package samples
Summary: Sample programs for %{name}
%description samples
Sample programs that use %{name}.
%prep
%git_clone https://github.com/v-novaltd/%{name}.git %{version}
%if %{with tests}
# Adjust configuration file for tests:
sed -i \
-e 's/BIN_DIR = build/BIN_DIR = %{_vpath_builddir}/g' \
src/func_tests/config.ini
%endif
%build
%cmake \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DVN_SDK_EXECUTABLES=ON \
-DVN_SDK_UNIT_TESTS=ON \
-DVN_SDK_API_LAYER=ON \
-DVN_SDK_JSON_CONFIG=ON \
%if %{with docs}
-DVN_SDK_DOCS=ON
%else
-DVN_SDK_DOCS=OFF
%endif
%cmake_build
%install
%cmake_install
%ifnarch %{ix86}
#mv %{buildroot}%{_prefix}/lib/*.a %{buildroot}%{_libdir}/
rm -fr %{buildroot}%{_prefix}/lib
%endif
# Let RPM pick up docs in the files section
rm -fr %{buildroot}%{_docdir} %{buildroot}%{_prefix}/licenses
%if %{with tests}
%check
python3 src/func_tests/run_tests.py
%endif
%files
%license LICENSE.md COPYING
%doc README.md
%{_libdir}/liblcevc_dec_api.so.4
%{_libdir}/liblcevc_dec_api.so.%{version}
%{_libdir}/liblcevc_dec_legacy.so.1
%{_libdir}/liblcevc_dec_pipeline_cpu.so.1
%{_libdir}/liblcevc_dec_pipeline_legacy.so.1
%files devel
%{_includedir}/LCEVC
%{_libdir}/liblcevc_dec_api.so
%{_libdir}/liblcevc_dec_legacy.so
%{_libdir}/liblcevc_dec_pipeline_cpu.so
%{_libdir}/liblcevc_dec_pipeline_legacy.so
# Static:
%{_libdir}/liblcevc_dec_api_utility.a
%{_libdir}/liblcevc_dec_common.a
%{_libdir}/liblcevc_dec_enhancement.a
%{_libdir}/liblcevc_dec_extract.a
%{_libdir}/liblcevc_dec_pipeline.a
%{_libdir}/liblcevc_dec_pixel_processing.a
%{_libdir}/liblcevc_dec_sequencer.a
%{_libdir}/liblcevc_dec_unit_test_utilities.a
%{_libdir}/liblcevc_dec_utility.a
%{_libdir}/pkgconfig/lcevc_dec.pc
%files samples
%{_bindir}/lcevc_dec_common_test_unit
%{_bindir}/lcevc_dec_enhancement_sample
%{_bindir}/lcevc_dec_enhancement_test_unit
%{_bindir}/lcevc_dec_legacy_test_unit
%{_bindir}/lcevc_dec_pipeline_cpu_test_unit
%{_bindir}/lcevc_dec_pipeline_legacy_test_unit
%{_bindir}/lcevc_dec_pipeline_test_unit
%{_bindir}/lcevc_dec_pixel_processing_test_unit
%{_bindir}/lcevc_dec_sample
%{_bindir}/lcevc_dec_test_harness
%{_bindir}/lcevc_dec_test_unit
%{_bindir}/lcevc_dec_utility_test_unit
%{_bindir}/lcevc_sequencer_test_unit
%changelog
%autochangelog