[Pkg-sdl-commits] r188 - in unstable/libsdl1.2/debian: . patches

aurel32 at alioth.debian.org aurel32 at alioth.debian.org
Mon Sep 8 06:35:39 UTC 2008


Author: aurel32
Date: 2008-09-08 06:35:38 +0000 (Mon, 08 Sep 2008)
New Revision: 188

Added:
   unstable/libsdl1.2/debian/patches/219_pulseaudio_crackles.diff
Modified:
   unstable/libsdl1.2/debian/changelog
   unstable/libsdl1.2/debian/patches/series
Log:
  * debian/patches/219_pulseaudio_crackles.diff
    + New patch to fix crackles with pulseaudio (Closes: #487900).



Modified: unstable/libsdl1.2/debian/changelog
===================================================================
--- unstable/libsdl1.2/debian/changelog	2008-09-07 21:03:34 UTC (rev 187)
+++ unstable/libsdl1.2/debian/changelog	2008-09-08 06:35:38 UTC (rev 188)
@@ -1,7 +1,7 @@
 libsdl1.2 (1.2.13-3) unstable; urgency=low
 
   * Remove patch 1.2.13 to 1.2.12 downgrade from the diff.gz (Closes: 
-    #472094).
+    #472094, #467225).
   * debian/patches/211_mprotect.diff
     + Update.
   * debian/patches/230_manpages.Diff
@@ -26,8 +26,10 @@
     + Fixes.
   * debian/shlibs.local:
     + Drop (Closes: #459262).
+  * debian/patches/219_pulseaudio_crackles.diff
+    + New patch to fix crackles with pulseaudio (Closes: #487900).
 
- -- Aurelien Jarno <aurel32 at debian.org>  Sun, 07 Sep 2008 11:55:16 +0200
+ -- Aurelien Jarno <aurel32 at debian.org>  Mon, 08 Sep 2008 08:35:19 +0200
 
 libsdl1.2 (1.2.13-2) unstable; urgency=low
 

Added: unstable/libsdl1.2/debian/patches/219_pulseaudio_crackles.diff
===================================================================
--- unstable/libsdl1.2/debian/patches/219_pulseaudio_crackles.diff	                        (rev 0)
+++ unstable/libsdl1.2/debian/patches/219_pulseaudio_crackles.diff	2008-09-08 06:35:38 UTC (rev 188)
@@ -0,0 +1,21 @@
+---
+ src/audio/pulse/SDL_pulseaudio.c |    7 +++----
+ 1 file changed, 3 insertions(+), 4 deletions(-)
+
+--- a/src/audio/pulse/SDL_pulseaudio.c
++++ b/src/audio/pulse/SDL_pulseaudio.c
+@@ -340,11 +340,10 @@
+ 	SDL_memset(mixbuf, spec->silence, spec->size);
+ 	
+ 	/* Reduced prebuffering compared to the defaults. */
+-	paattr.tlength = mixlen;
++	paattr.tlength = mixlen*2;
+ 	paattr.minreq = mixlen;
+-	paattr.fragsize = mixlen;
+-	paattr.prebuf = mixlen;
+-	paattr.maxlength = mixlen * 4;
++	paattr.prebuf = mixlen * 2;
++	paattr.maxlength = mixlen * 2;
+ 	
+ 	/* The SDL ALSA output hints us that we use Windows' channel mapping */
+ 	/* http://bugzilla.libsdl.org/show_bug.cgi?id=110 */

Modified: unstable/libsdl1.2/debian/patches/series
===================================================================
--- unstable/libsdl1.2/debian/patches/series	2008-09-07 21:03:34 UTC (rev 187)
+++ unstable/libsdl1.2/debian/patches/series	2008-09-08 06:35:38 UTC (rev 188)
@@ -16,6 +16,7 @@
 216_page_size.diff
 217_x11_keytounicode.diff
 218_joystick_memmove.diff
+219_pulseaudio_crackles.diff
 220_std_cld.diff
 230_manpages.diff
 300_dont_propagate_lpthread.diff




More information about the pkg-sdl-commits mailing list