libavif/libavif.spec
Andreas Schneider 754d46e66c Accepting request 1107834 from home:polslinux:branches:multimedia:libs
- Update to 1.0.0:
  * Incompatible changes:
    + The clli member was added to the avifImage struct.
    + The repetitionCount member was added to the avifEncoder and avifDecoder
      structs.
    + The quality and qualityAlpha members were added to the avifEncoder struct.
    + Check that functions returning pointers do not return NULL before accessing
      those pointers.
    + Check the return value of avifEncoderSetCodecSpecificOption().
    + The maxThreads member was added to the avifRGBImage struct.
    + Check the return value of avifRGBImageAllocatePixels(), avifRWDataRealloc(),
      avifRWDataSet(), avifImageSetProfileICC(), avifImageSetMetadataExif() and
      avifImageSetMetadataXMP().
    + The meaning of the keyframeInterval member of avifEncoder struct has changed
      slightly. When set to a value of "n",
      Before: It forces a keyframe on every nth frame.
      After: Any set of "n" consecutive frame will have at least one keyframe
      (every nth frame may or may not be a keyframe).
  * Added:
    + Add clli metadata read and write support
    + Add repetitionCount member to avifEncoder and avifDecoder structs to specify
      the number of repetitions for animated image sequences.
    + Add quality and qualityAlpha to avifEncoder. Note: minQuantizer,
      maxQuantizer, minQuantizerAlpha, and maxQuantizerAlpha are deprecated. Code
      should be updated to set quality (and qualityAlpha if applicable) and leave
      minQuantizer, maxQuantizer, minQuantizerAlpha, and maxQuantizerAlpha
      initialized to the default values.
    + The --target-size flag in avifenc was added to adapt the quality so that the
      output file size is as close to the given number of bytes as possible.
    + Add the public API function avifImageIsOpaque() in avif.h.

OBS-URL: https://build.opensuse.org/request/show/1107834
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libavif?expand=0&rev=52
2023-08-29 07:01:17 +00:00

156 lines
4.2 KiB
RPMSpec

#
# spec file for package libavif
#
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%if 0%{?suse_version} >= 1550
%bcond_without aom
%bcond_without yuv
%else
%bcond_with aom
%bcond_with yuv
%endif
# Also update baselibs.conf if you bump the version
%global lib_soversion 16
%global lib_name libavif%{lib_soversion}
Name: libavif
Version: 1.0.0
Release: 0
Summary: Library for encoding and decoding .avif files
License: BSD-2-Clause
Group: Development/Libraries/C and C++
URL: https://github.com/AOMediaCodec/libavif
Source: https://github.com/AOMediaCodec/libavif/archive/v%{version}/%{name}-%{version}.tar.gz
Source99: baselibs.conf
# PATCH-FIX-UPSTREAM https://github.com/AOMediaCodec/libavif/pull/1528
Patch0: fix-gdkpixbuf.patch
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: libjpeg8-devel
BuildRequires: pkgconfig(dav1d)
BuildRequires: pkgconfig(gdk-pixbuf-2.0)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gobject-2.0)
BuildRequires: pkgconfig(libpng) >= 1.6.32
BuildRequires: pkgconfig(libwebp)
BuildRequires: pkgconfig(rav1e) >= 0.5.0
%if %{with aom}
BuildRequires: pkgconfig(aom) >= 2.0.0
%endif
%if %{with yuv}
BuildRequires: pkgconfig(libyuv)
%endif
%description
This library aims to be a friendly, portable C implementation of the AV1 Image
File Format, as described here:
https://aomediacodec.github.io/av1-avif/
%package -n avif-tools
Summary: Tools for libavif
Group: Productivity/Graphics/Convertors
Provides: libavif-tools = %{version}
Obsoletes: libavif-tools < %{version}
%description -n avif-tools
This library aims to be a friendly, portable C implementation of the AV1 Image
File Format, as described here:
https://aomediacodec.github.io/av1-avif/
This package holds the commandline tools for libavif.
%package -n %{lib_name}
#
Summary: Shared library from libavif
Group: Development/Libraries/C and C++
%description -n %{lib_name}
This library aims to be a friendly, portable C implementation of the AV1 Image
File Format, as described here:
https://aomediacodec.github.io/av1-avif/
This package holds the shared library for libavif.
%package -n gdk-pixbuf-loader-libavif
Summary: AVIF image loader for GTK+ applications
Group: Development/Libraries/C and C++
%description -n gdk-pixbuf-loader-libavif
A pixbuf-loader plugin to load AVIF images in GTK+ applications.
%package devel
Requires: %{lib_name} = %{version}-%{release}
#
Summary: Development files for libavif
Group: Development/Libraries/C and C++
%description devel
This library aims to be a friendly, portable C implementation of the AV1 Image
File Format, as described here:
https://aomediacodec.github.io/av1-avif/
This package holds the development files for libavif.
%prep
%autosetup -p1
%build
%cmake \
-DAVIF_CODEC_RAV1E:BOOL=ON \
-DAVIF_CODEC_DAV1D:BOOL=ON \
%if %{with aom}
-DAVIF_CODEC_AOM:BOOL=ON \
%endif
-DAVIF_BUILD_APPS:BOOL=ON \
-DAVIF_BUILD_EXAMPLES:BOOL=ON \
-DAVIF_BUILD_GDK_PIXBUF=ON
%cmake_build
%install
%cmake_install
%ldconfig_scriptlets -n %{lib_name}
%files -n %{lib_name}
%license LICENSE
%{_libdir}/libavif.so.%{lib_soversion}*
%files devel
%license LICENSE
%{_libdir}/libavif.so
%{_includedir}/avif/
%{_libdir}/cmake/libavif/
%{_libdir}/pkgconfig/libavif.pc
%files -n avif-tools
%doc *.md
%license LICENSE
%{_bindir}/avifdec
%{_bindir}/avifenc
%files -n gdk-pixbuf-loader-libavif
%{_libdir}/gdk-pixbuf-2.0/*/loaders/libpixbufloader-avif.so
%dir %{_datadir}/thumbnailers
%{_datadir}/thumbnailers/avif.thumbnailer
%changelog