Accepting request 133465 from GNOME:Next
Update to 0.11.93 - patch mentioned in .changes OBS-URL: https://build.opensuse.org/request/show/133465 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/gstreamer-plugins-base?expand=0&rev=9
This commit is contained in:
parent
331642e67e
commit
0ab78b9be1
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:00ad53f405a57b8c812edfbb0978be6bf57d0c8ea91069e8024c4d1aacf60902
|
||||
size 2316404
|
3
gst-plugins-base-0.11.93.tar.xz
Normal file
3
gst-plugins-base-0.11.93.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d0cce74557a7815c0a9dae7ae9241eea6314478e0bfa3759dbac1b63bcff51d8
|
||||
size 2322608
|
45
gstreamer-plugins-base-fix.patch
Normal file
45
gstreamer-plugins-base-fix.patch
Normal file
@ -0,0 +1,45 @@
|
||||
From 7bdcb12b41780694019a4e65b9ac1addf2afabc8 Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Drö<sebastian.droege@collabora.co.uk>
|
||||
Date: Wed, 08 Aug 2012 14:12:20 +0000
|
||||
Subject: gst: Set alignment at the correct place of GstAllocationParams
|
||||
|
||||
---
|
||||
Index: gst-plugins-base-0.11.93/gst-libs/gst/video/gstvideofilter.c
|
||||
===================================================================
|
||||
--- gst-plugins-base-0.11.93.orig/gst-libs/gst/video/gstvideofilter.c
|
||||
+++ gst-plugins-base-0.11.93/gst-libs/gst/video/gstvideofilter.c
|
||||
@@ -82,7 +82,7 @@ gst_video_filter_propose_allocation (Gst
|
||||
if (gst_query_get_n_allocation_pools (query) == 0) {
|
||||
GstStructure *structure;
|
||||
GstAllocator *allocator = NULL;
|
||||
- GstAllocationParams params = { 0, 0, 0, 15, };
|
||||
+ GstAllocationParams params = { 0, 15, 0, 0, };
|
||||
|
||||
if (gst_query_get_n_allocation_params (query) > 0)
|
||||
gst_query_parse_nth_allocation_param (query, 0, &allocator, ¶ms);
|
||||
Index: gst-plugins-base-0.11.93/sys/ximage/ximagesink.c
|
||||
===================================================================
|
||||
--- gst-plugins-base-0.11.93.orig/sys/ximage/ximagesink.c
|
||||
+++ gst-plugins-base-0.11.93/sys/ximage/ximagesink.c
|
||||
@@ -1079,7 +1079,7 @@ gst_ximagesink_setcaps (GstBaseSink * bs
|
||||
GstBufferPool *newpool, *oldpool;
|
||||
const GValue *par;
|
||||
gint size;
|
||||
- static GstAllocationParams params = { 0, 0, 0, 15, };
|
||||
+ static GstAllocationParams params = { 0, 15, 0, 0, };
|
||||
|
||||
ximagesink = GST_XIMAGESINK (bsink);
|
||||
|
||||
Index: gst-plugins-base-0.11.93/sys/xvimage/xvimagesink.c
|
||||
===================================================================
|
||||
--- gst-plugins-base-0.11.93.orig/sys/xvimage/xvimagesink.c
|
||||
+++ gst-plugins-base-0.11.93/sys/xvimage/xvimagesink.c
|
||||
@@ -1555,7 +1555,7 @@ gst_xvimagesink_setcaps (GstBaseSink * b
|
||||
gint display_par_n, display_par_d; /* display's PAR */
|
||||
guint num, den;
|
||||
gint size;
|
||||
- static GstAllocationParams params = { 0, 0, 0, 15, };
|
||||
+ static GstAllocationParams params = { 0, 15, 0, 0, };
|
||||
|
||||
xvimagesink = GST_XVIMAGESINK (bsink);
|
||||
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 13 07:44:21 UTC 2012 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 0.11.93:
|
||||
+ Bug fixes
|
||||
+ Sync with GStreamer changes.
|
||||
- Add gstreamer-plugins-base-fix.patch: Fix build; taken from
|
||||
upstream.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 17 19:22:46 UTC 2012 - dimstar@opensuse.org
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
Name: gstreamer-plugins-base
|
||||
%define _name gst-plugins-base
|
||||
Version: 0.11.92
|
||||
Version: 0.11.93
|
||||
Release: 0
|
||||
%define gst_branch 1.0
|
||||
Url: http://gstreamer.freedesktop.org/
|
||||
@ -26,17 +26,19 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Summary: GStreamer Streaming-Media Framework Plug-Ins
|
||||
License: GPL-2.0+ ; LGPL-2.1+
|
||||
Group: Productivity/Multimedia/Other
|
||||
Source: http://gstreamer.freedesktop.org/src/gst-plugins-base/%{_name}-%{version}.tar.xz
|
||||
Source: http://download.gnome.org/sources/gst-plugins-base/0.11/%{_name}-%{version}.tar.xz
|
||||
Source2: baselibs.conf
|
||||
# PATCH-FIX-UPSTREAM gstreamer-plugins-base-fix.patch dimstar@opensuse.org -- gst: Set alignment at the correct place of GstAllocationParams, taken from git
|
||||
Patch0: gstreamer-plugins-base-fix.patch
|
||||
BuildRequires: cdparanoia-devel
|
||||
BuildRequires: glib2-devel >= 2.31.14
|
||||
BuildRequires: gstreamer-devel >= 0.11.90
|
||||
BuildRequires: glib2-devel >= 2.32
|
||||
BuildRequires: gstreamer-devel >= 0.11.93
|
||||
BuildRequires: gtk-doc
|
||||
BuildRequires: libICE-devel
|
||||
BuildRequires: libSM-devel
|
||||
BuildRequires: libXext-devel
|
||||
BuildRequires: libXv-devel
|
||||
BuildRequires: orc >= 0.4.11
|
||||
BuildRequires: orc >= 0.4.16
|
||||
BuildRequires: python-base
|
||||
BuildRequires: translation-update-upstream
|
||||
BuildRequires: update-desktop-files
|
||||
@ -392,6 +394,7 @@ package.
|
||||
%lang_package
|
||||
%prep
|
||||
%setup -q -n %{_name}-%{version}
|
||||
%patch0 -p1
|
||||
translation-update-upstream po gst-plugins-base-%{gst_branch}
|
||||
|
||||
%build
|
||||
|
Loading…
x
Reference in New Issue
Block a user