[VirtualBox-kmod/f25] (5 commits) ...drop fixes_for_4.14.patch
by Sérgio M. Basto
Summary of changes:
ecac1f7... Tempory disable broken dep of buildsys-build-rpmfusion-kern (*)
f915f54... Reenable buildsys-build-rpmfusion-kerneldevpkgs-current (*)
c70cbdf... Add fixes for kernel 4.14 (*)
d5a04f5... Update VBox to 5.1.30 (*)
4d08626... drop fixes_for_4.14.patch (*)
(*) This commit already existed in another branch; no separate mail sent
7 years
[VirtualBox/el7] (7 commits) ...disable webservice in i686 builders complains about memory
by Sérgio M. Basto
Summary of changes:
1b96759... Update VBox to 5.1.30 (*)
472d0ce... Some updates on VirtualBox-guest-addition based on VirtualB (*)
d1f23de... fix typo in update script (*)
e6c2bce... update automate script (*)
5893d3c... Restore kmk configurations VBOX_PATH_APP_PRIVATE and VBOX_P (*)
5dca50b... Merge branch 'master' into f27 (*)
ad08a5c... disable webservice in i686 builders complains about memory (*)
(*) This commit already existed in another branch; no separate mail sent
7 years
[VirtualBox/f25] (8 commits) ...disable webservice in i686 builders complains about memory
by Sérgio M. Basto
Summary of changes:
6225cb4... Epel 7 with X 1.19 don't need vboxvideo_drv https://forum (*)
1b96759... Update VBox to 5.1.30 (*)
472d0ce... Some updates on VirtualBox-guest-addition based on VirtualB (*)
d1f23de... fix typo in update script (*)
e6c2bce... update automate script (*)
5893d3c... Restore kmk configurations VBOX_PATH_APP_PRIVATE and VBOX_P (*)
5dca50b... Merge branch 'master' into f27 (*)
ad08a5c... disable webservice in i686 builders complains about memory (*)
(*) This commit already existed in another branch; no separate mail sent
7 years
[VirtualBox/f26] (8 commits) ...disable webservice in i686 builders complains about memory
by Sérgio M. Basto
Summary of changes:
6225cb4... Epel 7 with X 1.19 don't need vboxvideo_drv https://forum (*)
1b96759... Update VBox to 5.1.30 (*)
472d0ce... Some updates on VirtualBox-guest-addition based on VirtualB (*)
d1f23de... fix typo in update script (*)
e6c2bce... update automate script (*)
5893d3c... Restore kmk configurations VBOX_PATH_APP_PRIVATE and VBOX_P (*)
5dca50b... Merge branch 'master' into f27 (*)
ad08a5c... disable webservice in i686 builders complains about memory (*)
(*) This commit already existed in another branch; no separate mail sent
7 years
[gstreamer1-libav] Temporary patch for FFMpeg 3.4 APIs.
by Leigh Scott
commit 419d0a80217426c99ec26d8c4949b71f5adedf55
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Sun Nov 19 10:02:25 2017 +0000
Temporary patch for FFMpeg 3.4 APIs.
gstreamer1-libav-temp-ffmpeg-3.4-api.patch | 25 +++++++++++++++++++++++++
gstreamer1-libav.spec | 10 ++++++++--
2 files changed, 33 insertions(+), 2 deletions(-)
---
diff --git a/gstreamer1-libav-temp-ffmpeg-3.4-api.patch b/gstreamer1-libav-temp-ffmpeg-3.4-api.patch
new file mode 100644
index 0000000..9558713
--- /dev/null
+++ b/gstreamer1-libav-temp-ffmpeg-3.4-api.patch
@@ -0,0 +1,25 @@
+--- gst-libav-1.12.3.orig/ext/libav/gstavviddec.c 2017-08-10 17:56:34.000000000 +0200
++++ gst-libav-1.12.3.orig/ext/libav/gstavviddec.c 2017-11-04 21:48:00.784354386 +0100
+@@ -1525,8 +1525,20 @@
+ * See https://bugzilla.gnome.org/show_bug.cgi?id=726020
+ */
+ GST_VIDEO_DECODER_STREAM_UNLOCK (ffmpegdec);
+- len = avcodec_decode_video2 (ffmpegdec->context,
+- ffmpegdec->picture, have_data, &packet);
++ *have_data = 0;
++ if (size > 0) {
++ len = avcodec_send_packet(ffmpegdec->context, &packet);
++ if (len == AVERROR(EAGAIN)) {
++ len = 0;
++ } else {
++ len = size;
++ }
++ if (len >= 0) {
++ int result = avcodec_receive_frame(ffmpegdec->context, ffmpegdec->picture);
++ if (result == 0)
++ *have_data = 1;
++ }
++ }
+ GST_VIDEO_DECODER_STREAM_LOCK (ffmpegdec);
+
+ GST_DEBUG_OBJECT (ffmpegdec, "after decode: len %d, have_data %d",
diff --git a/gstreamer1-libav.spec b/gstreamer1-libav.spec
index 49efb9e..fe27d80 100644
--- a/gstreamer1-libav.spec
+++ b/gstreamer1-libav.spec
@@ -1,12 +1,15 @@
Name: gstreamer1-libav
Version: 1.12.3
-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
+%if 0%{?fedora} > 27 || 0%{?rhel} > 8
+Patch1: %{name}-temp-ffmpeg-3.4-api.patch
+%endif
BuildRequires: gstreamer1-devel >= %{version}
BuildRequires: gstreamer1-plugins-base-devel >= %{version}
BuildRequires: orc-devel
@@ -43,7 +46,7 @@ plug-in.
%prep
-%autosetup -n gst-libav-%{version}
+%autosetup -p1 -n gst-libav-%{version}
%build
@@ -72,6 +75,9 @@ rm %{buildroot}%{_libdir}/gstreamer-1.0/libgst*.la
%changelog
+* Sat Nov 18 2017 Simone Caronni <negativo17(a)gmail.com> - 1.12.3-3
+- Temporary patch for FFMpeg 3.4 APIs.
+
* Mon Oct 16 2017 Leigh Scott <leigh123linux(a)googlemail.com> - 1.12.3-2
- Rebuild for ffmpeg update
7 years
[kodi/f26] Update to 17.6
by Michael Cronenworth
Summary of changes:
204ba6e... Update to 17.6 (*)
(*) This commit already existed in another branch; no separate mail sent
7 years
[kodi/f27] Update to 17.6
by Michael Cronenworth
Summary of changes:
204ba6e... Update to 17.6 (*)
(*) This commit already existed in another branch; no separate mail sent
7 years