~ubuntu-branches/ubuntu/oneiric/pulseaudio/oneiric

« back to all changes in this revision

Viewing changes to debian/patches/0002-Double-esound-maximum-sample-size.patch

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2007-12-04 00:56:08 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071204005608-y1xqvcu45g1yxtlu
Tags: 0.9.8-1ubuntu1
"Hail our new PulseAudio overlords (part two)."

* Merge from Debian unstable.
* Ubuntu-specific changes:
  - debian/control:
    + Don't build-depend on libjack0.100.0-dev or build jack module
      packages,
    + Update pulseaudio's Recommends and Suggests to accomodate
      existing promoted main packages,
    + Explicitly mention pasuspender in pulseaudio-utils's long
      description,
    + Add Vcs-Bzr URI,
    + Adhere to DebianMaintainerField;
  - debian/rules: Use multiuser for update-rc.d;
  - debian/patches/series: Retain the exclusion of
    0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch.
* Dropped Ubuntu-specific change (absorbed into Debian source):
  debian/patches/0002-Double-esound-maximum-sample-size.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From 5def85371aa7f80523c0aa1640772ada6c66831c Mon Sep 17 00:00:00 2001
 
2
From: Oliver Grawert <ogra@ubuntu.com>
 
3
Date: Sun, 18 Nov 2007 20:36:17 +0100
 
4
Subject: [PATCH] Double esound maximum sample size
 
5
 
 
6
To make sure the login and logout gnome sounds can be processed on remote
 
7
connections.
 
8
---
 
9
 src/pulsecore/protocol-esound.c |    2 +-
 
10
 1 files changed, 1 insertions(+), 1 deletions(-)
 
11
 
 
12
diff --git a/src/pulsecore/protocol-esound.c b/src/pulsecore/protocol-esound.c
 
13
index 70be848..e59c7da 100644
 
14
--- a/src/pulsecore/protocol-esound.c
 
15
+++ b/src/pulsecore/protocol-esound.c
 
16
@@ -72,7 +72,7 @@
 
17
 #define RECORD_BUFFER_SECONDS (5)
 
18
 #define RECORD_BUFFER_FRAGMENTS (100)
 
19
 
 
20
-#define MAX_CACHE_SAMPLE_SIZE (1024000)
 
21
+#define MAX_CACHE_SAMPLE_SIZE (2048000)
 
22
 
 
23
 #define SCACHE_PREFIX "esound."
 
24