2014-02-07 09:56:59 +00:00
|
|
|
Name: gstreamer1-vaapi
|
2018-03-15 11:29:10 +00:00
|
|
|
Version: 1.13.91
|
2018-02-27 09:14:57 +00:00
|
|
|
Release: 1%{?dist}
|
2014-02-07 09:56:59 +00:00
|
|
|
Summary: GStreamer plugins to use VA API video acceleration
|
|
|
|
|
|
|
|
License: LGPLv2+
|
2016-04-08 14:21:10 +00:00
|
|
|
URL: https://cgit.freedesktop.org/gstreamer/gstreamer-vaapi
|
|
|
|
Source0: https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-%{version}.tar.xz
|
2014-02-07 09:56:59 +00:00
|
|
|
|
2016-04-08 14:21:10 +00:00
|
|
|
BuildRequires: glib2-devel >= 2.32
|
|
|
|
BuildRequires: gstreamer1-devel >= 1.4.0
|
|
|
|
BuildRequires: gstreamer1-plugins-base-devel >= 1.4.0
|
|
|
|
BuildRequires: gstreamer1-plugins-bad-free-devel >= 1.4.0
|
2014-02-07 09:56:59 +00:00
|
|
|
BuildRequires: libva-devel >= 1.1.0
|
|
|
|
BuildRequires: libdrm-devel
|
|
|
|
BuildRequires: libudev-devel
|
|
|
|
BuildRequires: libGL-devel
|
2015-09-30 20:22:55 +00:00
|
|
|
BuildRequires: pkgconfig(egl)
|
2014-10-07 18:07:51 +00:00
|
|
|
BuildRequires: libvpx-devel
|
2015-09-30 20:12:34 +00:00
|
|
|
BuildRequires: pkgconfig(xrandr)
|
|
|
|
BuildRequires: pkgconfig(xrender)
|
2014-10-07 18:07:51 +00:00
|
|
|
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 8
|
2014-04-09 09:07:39 +00:00
|
|
|
BuildRequires: wayland-devel
|
2016-04-08 14:21:10 +00:00
|
|
|
BuildRequires: pkgconfig(wayland-client) >= 1
|
2014-04-09 09:07:39 +00:00
|
|
|
BuildRequires: pkgconfig(wayland-scanner) >= 1
|
2016-04-08 14:21:10 +00:00
|
|
|
BuildRequires: pkgconfig(wayland-cursor) >= 1
|
|
|
|
BuildRequires: pkgconfig(wayland-egl) >= 1
|
|
|
|
BuildRequires: pkgconfig(wayland-server) >= 1
|
2014-10-07 18:07:51 +00:00
|
|
|
%endif
|
|
|
|
|
2015-02-03 21:17:09 +00:00
|
|
|
# We can't provide encoders or decoders unless we know what VA-API drivers
|
|
|
|
# are on the system. Just filter them out, so they're not suggested by
|
|
|
|
# PackageKit et al.
|
|
|
|
%global __provides_exclude gstreamer1\\(decoder|gstreamer1\\(encoder
|
2014-02-07 09:56:59 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
A collection of GStreamer plugins to let you make use of VA API video
|
|
|
|
acceleration from GStreamer applications.
|
|
|
|
|
|
|
|
Includes elements for video decoding, display, encoding and post-processing
|
|
|
|
using VA API (subject to hardware limitations).
|
|
|
|
|
2016-04-08 14:21:10 +00:00
|
|
|
%package devel-docs
|
|
|
|
Summary: Developer documentation for GStreamer VA API video acceleration plugins
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
BuildArch: noarch
|
2014-02-07 09:56:59 +00:00
|
|
|
|
2016-04-17 13:00:20 +00:00
|
|
|
Provides: gstreamer1-vaapi-devel = %{version}-%{release}
|
|
|
|
Obsoletes: gstreamer1-vaapi-devel < 0.6.1-3
|
|
|
|
|
2016-04-08 14:21:10 +00:00
|
|
|
%description devel-docs
|
|
|
|
The %{name}-devel-docs package contains developer documentation
|
|
|
|
for the GStreamer VA API video acceleration plugins
|
2014-02-07 09:56:59 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n gstreamer-vaapi-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
# Wayland support in libva isn't present - gstreamer-vaapi can't support Wayland without it
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1051862
|
2018-02-27 09:28:11 +00:00
|
|
|
%configure --disable-fatal-warnings \
|
2014-04-09 09:07:39 +00:00
|
|
|
--enable-static=no \
|
2014-08-01 16:59:09 +00:00
|
|
|
%{?_without_wayland:--disable-wayland} \
|
|
|
|
--disable-builtin-libvpx
|
2014-04-09 09:07:39 +00:00
|
|
|
|
2014-02-07 09:56:59 +00:00
|
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%make_install
|
|
|
|
|
|
|
|
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
|
|
|
|
|
2016-04-08 14:21:10 +00:00
|
|
|
%check
|
|
|
|
%__make check
|
|
|
|
|
2014-02-07 09:56:59 +00:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS COPYING.LIB NEWS README
|
|
|
|
%{_libdir}/gstreamer-1.0/*.so
|
|
|
|
|
2016-04-08 14:21:10 +00:00
|
|
|
%files devel-docs
|
2014-02-07 09:56:59 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS COPYING.LIB NEWS README
|
2016-04-08 14:21:10 +00:00
|
|
|
%doc %{_datadir}/gtk-doc
|
2014-02-07 09:56:59 +00:00
|
|
|
|
|
|
|
%changelog
|
2018-03-15 11:29:10 +00:00
|
|
|
* Wed Mar 14 2018 Taymans <wtaymans@redhat.com> - 1.13.91-1
|
|
|
|
- Update to 1.13.91
|
|
|
|
|
2018-03-06 07:59:56 +00:00
|
|
|
* Mon Mar 05 2018 Taymans <wtaymans@redhat.com> - 1.13.90-1
|
|
|
|
- Update to 1.13.90
|
|
|
|
|
2018-02-27 09:14:57 +00:00
|
|
|
* Thu Feb 22 2018 Taymans <wtaymans@redhat.com> - 1.13.1-1
|
|
|
|
- Update to 1.13.1
|
2018-02-27 09:28:11 +00:00
|
|
|
- Disable warnings
|
2018-02-27 09:14:57 +00:00
|
|
|
|
2018-02-09 08:04:38 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.12.4-4
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-07 15:39:41 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-15 17:14:23 +00:00
|
|
|
* Mon Jan 15 2018 Nicolas Chauvet <kwizart@gmail.com> - 1.12.4-2
|
|
|
|
- Rebuilt for libva-2.0.0
|
|
|
|
|
2017-12-11 11:18:32 +00:00
|
|
|
* Mon Dec 11 2017 Taymans <wtaymans@redhat.com> - 1.12.4-1
|
|
|
|
- Update to 1.12.4
|
|
|
|
|
2017-09-19 13:35:41 +00:00
|
|
|
* Tue Sep 19 2017 Taymans <wtaymans@redhat.com> - 1.12.3-1
|
|
|
|
- Update to 1.12.3
|
|
|
|
|
2017-08-02 23:09:46 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 12:13:03 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.12.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-17 10:21:24 +00:00
|
|
|
* Mon Jul 17 2017 Taymans <wtaymans@redhat.com> - 1.12.2-1
|
|
|
|
- Update to 1.12.2
|
|
|
|
|
2017-06-20 17:26:23 +00:00
|
|
|
* Tue Jun 20 2017 Taymans <wtaymans@redhat.com> - 1.12.1-1
|
|
|
|
- Update to 1.12.1
|
|
|
|
|
2017-05-11 07:01:56 +00:00
|
|
|
* Wed May 10 2017 Taymans <wtaymans@redhat.com> - 1.12.0-1
|
|
|
|
- Update to 1.12.0
|
|
|
|
|
2017-04-28 16:24:44 +00:00
|
|
|
* Tue Apr 28 2017 Taymans <wtaymans@redhat.com> - 1.11.91-1
|
|
|
|
- Update to 1.11.91
|
|
|
|
|
2017-04-12 17:13:14 +00:00
|
|
|
* Tue Apr 11 2017 Taymans <wtaymans@redhat.com> - 1.11.90-1
|
|
|
|
- Update to 1.11.90
|
|
|
|
|
|
|
|
* Fri Feb 24 2017 Taymans <wtaymans@redhat.com> - 1.11.2-1
|
|
|
|
- Update to 1.11.2
|
|
|
|
|
2017-02-10 12:20:19 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.11.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-13 17:24:54 +00:00
|
|
|
* Fri Jan 13 2017 Taymans <wtaymans@redhat.com> - 1.11.1-1
|
|
|
|
- Update to 1.11.1
|
|
|
|
|
2016-12-05 08:50:03 +00:00
|
|
|
* Mon Dec 05 2016 Taymans <wtaymans@redhat.com> - 1.10.2-1
|
|
|
|
- Update to 1.10.2
|
|
|
|
|
2016-11-28 11:06:52 +00:00
|
|
|
* Mon Nov 28 2016 Taymans <wtaymans@redhat.com> - 1.10.1-1
|
2016-11-28 10:24:11 +00:00
|
|
|
- Update to 1.10.1
|
|
|
|
|
2016-11-03 08:50:15 +00:00
|
|
|
* Thu Nov 03 2016 Wim Taymans <wtaymans@redhat.com> - 1.10.0-1
|
|
|
|
- Update to 1.10.0
|
|
|
|
|
2016-10-01 17:46:31 +00:00
|
|
|
* Sat Oct 01 2016 Wim Taymans <wtaymans@redhat.com> - 1.9.90-1
|
|
|
|
- Update to 1.9.90
|
|
|
|
|
2016-09-01 15:36:41 +00:00
|
|
|
* Thu Sep 01 2016 Wim Taymans <wtaymans@redhat.com> - 1.9.2-1
|
|
|
|
- Update to 1.9.2
|
|
|
|
|
2016-07-07 07:23:47 +00:00
|
|
|
* Thu Jul 07 2016 Wim Taymans <wtaymans@redhat.com> - 1.9.1-1
|
|
|
|
- Update to 1.9.1
|
|
|
|
|
2016-06-09 14:44:52 +00:00
|
|
|
* Thu Jun 09 2016 Wim Taymans <wtaymans@redhat.com> - 1.8.2-1
|
|
|
|
- Update to 1.8.2
|
|
|
|
|
2016-04-25 13:43:07 +00:00
|
|
|
* Mon Apr 25 2016 Wim Taymans <wtaymans@redhat.com> - 1.8.1-1
|
|
|
|
- Update to 1.8.1
|
|
|
|
|
2016-04-08 14:21:10 +00:00
|
|
|
* Fri Apr 08 2016 Egor Zaharov <nexfwall@gmail.com> - 1.8.0-1
|
|
|
|
- Updated to 1.8.0
|
|
|
|
- Update URL to follow project, because they moved to freedesktop
|
|
|
|
|
2016-02-03 23:27:01 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-09-30 20:12:34 +00:00
|
|
|
* Wed Sep 30 2015 Nicolas Chauvet <kwizart@gmail.com> - 0.6.1-1
|
|
|
|
- Update to 0.6.1
|
|
|
|
|
2015-08-04 12:41:54 +00:00
|
|
|
* Sat Jul 18 2015 Francesco Frassinelli <fraph24@gmail.com> - 0.6.0-1
|
|
|
|
- Update to 0.6.0
|
|
|
|
|
2015-06-17 09:57:35 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.10-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-07 10:10:56 +00:00
|
|
|
* Tue Apr 7 2015 Simon Farnsworth <simon.farnsworth@onelan.co.uk> - 0.5.10-3
|
|
|
|
- Update URL to follow project after gitorious shutdown
|
|
|
|
|
2015-02-15 15:42:18 +00:00
|
|
|
* Sun Feb 15 2015 Simon Farnsworth <simon.farnsworth@onelan.co.uk> - 0.5.10-2
|
|
|
|
- Fix FTBFS on s390x due to header file not matching implementation
|
|
|
|
|
2015-02-03 21:17:09 +00:00
|
|
|
* Tue Feb 3 2015 Simon Farnsworth <simon@farnz.org.uk> - 0.5.10-1
|
|
|
|
- Update to 0.5.10 release
|
|
|
|
- Filter out encoder and decoder Provides
|
|
|
|
|
2014-11-04 20:17:19 +00:00
|
|
|
* Tue Nov 04 2014 Nicolas Chauvet <kwizart@gmail.com> - 0.5.9-3
|
|
|
|
- Rebuilt for vaapi 0.36
|
|
|
|
|
2014-08-16 19:23:48 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.9-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-01 16:59:09 +00:00
|
|
|
* Fri Aug 1 2014 Simon Farnsworth <simon.farnsworth@onelan.co.uk> - 0.5.9-1
|
|
|
|
- Update to 0.5.9 release
|
|
|
|
|
2014-06-07 19:01:36 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.8-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-09 09:07:39 +00:00
|
|
|
* Wed Apr 9 2014 Simon Farnsworth <simon.farnsworth@onelan.co.uk> - 0.5.8-4
|
|
|
|
- Provide Wayland support now that libva includes it
|
|
|
|
|
2014-02-07 15:00:44 +00:00
|
|
|
* Fri Feb 7 2014 Simon Farnsworth <simon@farnz.org.uk> - 0.5.8-3
|
2018-02-09 08:04:38 +00:00
|
|
|
- Fix typo in spec file - Patch1 and %%patch0 don't go together
|
2014-02-07 15:00:44 +00:00
|
|
|
|
2014-02-07 14:57:35 +00:00
|
|
|
* Fri Feb 7 2014 Simon Farnsworth <simon@farnz.org.uk> - 0.5.8-2
|
|
|
|
- Fix vaapipostproc crash in live pipelines
|
|
|
|
|
2014-02-07 09:56:59 +00:00
|
|
|
* Wed Feb 5 2014 Simon Farnsworth <simon@farnz.org.uk> - 0.5.8-1
|
|
|
|
- initial release
|