packages: gstreamer-plugins-bad/gstreamer-plugins-bad.spec, gstreamer-plugi...

evil evil at pld-linux.org
Wed Nov 23 13:00:46 CET 2011


Author: evil                         Date: Wed Nov 23 12:00:46 2011 GMT
Module: packages                      Tag: HEAD
---- Log message:
- added mine patch(but v^ from #gstreamer was happy with it) fixing bug #619035 (stereo modules played as mono)

---- Files affected:
packages/gstreamer-plugins-bad:
   gstreamer-plugins-bad.spec (1.94 -> 1.95) , gstreamer-plugins-bad-modplug_stereofix.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: packages/gstreamer-plugins-bad/gstreamer-plugins-bad.spec
diff -u packages/gstreamer-plugins-bad/gstreamer-plugins-bad.spec:1.94 packages/gstreamer-plugins-bad/gstreamer-plugins-bad.spec:1.95
--- packages/gstreamer-plugins-bad/gstreamer-plugins-bad.spec:1.94	Wed Jul  6 09:18:47 2011
+++ packages/gstreamer-plugins-bad/gstreamer-plugins-bad.spec	Wed Nov 23 13:00:41 2011
@@ -32,7 +32,7 @@
 Summary(pl.UTF-8):	Złe wtyczki do środowiska obróbki strumieni GStreamer
 Name:		gstreamer-plugins-bad
 Version:	0.10.22
-Release:	2
+Release:	3
 License:	LGPL v2+
 Group:		Libraries
 Source0:	http://gstreamer.freedesktop.org/src/gst-plugins-bad/%{gstname}-%{version}.tar.bz2
@@ -42,6 +42,7 @@
 Patch2:		%{name}-divx4linux.patch
 Patch4:		%{name}-timidity.patch
 Patch5:		%{name}-nas.patch
+Patch6:		%{name}-modplug_stereofix.patch
 URL:		http://gstreamer.freedesktop.org/
 BuildRequires:	autoconf >= 2.60
 BuildRequires:	automake >= 1:1.10
@@ -730,6 +731,7 @@
 %patch2 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 
 %build
 %{__libtoolize}
@@ -1132,6 +1134,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.95  2011/11/23 12:00:41  evil
+- added mine patch(but v^ from #gstreamer was happy with it) fixing bug #619035 (stereo modules played as mono)
+
 Revision 1.94  2011/07/06 07:18:47  lisu
 - rel 2
 

================================================================
Index: packages/gstreamer-plugins-bad/gstreamer-plugins-bad-modplug_stereofix.patch
diff -u /dev/null packages/gstreamer-plugins-bad/gstreamer-plugins-bad-modplug_stereofix.patch:1.1
--- /dev/null	Wed Nov 23 13:00:46 2011
+++ packages/gstreamer-plugins-bad/gstreamer-plugins-bad-modplug_stereofix.patch	Wed Nov 23 13:00:41 2011
@@ -0,0 +1,16 @@
+--- gst-plugins-bad-0.10.22/ext/modplug/gstmodplug.cc.orig	2011-01-07 16:30:28.000000000 +0100
++++ gst-plugins-bad-0.10.22/ext/modplug/gstmodplug.cc	2011-11-23 12:21:07.191585028 +0100
+@@ -461,10 +461,10 @@
+   GstStructure *structure;
+ 
+   structure = gst_caps_get_structure (caps, 0);
+-  if (gst_structure_fixate_field_nearest_int (structure, "rate", 44100))
+-    return;
+-  if (gst_structure_fixate_field_nearest_int (structure, "channels", 2))
++  if (!gst_structure_fixate_field_nearest_int (structure, "rate", 44100))
+     return;
++  else
++    gst_structure_fixate_field_nearest_int (structure, "channels", 2);
+ }
+ 
+ static gboolean
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/gstreamer-plugins-bad/gstreamer-plugins-bad.spec?r1=1.94&r2=1.95&f=u



More information about the pld-cvs-commit mailing list