[gstreamer1-libav/el7] Add patch to ignore VAAPI decoders and VAAPI/nvenc encoders (rfbz#4334)
by Leigh Scott
commit 7d751de808129716a4be10b0c4106d099b05ff94
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Fri Nov 11 00:09:29 2016 +0000
Add patch to ignore VAAPI decoders and VAAPI/nvenc encoders (rfbz#4334)
gstreamer1-libav.spec | 7 ++++++-
ignore_vaapi.patch | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+), 1 deletion(-)
---
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index aea3514..9910738 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,12 +1,13 @@
Name: gstreamer1-libav
Version: 1.8.2
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
License: LGPLv2+
URL: http://gstreamer.freedesktop.org/
Source0: http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-%{version}.tar.xz
Patch0: gst-ffmpeg-0.10.12-ChangeLog-UTF-8.patch
+Patch1: ignore_vaapi.patch
BuildRequires: gstreamer1-devel >= 1.6.0
BuildRequires: gstreamer1-plugins-base-devel >= 1.6.0
BuildRequires: orc-devel bzip2-devel zlib-devel ffmpeg-devel
@@ -42,6 +43,7 @@ plug-in.
%prep
%setup -q -n gst-libav-%{version}
%patch0 -p1
+%patch1 -p1
%build
@@ -69,6 +71,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Fri Nov 11 2016 Leigh Scott <leigh123linux(a)googlemail.com> - 1.8.2-3
+- Add patch to ignore VAAPI decoders and VAAPI/nvenc encoders
+
* Sat Jul 30 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.8.2-2
- Rebuilt for ffmpeg-3.1.1
diff --git a/ignore_vaapi.patch b/ignore_vaapi.patch
new file mode 100644
index 0000000..a79c992
--- /dev/null
+++ b/ignore_vaapi.patch
@@ -0,0 +1,53 @@
+From 8666d9fda0be7f86f548297dc83b09d92824de49 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian(a)centricular.com>
+Date: Fri, 22 Jul 2016 14:42:59 +0300
+Subject: libav: Ignore VAAPI decoders and VAAPI/nvenc encoders
+
+These can show up when having a build against a system version of ffmpeg.
+
+diff --git a/ext/libav/gstavviddec.c b/ext/libav/gstavviddec.c
+index 53391ad..2fdff95 100644
+--- a/ext/libav/gstavviddec.c
++++ b/ext/libav/gstavviddec.c
+@@ -2061,6 +2061,13 @@ gst_ffmpegviddec_register (GstPlugin * plugin)
+ goto next;
+ }
+
++ if (strstr (in_plugin->name, "vaapi")) {
++ GST_DEBUG
++ ("Ignoring VAAPI decoder %s. We can't handle this outside of ffmpeg",
++ in_plugin->name);
++ goto next;
++ }
++
+ GST_DEBUG ("Trying plugin %s [%s]", in_plugin->name, in_plugin->long_name);
+
+ /* no codecs for which we're GUARANTEED to have better alternatives */
+diff --git a/ext/libav/gstavvidenc.c b/ext/libav/gstavvidenc.c
+index 2d8391b..f22f697 100644
+--- a/ext/libav/gstavvidenc.c
++++ b/ext/libav/gstavvidenc.c
+@@ -973,6 +973,20 @@ gst_ffmpegvidenc_register (GstPlugin * plugin)
+ goto next;
+ }
+
++ if (strstr (in_plugin->name, "vaapi")) {
++ GST_DEBUG
++ ("Ignoring VAAPI encoder %s. We can't handle this outside of ffmpeg",
++ in_plugin->name);
++ goto next;
++ }
++
++ if (g_str_has_suffix (in_plugin->name, "_nvenc")) {
++ GST_DEBUG
++ ("Ignoring nvenc encoder %s. We can't handle this outside of ffmpeg",
++ in_plugin->name);
++ goto next;
++ }
++
+ /* only video encoders */
+ if (!av_codec_is_encoder (in_plugin)
+ || in_plugin->type != AVMEDIA_TYPE_VIDEO)
+--
+cgit v0.10.2
+
6 years, 2 months
[gstreamer1-libav/el7] Rebuilt for ffmpeg-3.1.1
by Leigh Scott
commit b124c5fca2c475fd728bf87394ac26e98724a48e
Author: Julian Sikorski <belegdol(a)fedoraproject.org>
Date: Sat Jul 30 15:54:44 2016 +0200
Rebuilt for ffmpeg-3.1.1
gstreamer1-libav.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 0a3c144..aea3514 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,6 +1,6 @@
Name: gstreamer1-libav
Version: 1.8.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
License: LGPLv2+
@@ -69,6 +69,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Sat Jul 30 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.8.2-2
+- Rebuilt for ffmpeg-3.1.1
+
* Sun Jun 12 2016 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.8.2-1
- Update to 1.8.2
6 years, 2 months
[gstreamer1-libav/el7] Update to 1.8.2
by Leigh Scott
commit 0232a9119e61c73bc8642d9ce85e7adf0703e053
Author: Hans de Goede <j.w.r.degoede(a)gmail.com>
Date: Sun Jun 12 13:36:30 2016 +0200
Update to 1.8.2
.gitignore | 1 +
gstreamer1-libav.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 537c66c..0f8856c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@ gst-libav-1.6.1.tar.xz
gst-libav-1.6.2.tar.xz
gst-libav-1.6.3.tar.xz
gst-libav-1.8.1.tar.xz
+gst-libav-1.8.2.tar.xz
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 5a8493a..0a3c144 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,5 +1,5 @@
Name: gstreamer1-libav
-Version: 1.8.1
+Version: 1.8.2
Release: 1%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
@@ -69,6 +69,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Sun Jun 12 2016 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.8.2-1
+- Update to 1.8.2
+
* Wed May 18 2016 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.8.1-1
- Update to 1.8.1
diff --git a/sources b/sources
index 81827bc..9136f8f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-85f1a047606ca9e08493d7b6b42df462 gst-libav-1.8.1.tar.xz
+95bc3dd0ea2dc664b4f3a96897005013 gst-libav-1.8.2.tar.xz
6 years, 2 months
[gstreamer1-libav/el7] Update to 1.8.1
by Leigh Scott
commit a9a49f1a3ac05998faed7f0af0c66d7821aaf832
Author: Hans de Goede <j.w.r.degoede(a)gmail.com>
Date: Wed May 18 11:42:10 2016 +0200
Update to 1.8.1
.gitignore | 1 +
gstreamer1-libav.spec | 11 ++++++-----
sources | 2 +-
3 files changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index b0f89e0..537c66c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ libav-10.6.tar.xz
gst-libav-1.6.1.tar.xz
gst-libav-1.6.2.tar.xz
gst-libav-1.6.3.tar.xz
+gst-libav-1.8.1.tar.xz
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 49eaa52..5a8493a 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,5 +1,5 @@
Name: gstreamer1-libav
-Version: 1.6.3
+Version: 1.8.1
Release: 1%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
@@ -42,9 +42,6 @@ plug-in.
%prep
%setup -q -n gst-libav-%{version}
%patch0 -p1
-# hack to allow building against 1.6.0 as 1.6.3 is not yet in the buildroot
-sed -i 's/GST_REQ=1.6.3/GST_REQ=1.6.0/' configure
-sed -i 's/GST_PBREQ=1.6.3/GST_PBREQ=1.6.0/' configure
%build
@@ -62,7 +59,8 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%files
-%doc AUTHORS COPYING.LIB ChangeLog NEWS README TODO
+%doc AUTHORS ChangeLog NEWS README TODO
+%license COPYING.LIB
%{_libdir}/gstreamer-1.0/libgstlibav.so
%files devel-docs
@@ -71,6 +69,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Wed May 18 2016 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.8.1-1
+- Update to 1.8.1
+
* Sat Jan 23 2016 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.6.3-1
- Update to 1.6.3
diff --git a/sources b/sources
index f7407d4..81827bc 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-cfe9a06913d4fd4067e9e47f6e05fac2 gst-libav-1.6.3.tar.xz
+85f1a047606ca9e08493d7b6b42df462 gst-libav-1.8.1.tar.xz
6 years, 2 months
[gstreamer1-libav/el7] Update to 1.6.3
by Leigh Scott
commit a3203abec57bc2eefbd1f527d4b1c7530c4edff8
Author: Hans de Goede <j.w.r.degoede(a)gmail.com>
Date: Sat Jan 23 12:36:29 2016 +0100
Update to 1.6.3
.gitignore | 1 +
gstreamer1-libav.spec | 11 +++++++----
sources | 2 +-
3 files changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 5a8eb59..b0f89e0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ gst-libav-1.4.5.tar.xz
libav-10.6.tar.xz
gst-libav-1.6.1.tar.xz
gst-libav-1.6.2.tar.xz
+gst-libav-1.6.3.tar.xz
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 5b9638a..49eaa52 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,5 +1,5 @@
Name: gstreamer1-libav
-Version: 1.6.2
+Version: 1.6.3
Release: 1%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
@@ -42,9 +42,9 @@ plug-in.
%prep
%setup -q -n gst-libav-%{version}
%patch0 -p1
-# hack to allow building against 1.6.0 as 1.6.2 is not yet in the buildroot
-sed -i 's/GST_REQ=1.6.2/GST_REQ=1.6.0/' configure
-sed -i 's/GST_PBREQ=1.6.2/GST_PBREQ=1.6.0/' configure
+# hack to allow building against 1.6.0 as 1.6.3 is not yet in the buildroot
+sed -i 's/GST_REQ=1.6.3/GST_REQ=1.6.0/' configure
+sed -i 's/GST_PBREQ=1.6.3/GST_PBREQ=1.6.0/' configure
%build
@@ -71,6 +71,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Sat Jan 23 2016 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.6.3-1
+- Update to 1.6.3
+
* Thu Dec 24 2015 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.6.2-1
- Update to 1.6.2
diff --git a/sources b/sources
index f8a81e0..f7407d4 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-09644a38827d233f53edeac815dd0ec0 gst-libav-1.6.2.tar.xz
+cfe9a06913d4fd4067e9e47f6e05fac2 gst-libav-1.6.3.tar.xz
6 years, 2 months
[gstreamer1-libav/el7] Allow building against older gstreamer-1.6.x
by Leigh Scott
commit b161076c3ecb68ab3a759db7aa93fbd5e2fad0ca
Author: Hans de Goede <j.w.r.degoede(a)gmail.com>
Date: Tue Jan 5 11:39:28 2016 +0100
Allow building against older gstreamer-1.6.x
gstreamer1-libav.spec | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 642caff..5b9638a 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -42,9 +42,9 @@ plug-in.
%prep
%setup -q -n gst-libav-%{version}
%patch0 -p1
-# hack to allow building against 1.6.0 as 1.6.1 is not yet in the buildroot
-sed -i 's/GST_REQ=1.6.1/GST_REQ=1.6.0/' configure
-sed -i 's/GST_PBREQ=1.6.1/GST_PBREQ=1.6.0/' configure
+# hack to allow building against 1.6.0 as 1.6.2 is not yet in the buildroot
+sed -i 's/GST_REQ=1.6.2/GST_REQ=1.6.0/' configure
+sed -i 's/GST_PBREQ=1.6.2/GST_PBREQ=1.6.0/' configure
%build
6 years, 2 months
[gstreamer1-libav/el7] Update to 1.6.2
by Leigh Scott
commit 9ed0037165540b78d40cde1d5270ec4017e8d584
Author: Hans de Goede <j.w.r.degoede(a)gmail.com>
Date: Thu Dec 24 15:15:03 2015 +0100
Update to 1.6.2
.gitignore | 1 +
gstreamer1-libav.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index a042bc3..5a8eb59 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
gst-libav-1.4.5.tar.xz
libav-10.6.tar.xz
gst-libav-1.6.1.tar.xz
+gst-libav-1.6.2.tar.xz
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 9e81a93..642caff 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,5 +1,5 @@
Name: gstreamer1-libav
-Version: 1.6.1
+Version: 1.6.2
Release: 1%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
@@ -71,6 +71,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Thu Dec 24 2015 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.6.2-1
+- Update to 1.6.2
+
* Sat Oct 31 2015 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.6.1-1
- Update to 1.6.1
- Upstream is using ffmpeg instead of libav now, switch to system ffmpeg-libs
diff --git a/sources b/sources
index d532572..f8a81e0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-058b22411e1690eee5b71d1ab44eab25 gst-libav-1.6.1.tar.xz
+09644a38827d233f53edeac815dd0ec0 gst-libav-1.6.2.tar.xz
6 years, 2 months
[gstreamer1-libav/el7] Update to 1.6.1
by Leigh Scott
commit fdacca10549de89a765b20ebe61d4b5c3cd43dfe
Author: Hans de Goede <hdegoede(a)redhat.com>
Date: Sat Oct 31 10:55:44 2015 +0100
Update to 1.6.1
- Upstream is using ffmpeg instead of libav now, switch to system ffmpeg-libs
.gitignore | 1 +
gst-libav-1.1.3-ffmpeg-2.0.patch | 121 ---------------------------------------
gstreamer1-libav.spec | 22 ++++---
sources | 3 +-
4 files changed, 15 insertions(+), 132 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 1a6915f..a042bc3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
gst-libav-1.4.5.tar.xz
libav-10.6.tar.xz
+gst-libav-1.6.1.tar.xz
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 30860e6..9e81a93 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,16 +1,14 @@
Name: gstreamer1-libav
-Version: 1.4.5
+Version: 1.6.1
Release: 1%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
License: LGPLv2+
URL: http://gstreamer.freedesktop.org/
Source0: http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-%{version}.tar.xz
-# We drop in a newer libav to get all the security bugfixes from there!
-Source1: http://libav.org/releases/libav-10.6.tar.xz
Patch0: gst-ffmpeg-0.10.12-ChangeLog-UTF-8.patch
-BuildRequires: gstreamer1-devel >= 1.4.0
-BuildRequires: gstreamer1-plugins-base-devel >= 1.4.0
+BuildRequires: gstreamer1-devel >= 1.6.0
+BuildRequires: gstreamer1-plugins-base-devel >= 1.6.0
BuildRequires: orc-devel bzip2-devel zlib-devel ffmpeg-devel
%ifarch %{ix86} x86_64
BuildRequires: yasm
@@ -42,17 +40,19 @@ plug-in.
%prep
-%setup -q -n gst-libav-%{version} -a 1
-rm -r gst-libs/ext/libav
-mv libav-10.6 gst-libs/ext/libav
+%setup -q -n gst-libav-%{version}
%patch0 -p1
+# hack to allow building against 1.6.0 as 1.6.1 is not yet in the buildroot
+sed -i 's/GST_REQ=1.6.1/GST_REQ=1.6.0/' configure
+sed -i 's/GST_PBREQ=1.6.1/GST_PBREQ=1.6.0/' configure
%build
+export CFLAGS="$RPM_OPT_FLAGS -Wno-deprecated-declarations"
%configure --disable-dependency-tracking --disable-static \
--with-package-name="gst-libav 1.0 rpmfusion rpm" \
--with-package-origin="http://rpmfusion.org/" \
- --with-libav-extra-configure="--enable-runtime-cpudetect --arch=%{_target_cpu} --optflags=\\\"\\\$RPM_OPT_FLAGS\\\""
+ --with-system-libav
make %{?_smp_mflags} V=1
@@ -71,6 +71,10 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Sat Oct 31 2015 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.6.1-1
+- Update to 1.6.1
+- Upstream is using ffmpeg instead of libav now, switch to system ffmpeg-libs
+
* Sat May 16 2015 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.5-1
- Update to 1.4.5
- Update libav to 10.6
diff --git a/sources b/sources
index 86749eb..d532572 100644
--- a/sources
+++ b/sources
@@ -1,2 +1 @@
-f4922a46adbcbe7bd01331ff5dc7979d gst-libav-1.4.5.tar.xz
-dcdf0e8c2f5fa1fc69d61cd8154cbe46 libav-10.6.tar.xz
+058b22411e1690eee5b71d1ab44eab25 gst-libav-1.6.1.tar.xz
6 years, 2 months
[gstreamer1-libav/el7] * Sat May 16 2015 Hans de Goede <j.w.r.degoede@gmail.com> - 1.4.5-1 - Update to 1.4.5 - Update libav
by Leigh Scott
commit 296754fbc6ffc53602a1f281775d197071819dd1
Author: Hans de Goede <j.w.r.degoede(a)gmail.com>
Date: Sat May 16 07:40:24 2015 +0000
* Sat May 16 2015 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.5-1
- Update to 1.4.5
- Update libav to 10.6
.gitignore | 3 ++-
gstreamer1-libav.spec | 15 +++++++++------
sources | 3 ++-
3 files changed, 13 insertions(+), 8 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index dd7843d..1a6915f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-gst-libav-1.4.3.tar.xz
+gst-libav-1.4.5.tar.xz
+libav-10.6.tar.xz
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 7f18d2e..30860e6 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,5 +1,5 @@
Name: gstreamer1-libav
-Version: 1.4.3
+Version: 1.4.5
Release: 1%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
@@ -7,7 +7,7 @@ License: LGPLv2+
URL: http://gstreamer.freedesktop.org/
Source0: http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-%{version}.tar.xz
# We drop in a newer libav to get all the security bugfixes from there!
-# Source1: http://libav.org/releases/libav-9.13.tar.xz
+Source1: http://libav.org/releases/libav-10.6.tar.xz
Patch0: gst-ffmpeg-0.10.12-ChangeLog-UTF-8.patch
BuildRequires: gstreamer1-devel >= 1.4.0
BuildRequires: gstreamer1-plugins-base-devel >= 1.4.0
@@ -42,10 +42,9 @@ plug-in.
%prep
-%setup -q -n gst-libav-%{version}
-# -a 1
-#rm -r gst-libs/ext/libav
-#mv libav-9.13 gst-libs/ext/libav
+%setup -q -n gst-libav-%{version} -a 1
+rm -r gst-libs/ext/libav
+mv libav-10.6 gst-libs/ext/libav
%patch0 -p1
@@ -72,6 +71,10 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Sat May 16 2015 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.5-1
+- Update to 1.4.5
+- Update libav to 10.6
+
* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.3-1
- Update to 1.4.3
- Includes libav 10.5
diff --git a/sources b/sources
index f314471..86749eb 100644
--- a/sources
+++ b/sources
@@ -1 +1,2 @@
-248b6aae752710bbae77af01f74a082d gst-libav-1.4.3.tar.xz
+f4922a46adbcbe7bd01331ff5dc7979d gst-libav-1.4.5.tar.xz
+dcdf0e8c2f5fa1fc69d61cd8154cbe46 libav-10.6.tar.xz
6 years, 2 months
[gstreamer1-libav/el7] * Wed Oct 1 2014 Hans de Goede <j.w.r.degoede@gmail.com> - 1.4.3-1 - Update to 1.4.3 - Includes lib
by Leigh Scott
commit 7f4409de3c8080606fb25ba314dab14ce81d5d36
Author: Hans de Goede <j.w.r.degoede(a)gmail.com>
Date: Wed Oct 1 11:34:37 2014 +0000
* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.3-1
- Update to 1.4.3
- Includes libav 10.5
.gitignore | 2 +-
gstreamer1-libav.spec | 6 +++++-
sources | 2 +-
3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d696f38..dd7843d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-gst-libav-1.4.1.tar.xz
+gst-libav-1.4.3.tar.xz
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index c4ea0da..7f18d2e 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,5 +1,5 @@
Name: gstreamer1-libav
-Version: 1.4.1
+Version: 1.4.3
Release: 1%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
@@ -72,6 +72,10 @@ rm $RPM_BUILD_ROOT%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.3-1
+- Update to 1.4.3
+- Includes libav 10.5
+
* Fri Aug 29 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.1-1
- Update to 1.4.1 (rf#3343)
- Includes libav 10.4
diff --git a/sources b/sources
index 2e45ed2..f314471 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-ea2d636c24d7c5ae123967ef22e37c07 gst-libav-1.4.1.tar.xz
+248b6aae752710bbae77af01f74a082d gst-libav-1.4.3.tar.xz
6 years, 2 months