Hello community, here is the log from the commit of package gstreamer-0_10-plugins-good for openSUSE:Factory checked in at 2012-10-03 07:29:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gstreamer-0_10-plugins-good (Old) and /work/SRC/openSUSE:Factory/.gstreamer-0_10-plugins-good.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gstreamer-0_10-plugins-good", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/gstreamer-0_10-plugins-good/gstreamer-0_10-plugins-good.changes 2012-04-02 10:50:55.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.gstreamer-0_10-plugins-good.new/gstreamer-0_10-plugins-good.changes 2012-10-03 07:29:28.000000000 +0200 @@ -1,0 +2,6 @@ +Tue Oct 2 07:10:14 UTC 2012 - [email protected] + +- Add gstreamer-0_10-plugins-good-v4l2.patch: Fix build with recent + kernels, theh v4l2 buffer input field was removed. + +------------------------------------------------------------------- New: ---- gstreamer-0_10-plugins-good-v4l2.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gstreamer-0_10-plugins-good.spec ++++++ --- /var/tmp/diff_new_pack.ZguxkD/_old 2012-10-03 07:29:31.000000000 +0200 +++ /var/tmp/diff_new_pack.ZguxkD/_new 2012-10-03 07:29:31.000000000 +0200 @@ -33,6 +33,8 @@ Source0: http://gstreamer.freedesktop.org/src/gst-plugins-good/%{_name}-%{version}.tar.xz # PATCH-FIX-UPSTREAM gstreamer-0_10-plugins-good-missing-return-value.patch bgo#670561 [email protected] -- Fix missing return value Patch0: gstreamer-0_10-plugins-good-missing-return-value.patch +# PATCH-FIX-UPSTREAM gstreamer-0_10-plugins-good-v4l2.patch [email protected] -- Fix build with recent kernels, taken from upstream git. +Patch1: gstreamer-0_10-plugins-good-v4l2.patch %if 0%{?ENABLE_AALIB} BuildRequires: aalib-devel %endif @@ -183,6 +185,7 @@ %setup -q -n %{_name}-%{version} translation-update-upstream po gst-plugins-good-0.10 %patch0 -p1 +%patch1 -p1 %build # FIXME: ++++++ gstreamer-0_10-plugins-good-v4l2.patch ++++++ >From bfb1ac952b4c3caaba0297bbe7dc73ea92f9b292 Mon Sep 17 00:00:00 2001 From: Matthias Clasen <[email protected]> Date: Thu, 09 Aug 2012 07:35:23 +0000 Subject: v4l2: fix build with recent kernels, the v4l2_buffer input field was removed This was unused apparently and removed in the kernel in commit: From 2b719d7baf490e24ce7d817c6337b7c87fda84c1 Mon Sep 17 00:00:00 2001 From: Sakari Ailus <[email protected]> Date: Wed, 2 May 2012 09:40:03 -0300 Subject: [PATCH] [media] v4l: drop v4l2_buffer.input and V4L2_BUF_FLAG_INPUT Remove input field in struct v4l2_buffer and flag V4L2_BUF_FLAG_INPUT which tells the former is valid. The flag is used by no driver currently. https://bugzilla.gnome.org/show_bug.cgi?id=681491 --- Index: gst-plugins-good-0.10.31/sys/v4l2/gstv4l2bufferpool.c =================================================================== --- gst-plugins-good-0.10.31.orig/sys/v4l2/gstv4l2bufferpool.c +++ gst-plugins-good-0.10.31/sys/v4l2/gstv4l2bufferpool.c @@ -181,7 +181,6 @@ gst_v4l2_buffer_new (GstV4l2BufferPool * GST_LOG_OBJECT (pool->v4l2elem, " MMAP offset: %u", ret->vbuffer.m.offset); GST_LOG_OBJECT (pool->v4l2elem, " length: %u", ret->vbuffer.length); - GST_LOG_OBJECT (pool->v4l2elem, " input: %u", ret->vbuffer.input); data = (guint8 *) v4l2_mmap (0, ret->vbuffer.length, PROT_READ | PROT_WRITE, MAP_SHARED, pool->video_fd, -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
