--- pulseaudio-0.99.1.orig/debian/pulseaudio.dirs +++ pulseaudio-0.99.1/debian/pulseaudio.dirs @@ -0,0 +1 @@ +var/lib/pulseaudio --- pulseaudio-0.99.1.orig/debian/pulseaudio-module-lirc.install +++ pulseaudio-0.99.1/debian/pulseaudio-module-lirc.install @@ -0,0 +1 @@ +usr/lib/pulse-*/modules/module-lirc.so --- pulseaudio-0.99.1.orig/debian/pulseaudio-utils.links +++ pulseaudio-0.99.1/debian/pulseaudio-utils.links @@ -0,0 +1,3 @@ +usr/share/man/man1/pacat.1.gz usr/share/man/man1/pamon.1.gz +usr/share/man/man1/pacat.1.gz usr/share/man/man1/parec.1.gz +usr/share/man/man1/pacat.1.gz usr/share/man/man1/parecord.1.gz --- pulseaudio-0.99.1.orig/debian/pulseaudio.postrm +++ pulseaudio-0.99.1/debian/pulseaudio.postrm @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +#DEBHELPER# + +if [ "$1" = "purge" ] ; then + deluser --quiet --system pulse > /dev/null || true + delgroup --quiet --system pulse-access > /dev/null || true +fi + +exit 0 --- pulseaudio-0.99.1.orig/debian/rules +++ pulseaudio-0.99.1/debian/rules @@ -0,0 +1,85 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/utils.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/cdbs/1/rules/autoreconf.mk + +common-build-arch:: + grep -v -e alsa -e evdev -e udev debian/pulseaudio.install > \ + debian/pulseaudio.install.kfreebsd-i386 + grep -v -e alsa -e evdev -e udev debian/pulseaudio.install > \ + debian/pulseaudio.install.kfreebsd-amd64 + grep -v -e alsa -e evdev -e udev debian/pulseaudio.install > \ + debian/pulseaudio.install.hurd-i386 + +common-install-arch:: + find $(DEB_DESTDIR) -name "*.la" -delete + mkdir -p $(CURDIR)/debian/tmp/usr/share/lintian + cp -a $(CURDIR)/debian/overrides $(CURDIR)/debian/tmp/usr/share/lintian + mkdir -p $(CURDIR)/debian/tmp/usr/share/alsa + cp -a $(CURDIR)/debian/*.conf $(CURDIR)/debian/tmp/usr/share/alsa + install -D -m755 $(CURDIR)/debian/01PulseAudio $(CURDIR)/debian/tmp/usr/lib/pm-utils/sleep.d/01PulseAudio + install -d $(CURDIR)/debian/tmp/usr/share/apport/package-hooks + cp $(CURDIR)/debian/apport-hook.py $(CURDIR)/debian/tmp/usr/share/apport/package-hooks/source_pulseaudio.py + +pulseaudio-install-arch:: + dh_installman --language=C debian/tmp/usr/share/man/man5/default.pa.5 + +common-binary-post-install-arch:: list-missing + +clean:: + rm -f debian/pulseaudio.install.kfreebsd-i386 + rm -f debian/pulseaudio.install.kfreebsd-amd64 + rm -f debian/pulseaudio.install.hurd-i386 + rm -f debian/stamp-post-patches +# rm -f .version + if test -f $(CURDIR)/debian/daemon.conf.in; then \ + mv $(CURDIR)/debian/daemon.conf.in $(CURDIR)/src/daemon/daemon.conf.in; \ + fi + -rm -f $(CURDIR)/debian/*.log +# -find $(CURDIR)/ -name "*-symdef.h" | xargs rm + +update-patch-series: + mkdir -p $(CURDIR)/debian/patches + rm -f $(CURDIR)/debian/patches/*.patch + git format-patch -o $(CURDIR)/debian/patches patches ^upstream | \ + xargs -n 1 basename > $(CURDIR)/debian/patches/series + for patch in $$(ls $(CURDIR)/debian/patches/*.patch) ; \ + do \ + lines=$$(cat $$patch | wc -l) ; \ + head -n $$(($$lines - 3)) $$patch > $${patch}.chomped ; \ + mv $${patch}.chomped $$patch ; \ + done + +DEB_OPT_FLAG = -O3 +LDFLAGS += -Wl,--no-as-needed +DEB_CONFIGURE_EXTRA_FLAGS = --enable-x11 --disable-hal \ + --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \ + --with-module-dir=\$${prefix}/lib/pulse-0.99/modules +DEB_DH_MAKESHLIBS_ARGS_ALL = --exclude=usr/lib/pulse-0.99/modules +DEB_DH_INSTALL_ARGS = --sourcedir=$(CURDIR)/debian/tmp +DEB_UPDATE_RCD_PARAMS = start 50 2 3 4 5 . stop 15 1 . + +# Dynamically patch default configuration file +ifeq ($(DEB_HOST_ARCH),armel) +RESAMPLE_METHOD := speex-fixed-1 +DEFAULT_FRAGMENTS := 2 +DEFAULT_FRAGMENT_SIZE_MSEC := 10 +else +RESAMPLE_METHOD := speex-float-1 +DEFAULT_FRAGMENTS := 8 +DEFAULT_FRAGMENT_SIZE_MSEC := 10 +endif + +post-patches:: debian/stamp-post-patches + +debian/stamp-post-patches: + cp $(CURDIR)/src/daemon/daemon.conf.in $(CURDIR)/debian/daemon.conf.in + sed -i -e 's/; \(resample-method =\).*/\1 $(RESAMPLE_METHOD)/' \ + -e 's/; \(default-fragments =\).*/\1 $(DEFAULT_FRAGMENTS)/' \ + -e 's/; \(default-fragment-size-msec =\).*/\1 $(DEFAULT_FRAGMENT_SIZE_MSEC)/' \ + -e 's/; flat-volumes = yes/flat-volumes = no/' \ + $(CURDIR)/src/daemon/daemon.conf.in + touch debian/stamp-post-patches --- pulseaudio-0.99.1.orig/debian/changelog +++ pulseaudio-0.99.1/debian/changelog @@ -0,0 +1,3082 @@ +pulseaudio (1:0.99.1-0ubuntu2) oneiric; urgency=low + + * Build for multiarch: + - libpulse{,-mainloop-glib}0{,-dbg} and libpulse-dev are Multi-Arch: same. + - pulseaudio itself should be Multi-Arch: foreign, since it's a daemon. + - drop dh-buildinfo build-dependency, incompatible with multiarch and not + relevant in Ubuntu where we have build logs for all builds. + - LP: #825342. + + -- Steve Langasek Sat, 13 Aug 2011 02:22:42 +0000 + +pulseaudio (1:0.99.1-0ubuntu1) oneiric; urgency=low + + [ Daniel T Chen ] + * 0017-Make-dbus-error-more-polite.patch: Remove language that doesn't + add anything to the error message (LP: #444400). + + [ David Henningsson ] + * New upstream release, remaining patches: + * Add build dependency on libjson0-dev + * Dropped patches (implemented upstream): + 0001-Work-around-some-platforms-not-having-O_CLOEXEC.patch + 0009-lp533877-handle-digmic.patch + 0015-alsa-mixer-Add-workaround-for-some-USB-headsets.patch + 0200-gold.patch + 0201-alsa-mixer-Add-a-few-well-known-descriptions.patch + 0202-alsa-mixer-add-required-any-and-required-for-enum-op.patch + 0203-alsa-mixer-always-round-towards-0-dB.patch + 0204-alsa-mixer-Add-new-paths-for-Internal-Mic-Front-Mic-.patch + 0205-alsa-mixer-Fixup-Mic-Line-analog-input-paths-to-work.patch + 0206-alsa-mixer-Make-sure-capture-source-and-input-source.patch + 0207-PulseAudio-added-IT-block-to-fix-thumb-conditional-i.patch + 0208-alsa-sink-Fix-incorrect-work_done-value-to-prevent-expensive-update... + _smoother-calls.patch + 0209-sndfile-pacat-Use-file-extension-and-fix-format-from-string.patch + * Refreshed patches: + 0005-dont-load-cork-music-on-phone.patch + 0012-JACK-Load-module-jackdbus-detect-in-default.pa.patch + 0013-Load-RAOP-Zeroconf-by-default.patch + 0014-alsa-mixer-Add-separate-profile-for-Nvidia.patch + 0017-Make-dbus-error-more-polite.patch + * Upstream has removed libpulsebrowse, replace with dummy packages for the + time being. + * Updated shlibs files and debian/rules with new version number + * Add new modules to the pulseaudio package + * Initial pulseaudio support for jack detection + + [ Luke Yelavich ] + * debian/control: Remove the libpulse-browse0 package, and add set + pulseaudio to replace that package until after the next LTS + * Add symbols files for libpulse0 and libpulse-mainloop-glib0 and adjust + other shlibs files as necessary + + -- Luke Yelavich Thu, 11 Aug 2011 14:30:44 +1000 + +pulseaudio (1:0.9.23-0ubuntu2) oneiric; urgency=low + + [ Daniel T Chen ] + * Add the following patches backported from upstream git: + - aa7bc32 (parecord: Automatically detect file format from extension) + [series patch 0208] + - 226ddb1 (alsa-sink: fix mmap_write() work_done) [series patch 0209] + * Update debian/copyright to cover echo-cancel files. + + [ Michael Terry ] + * 0016-nodisplay-autostart.patch: + - Don't show in "Startup Applications" (LP: #803917) + + -- Michael Terry Fri, 01 Jul 2011 12:56:15 +0100 + +pulseaudio (1:0.9.23-0ubuntu1) oneiric; urgency=low + + * New upstream release, the following commits from the stable-queue branch + are included in this release: + - d4c9ad1 (streams: Fix the actual resampler method shown in debug + messages.) + - cc91a8f (module-combine-sink: Initialize smoother with offset + pa_rtclock_now()) + - 8a437ee (module-combine-sink: Initialize smoother in paused state) + - b54a43a (module-combine-sink: Check running flag before rendering in null + mode + - b3e4152 (pulsecore: Add a couple pa_asserts() on pa_tagstruct* calls.) + - 22c0dcb (device-manager: Free a hook slot to prevent segv on unload) + - c3bfcc9 (SSE/MMX: Fix problem with highpitched noise on i386) + - 9ee4229 (build-sys: Add echo-cancel dummy Makefile) + - f558189 (build-sys: bump soname) + * Bumped shlibs + * debian/rules: Exclude 0.9.23 modules from shlibs + + -- Luke Yelavich Fri, 24 Jun 2011 10:18:17 +1000 + +pulseaudio (1:0.9.22+stable-queue-69-gf8e8-0ubuntu1) oneiric; urgency=low + + * Merge from unreleased Debian git, remaining changes: + - epoch (my stupid fault :S) + - use speex-float-1 and change buffer and fragment size, depending on + architecture + - Add alsa configuration files to route alsa applications via pulseaudio + - Move libasound2-plugins from Recommends to Depends + - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio + daemons + - Make initscript more informative in the default case of per-user + sessions + - add status check for system wide pulseaudio instance + - create /var/run/pulse, and make restart more robust + - indicate that the system pulseaudio instance is being started from the + init script + - check whether pulseaudio is running before preloading the padsp library + - Add DEB_OPT_FLAG = -O3 as per recommendation from + pulseaudio-discuss/2007-December/001017.html + - Generate a PO template on build + - the esd wrapper script should not load pulseaudio if pulseaudio is being + used as a system service + - add a pulseaudio apport hook + - drop padevchooser(Recommends) and pavucontrol (Suggests) + - add libudev-dev as a build-dependency + - Fix initialization of devices with modem subdevices + - Disable cork-music-on-phone + - disable flat volume + - Mute IEC958 Optical Raw by default + - use tdd instead of gdbm + - Add conflicts/replaces for pulseaudio-module-udev and + pulseaudio-module-rygel-media-server + - Add replaces for pulseaudio-module-hal to the pulseaudio package to handle + upgrades from hardy + - Load module-x11-bell in the start-pulseaudio-x11 script + - added IT block to fix thumb conditional instruction build error messages + - recommend instead of suggest rtkit + - Ship the jackdbus-detect module + - Ship extra quirks to mixer profiles for various x86 and ARM hardware, as + well as USB hardware + * New snapshot based on upstream git branch stable-queue: + - 4f67775 (http: support HTTP HEAD) + - 3bb6546 (vala: More vala fixes) + - 7fd0771 (x11: Fix build errors with newest xcb-util.) + - b72fc9b (x11: More XCB fixes.) + - f8e8a03 (rtkit: use private bus connection in order to avoid threading + issues when invoking pa_make_realtime()) + - c524b4c (memblockq: implement new call pa_memblockq_peek_fixed_size()) + - 1a8cf00 (make echo-cancel module that exposes a new sink and source) + - 9fa71e7 (echo-cancel: take into account snapshot delay) + - 7b972f5 (echo-cancel: use the phone media role) + - de6cdf9 (echo-cancel: tweak the resync code a little) + - 1c26694 (echo-cancel: improve debug) + - b30bf12 (echo-cancel: keep frame_size a power of 2) + - 6d8a907 (echo-cancel: Move the module into it's own directory) + - 57c5983 (echo-cancel: Split out speex code from the core module) + - 668f4e4 (echo-cancel: Pass arguments to the specific canceller module) + - c975dfa (echo-cancel: Let AEC module determine source/sink spec) + - 47e4dd1 (echo-cancel: Add alternative echo-cancellation implementation) + - 4a9fa8c (echo-cancel: Allow selection of AEC method using modargs) + - b6b8a7b (echo-cancel: Make blocksize a module-wide parameter) + - 2923c5e (echo-cancel: Mark immutable parameters as const in vfunc) + - 9f79c0e (echo-cancel: rework alignment code) + - 56a4684 (echo-cancel: improve accuracy) + - e936447 (echo-cancel: pause timer when echo canceling is off) + - d39043c (echo-cancel: Fix make distcheck) + - d8fab84 (echo-cancel: Fix out-of-tree build) + - 1212a6f (echo-cancel: Ensure correct handling of endianness) + - d866ade (echo-cancel: Use S16NE for adrian module) + - f93b5e1 (echo-cancel: Fix source may_move_to function) + - 6664650 (i18n: Update POTFILES.*) + * debian/libpulse-dev.install: Ship vala bindings + * Dropped patches, either they were previously backported, or are now + upstream: + - 0005-load-sample-dir-lazy.patch + - 0090-disable-flat-volumes.patch + - 0211-module-loopback-Add-adjust_time-to-valid-args.patch + - 0212-Limit-rate-adjustments-to-small-inaudible-jumps.patch + - 0213-module-rtp-recv-Use-new-algorithm-for-adjusting-samp.patch + - 0214-module-rtp-recv-Average-the-estimated-real-sample-ra.patch + - 0215-module-rtp-recv-Remove-smoother-from-write-index.patch + - 0216-conf-Make-system.pa-use-udev-detect-and-not-hal-dete.patch + - 0217-volume-Add-a-PA_VOLUME_UI_MAX-define-for-the-recomme.patch + - 0218-vala-Some-bugfixes-for-the-vala-bindings.patch + - 0219-vala-delegate-FreeCb-does-not-have-a-target.patch + - 0220-vala-move-GLibMainLoop-class-into-separate-file-to-f.patch + - 0221-vala-Fix-path-error-in-the-last-commit.patch + - 0222-build-sys-Link-binaries-linking-libpulse-to-libpulse.patch + - 0223-build-sys-Link-binaries-linking-libpulsecommon-to-li.patch + - 0224-build-sys-Link-lirc-libraries-in-right-order.patch + - 0225-module-jack-sink-source-protect-against-null-return-.patch + - 0226-vala-ChannelMap-has-no-destroy-function.patch + * debian/patches/series: Renamed and re-ordered some patches, and clearly + identified distro specific patches and upstream/upstreamable patches + * 0209-alsa-mixer-Fix-makefile-in.patch: Drop, as we use dh-autoreconf, + which takes care of this for us + * debian/pulseaudio.install: Add the echo-cancel module + * 0003-Mention-speex-and-libsamplerate-in-pulse-daemon.conf.patch: Drop, + upstream + + -- Luke Yelavich Fri, 27 May 2011 14:05:01 +1000 + +pulseaudio (1:0.9.22+stable-queue-24-g67d18-0ubuntu4) oneiric; urgency=low + + [ David Henningsson ] + * Fix missing Internal/Front/Rear mics on Nvidia chipsets (LP: #771739) + + [ Luke Yelavich ] + * debian/control: Update Vcs-Bzr field + + -- David Henningsson Thu, 28 Apr 2011 10:31:42 +0200 + +pulseaudio (1:0.9.22+stable-queue-24-g67d18-0ubuntu3) natty; urgency=low + + [ David Henningsson ] + * Add separate profile for Nvidia to make it easier to select the right + codec out of four (LP: #716371) + * Add workaround to make it possible to control the volume of some + USB headsets (LP: #749856, LP: #671560) + + [ Luke Yelavich ] + * debian/control: Demote pulseaudio-module-raop to suggests, as it is + causing various issues, including crashers, (LP: #742281, #743073) + and re-opens (LP #688272) + * Pull some bugfixes from the stable-queue branch: + - 4fa7495 (vala: Some bugfixes for the vala bindings) + - ea0a2a6 (vala: delegate FreeCb does not have a target.) + - 64985aa (vala: move GLibMainLoop class into separate file to fix linker + errors) + - 9f52c10 (vala: Fix path error in the last commit.) + - 1ade8df (build-sys: Link binaries linking libpulse to libpulsecommon too) + - c25207f (build-sys: Link binaries linking libpulsecommon to libpulse too) + - 4be49ae (build-sys: Link lirc libraries in right order) + - fd5b282 (module-jack-sink/source: protect against null return in + jack_get_ports) (LP: #733424) + - 93e7a19 (vala: ChannelMap has no destroy function.) + * debian/patches/0097-explicitly-link-libraries.patch: Dropped, applied + upstream + * debian/control, debian/rules: Add dh-autoreconf + + -- Luke Yelavich Mon, 11 Apr 2011 16:58:14 +1000 + +pulseaudio (1:0.9.22+stable-queue-24-g67d18-0ubuntu2) natty; urgency=low + + * Update to latest stable queue patches: + - 09770e5 (module-loopback: Add adjust_time to valid args + - 90c5520 (Limit rate adjustments to small, inaudible jumps + - 4620039 (module-rtp-recv: Use new algorithm for adjusting sample rate + - 2bfc032 (module-rtp-recv: Average the estimated real sample rate + - 2ee4ec5 (module-rtp-recv: Remove smoother from write index (LP: #569378) + - a8cd9d2 (conf: Make system.pa use udev-detect and not hal-detect. + - b872254 (volume: Add a PA_VOLUME_UI_MAX define for the recommended max + volume to show in UIs) + * 0210-PulseAudio-added-IT-block-to-fix-thumb-conditional-i.patch: + - added IT block to fix thumb conditional instruction build error messages + * debian/rules: Remove CFLAGS that are specific to arm, the above patch + makes those redundant (LP: #721498) + * debian/control: Add a dependency on pulseaudio-module-raop + + -- Luke Yelavich Thu, 10 Mar 2011 07:15:02 +1100 + +pulseaudio (1:0.9.22+stable-queue-24-g67d18-0ubuntu1) natty; urgency=low + + [ David Henningsson ] + * debian/patches/020x patches - add PulseAudio input mixer rewrite. + This will cause several HDA chips to have better named and controlled + sliders on the input side. + + [ Luke Yelavich ] + * New upstream snapshot based on stable queue: + - 67d1888 (client: Don't update smoother while corked) + - 6b280e9 (Fighting rewinds: Reduce calls to handle_seek) + - 3aeb047 (Fighting rewinds: Seek and write data in the same message) + - 1e1b299 (Core: Fix incorrect check of return value) + - 4080725 (tunnel: Fix automatic names when source/sink_name argument is + missing.) + - ec5a785 (ratelimit: fix log levels of log suppression messages) + + -- Luke Yelavich Fri, 18 Feb 2011 13:50:30 +1100 + +pulseaudio (1:0.9.22+stable-queue-18-geb966-0ubuntu2) natty; urgency=low + + * Fix FTBFS with ld.gold. + + -- Matthias Klose Wed, 19 Jan 2011 06:57:29 +0100 + +pulseaudio (1:0.9.22+stable-queue-18-geb966-0ubuntu1) natty; urgency=low + + [ Daniel T Chen ] + * debian/control: pulseaudio-module-zeroconf Depends on avahi-daemon + (LP: #689093) + * debian/patches/0101-update-stable-queue.patch: Apply 84c8b23c to + resolve incorrect header being used for libsndfile seen with pacat + --file-format (LP: #660504) + * debian/patches/0104-Load-RAOP-Zeroconf-by-default.patch: Follow + recommendation by Martin-Éric Racine to conditionally load support + by default for streaming to an Apple Airport Express (LP: #688272) + * debian/pulseaudio-utils.links: Also add pamon(1) and parecord(1) + (Closes: #599696) + + [ David Henningsson ] + * debian/pulse-alsa.conf: Add name hint for default pcm device, + indicating that PulseAudio is active. + + [ Luke Yelavich ] + * New upstream snapshot based on the stable queue branch: + - eb966f7 (build-sys: Make --disable-dbus actually work.) + - 8f8d247 (build-sys: Mention dbus support in the summary) + - b3ff4f4 (build-sys: Put in specific warnings when there is no udev or + DBUS support) + - 862bbee (console-kit: Console Kit support is dependent on DBUS and is + thus optional.) + - 7cb1401 (padsp: wrap __open_2 and __open64_2) + - 6f870f5 (fix bug about get source-output status) + - 4269b05 (Fix typos) + - 1c83b03 (Further clarify src- and speex- references in pulse-daemon.conf) + - 84c8b23 (Fix return value of pa_sndfile_format_from_string) + - d963b86 (core: Fix variable "has_whined" value bug) + - 52e3268 (trivial: Mention speex as a resampler reference in + pulse-daemon.conf) + - 3e6af07 (module-loopback: Prevent an infinite loop when rate adjusting + is disabled + * 0101-update-stable-queue.patch and + #0102-autoreconf.patch: + - Disable for now, since latest stable queue are roled into the snapshot + tarball + + -- Luke Yelavich Fri, 14 Jan 2011 10:03:49 -0600 + +pulseaudio (0.9.22-2) UNRELEASED; urgency=low + + * debian/control: + + Fix typo in long description of pulseaudio-module-x11, thanks to + Sam Morris (Closes: #500038) + + Clarify long description of pulseaudio-esound-compat. Many apps + still in use require functionality from this package + (Closes: #601725) + * debian/libpulse-dev.examples: Apply patch from Mario Lang to include + simple examples in the dev package. Thanks! (Closes: #561258) + * debian/patches/ + 0003-Mention-speex-and-libsamplerate-in-pulse-daemon.conf.patch: + + Mention speex in the resampling section. Currently the Resampler + section of "Programming with Speex (the libspeex API)" contains + the relevant information (Closes: #541206) + * debian/pulseaudio-utils.links: Also add pamon(1), parec(1), and + parecord(1) (Closes: #599696) + * debian/README.Debian: Clarify historical pulse-rt use and document + current recommendation of RealtimeKit (Closes: #548363) + + -- Daniel T Chen Sat, 18 Dec 2010 20:26:47 -0500 + +pulseaudio (0.9.22-1) experimental; urgency=low + + * New upstream release + * debian/patches/0002-CVE-2009-1299.patch: + + Dropped, fixed upstream + * debian/patches/0003-Re-bootstrap.patch + + Dropped, not needed anymore + * debian/rules: Stop using -g0 on mips{,el} the toolchain has been fixed + * debian/rules, debian/control: Update build-depends and force building + with X11 + * debian/control: Suggest rtkit + * debian/control: Prune unneeded depends of libpulse-dev + + -- Sjoerd Simons Sun, 05 Dec 2010 12:01:37 +0000 + +pulseaudio (1:0.9.22-0ubuntu3) natty; urgency=low + + * debian/pulseaudio-module-jack.install: Ship the jackdbus-detect module + + -- Luke Yelavich Wed, 08 Dec 2010 17:57:18 +1100 + +pulseaudio (1:0.9.22-0ubuntu2) natty; urgency=low + + * 0101-update-stable-queue.patch, update to latest stable queue: + - 205cad6 (jack: Add module-jackdbus-detect + - e9deb97 (build-sys: Include the .version file in the distribution + tarball) + - a1f1255 (build-sys: Fix make distcheck failure due to udev rules + fixed install path) + - 675cc0a (build-sys: Replace dummy Makefiles with proper Makefile.am's) + - bd769fa (rescue-streams: Fix segfault in some conditions) + - f6574c8 (volume: Add explicit checks for ARMv6 instructions) + * 0102-autoreconf.patch: Re-generate autotools pieces for the above update + * 0103-JACK-Load-module-jackdbus-detect-in-default.pa.patch: Enable jackdbus + module by default for now, hopefully longer term there will be a better + way to turn this module on/off + + -- Luke Yelavich Wed, 08 Dec 2010 16:58:27 +1100 + +pulseaudio (1:0.9.22-0ubuntu1) natty; urgency=low + + * New upstream release, based on the stable-queue branch + * Drop following patches, as applied upstream: + - 0101-alsa-mixer-add-profile-for-Native-Instruments-Koreco.patch + - 0102-intended-roles-Mark-devices-with-a-form-factor-of-he.patch + * debian/rules: + - Disable --as-needed due to a circular dependency for libpulsecommon + - Adjust filenames/paths for 0.9.22 + + -- Luke Yelavich Fri, 26 Nov 2010 13:44:10 +1100 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-98-ga8d7-0ubuntu3) natty; urgency=low + + * 0101-alsa-mixer-add-profile-for-Native-Instruments-Koreco.patch: Also + adjust src/Makefile.in, so that the new profile actually gets shipped + + -- Luke Yelavich Fri, 05 Nov 2010 14:27:34 -0400 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-98-ga8d7-0ubuntu2) natty; urgency=low + + * debian/control: Update Vcs-Bzr field + * Pull latest fixes from stable queue: + - 8a30d4c (alsa-mixer: add profile for Native Instruments Korecontroller) + - 848dd37 (intended-roles: Mark devices with a form factor of 'headset' as + being appropriate for 'phone' streams) + + -- Luke Yelavich Fri, 05 Nov 2010 10:40:47 -0400 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-98-ga8d7-0ubuntu1) natty; urgency=low + + * New upstream snapshot, based on the stable-queue branch + * debian/patches: Drop the following patches as they are applied upstream, + or were created to regenerate autotools files/package version + - 0090-use-volume-ignore-for-analog-output.patch + - 0093-backport-fixes-stable-queue-head.patch + - 0094-add-missing-mixer-paths-and-rerun-automake.patch + - 0095-cve-2009-1299.patch + - 0097-regenerate-configure.patch + - 0098-tarball-version.patch + - 0192-stream-restore-Clear-the-save_sink-save_source-flags.patch + - 0193-augment-properties-Search-for-.desktop-files-in-subf.patch + - 0194-device-manager-Ensure-that-sinks-sources-populate-th.patch + - 0195-SSE-MMX-ARM-Fix-high-frequency-noise-with-unusual-nu.patch + * debian/control: Update Vcs-Bzr link + * 0097-explicitly-link-libraries.patch: Patch to explicitly link pulseaudio + tests binaries against pulseaudio libraries, due to gcc 4.5 and new + binutils in natty enforcing explicit linking + + -- Luke Yelavich Fri, 29 Oct 2010 12:39:27 -0400 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu21.1) maverick-proposed; urgency=low + + * 0195-SSE-MMX-ARM-Fix-high-frequency-noise-with-unusual-nu.patch: + - Pull fix from the upstream stable-queue branch a8d76e9 to Fix a high + frequency noise with an nunusual number of channels, when either SSE, + MMX, or ARM optimized volume scaling code is used. (LP: #445849) + + -- Luke Yelavich Thu, 14 Oct 2010 16:38:46 +1100 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu21) maverick; urgency=low + + * Add 0192-stream-restore-Clear-the-save_sink-save_source-flags.patch + Clear the save_sink/save_source flags on apply_entry. + * Add 0193-augment-properties-Search-for-.desktop-files-in-subf.patch + Search for .desktop files in subfolders too. + * Add 0194-device-manager-Ensure-that-sinks-sources-populate-th.patch + Ensure that sinks/sources populate the device manager lists in order + of their priority. + + -- Jonathan Riddell Sun, 03 Oct 2010 20:38:24 +0100 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu20) maverick; urgency=low + + * 0093-backport-fixes-stable-queue-head.patch: Backport the following + changesets from the stable-queue branch: + + 2c564f2 (xcb: Ensure the XCB connection is valid before using it.) + + 5c0bc09 (xcb: xcb_get_setup() can return 0, so make sure we check it before using) + + 165cb87 (x11: Use the default screen for X11 properties.) + (LP: #640127) + + -- Daniel T Chen Sat, 18 Sep 2010 08:46:31 -0400 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu19) maverick; urgency=low + + * Removed packaging for a patch that was being tested locally, as the + patch is not going into maverick. Fixes FTBFS + + -- Luke Yelavich Wed, 15 Sep 2010 14:38:38 +1000 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu18) maverick; urgency=low + + [ Emmet Hikory ] + * Drop 0001-change-resample-and-buffering.patch + * debian/rules: Add arch-specific build-time configuration patching system + - set resample-method to speex-fixed-1 and fragments to 2 for armel + - set resample-method to speex-float-1 and fragments to 8 for other arches + - Closes LP: #623242 + + [ Luke Yelavich ] + * debian/rules: + - Back up src/daemon/daemon.conf.in, restoring on package clean, allowing + the package to be built more than once, and keeping the diff sane + - Disable flat volumes via regular expression instead of a patch, to + prevent the mess that goes with touching a file multiple times, and + with multiple methods + * 0093-backport-fixes-stable-queue-head.patch: Backport the following + changesets from the stable-queue branch: + + 6c8660a (alsa: Fix assertion on mmap_write (triggered via a52 plugin)) + + aaae99d (alsa: disable rewinds when using ALSA plugins) + + 4a1072e (udev: fix hex decoding) + + 2b88634 (x11: Partially convert to XCB.) + + 9375019 (alsa: resume smoother after unsuspend) + + 4fb02d8 (alsa: increase the smoother window) + + e2ef3a1 (alsa: don't make use of tsched related variables when tsched is + disabled) + + 514fd1e (add rewind-safeguard parameter) + + 8748ebd (alsa-sink: Get rid of a compiler warning regarding + rewind_safeguard type.) + + a65825f (alsa: Set the rewind safeguard proportionally to sample spec) + + 3d9b710 (smoother: avoid losing precision) + + 1503b8c (alsa-source: refactor smoother and device start) + + 74c117f (alsa-time-test: make test usable for capture too) + + 1c29f55 (alsa: work around slightly broken _delay implementations) + + 1ff360c (alsa: make defines for smoother configuration) + + 28f4aeb (alsa-mixer: add profile for Traktor Kontrol S4) + + eef247b (alsa: Only set the 'first' flag to false when we actually call + snd_pcm_start()) + * debian/control: Add libxcb-atom1-dev and libx11-xcb-dev to build depends + * debian/patches/0090-disable-flat-volumes.patch: Drop, as per above + * debian/patches/0097-regenerate-configure.patch: Refreshed + * debian/patches/0098-tarball-version.patch: Ensure the version string for + pulseaudio internally stays the same, in case the build process wants + to regenerate autotools files + * debian/patches/0094-add-missing-mixer-paths-and-rerun-automake.patch: + - Remove the patch to Makefile.in, easier to do it all at once in a + single patch later in the series + + -- Luke Yelavich Wed, 15 Sep 2010 13:57:55 +1000 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu17) maverick; urgency=low + + * No-change rebuild to pick up new j-a-c-k shlibs + + -- Luke Yelavich Wed, 21 Jul 2010 11:29:18 +0200 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu16) maverick; urgency=low + + * Include /usr/bin/start-pulseaudio-kde and its autostart file now that KDE + will be using PulseAudio by default in Maverick (LP: #563250) + * Also update 0057-load-module-x11-bell.patch to give its improvements to + /usr/bin/start-pulseaudio-kde as well + + -- Jonathan Thomas Mon, 07 Jun 2010 18:32:53 -0400 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu15) maverick; urgency=low + + * 0093-backport-fixes-stable-queue-head.patch: Backport the following + changesets from the stable-queue branch: + + bc7314f (name all threads for /proc/$PID/task/$TID/comm) + + d519ca4 (prevent crash on jack server shutdown) (LP: #538815) + + 65f89dc (fix bracketing in pa_rtp_recv()) + * debian/01PulseAudio: modify the ConsoleKit active seat checks in the + pm-utils hook so that: + - pre-suspend: all users' sink & source states are stored, then only + the active seat's sinks and sources are muted + - post-resume: all users' sink & source pre-suspend states are + restored + This resolves the issue where users' post-resume sink & source + states don't correspond with their pre-suspend ones. + (LP: #569395) + * debian/01PulseAudio: fix broken quoting and misuse of su -l. Merged + from lp:~hyperair/pulseaudio/fix-01Pulseaudio-quoting. Thanks, + Chow Loong Jin! (LP: #572391) + * debian/control: Update bzr branch for maverick. + + -- Daniel T Chen Sat, 08 May 2010 11:08:56 -0400 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14) lucid; urgency=low + + * 0096-lp451635-handle-dove-x0-line-hp-swap.patch: Make the connector + work as intended: if 'Analog Output' is selected in the dropdown, + then 'Line HP Swap' is muted; if 'Analog Headphones' is selected, + then 'Line HP Swap' is unmuted. This better fits existing speaker + semantics and actually works. Many thanks to Tobin Davis for + helping chase this one. Really closes (LP: #451635) + + -- Daniel T Chen Fri, 26 Mar 2010 15:18:35 -0700 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu13) lucid; urgency=low + + [ Daniel T Chen ] + * 0093-backport-fixes-stable-queue-head.patch: Backport the following + changesets from the stable-queue branch: + + a7c1778 (don't pick monitor sources automatically for role-based + device selection). + + e8b83fa (handle asyncns failure when IPv6 is not supported in the + kernel). + * 0096-lp453966-handle-digmic-pt2.patch: Raise the priority of the + 'Digital Mic 1' digital input source for newer Dell laptops. + (LP: #453966) + * 0096-lp451635-handle-dove-x0-line-hp-swap.patch: Add 'Line HP Swap' + to the Headphone profile. (LP: #451635) + * debian/control: Update Vcs-Bzr to point to new branch that uses pack + repo format 2a. + + -- Daniel T Chen Thu, 25 Mar 2010 21:58:46 -0700 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu12) lucid; urgency=low + + * debian/pulseaudio.init: Remove udev from Required-* LSB headers + (LP: #432301) + * debian/patches/: + + 0095-cve-2009-1299.patch: Fix insecure temporary file creation; + pulled from upstream stable-queue d3efa43; CVE-2009-1299. + (LP: #509008) + + 0096-lp533877-handle-digmic.patch: Prefer the built-in digital + mic on newer Dells, e.g., XPS 1330. (stable-queue 29845be) + (LP: #533877) + + 0097-regenerate-configure.patch: Apply changes from stable-queue + f9b31fe (gobject linking) and d3efa43 above. + + -- Daniel T Chen Wed, 10 Mar 2010 18:53:51 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu11) lucid; urgency=low + + * 0093-backport-fixes-stable-queue-head.patch: Backport the following + changesets from the stable-queue branch: + + 522c44 (strip spaces from ALSA card/pcm names) + + 195069 (use pa_strip()) + + dd682d (reset max_rewind/max_request in sink while suspending) + + 30f28e (fix wrong counters by using pa_memblockq_pop_missing() for + all request handling) + + 0d1154 (rework how stream volumes affect sink volumes) + + -- Daniel T Chen Mon, 22 Feb 2010 00:22:50 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu10) lucid; urgency=low + + * 0093-backport-fixes-stable-queue-head.patch: Backport the following + changesets from the stable-queue branch: + + dfe27f (don't complain about missing SHM segments) + + 5ce18c (fix definition of INVALID_INDEX for vala) + + 6bbdd2 (fix definition of the GLib mainloop adapter for vala) + + 3f44bf (Use "Subwoofer" in channelmap) + + 117c99 (fix wrapping of port setting calls for vala) + + ddabaa (explicitly mention 'test' role in proplist) + + 8adf53 (increase verboseness when not restoring sink) + + 180589 (use sample name for unmodified fallback) + + f9b957 (don't queue cached sample when sink is suspended) + + b2e9fb (pass buffer_attr to recording streams) + + a469d4 (make devices resume for corked state to fix latency + miscalculation) (LP: #511558) + + 4a3210 (improve buffer_attrs logging) + * 0094-add-missing-mixer-paths-and-rerun-automake.patch has been + merged upstream (047e16f in the stable-queue branch), but we'll continue to + carry it until the next stable tarball is rolled. + + -- Daniel T Chen Sun, 21 Feb 2010 22:37:37 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu9) lucid; urgency=low + + * 0094-add-missing-mixer-paths-and-rerun-automake.patch: Fix missing paths + elements that broke volume control. + + -- Daniel T Chen Thu, 18 Feb 2010 23:56:42 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu8) lucid; urgency=low + + * Back out 307bd1 until we can roll a new tarball. Applying it to the + current source package requires all sorts of nasty hacks. + (LP: #523716) + * Drop 0094-autoconf.patch, as it's no longer needed + + -- Daniel T Chen Thu, 18 Feb 2010 07:32:58 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu7) lucid; urgency=low + + * debian/control: Since JACK has been approved for promotion back into + main, add its packages + * 0093-backport-fixes-stable-queue-head.patch: Backport the following + changesets from the stable-queue branch: + + 19fa81 (always fulfill write requests from the server) + + 96ec29 (store away fd type for pacmd) + + 6e064d (don't enter busy loop when reading from stdin very early) + + -- Daniel T Chen Wed, 17 Feb 2010 22:33:34 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu6) lucid; urgency=low + + [ Daniel T Chen ] + * pulseaudio.default: More clearly describe the conditions for + autospawn to function correctly given the recent login-speedup work. + (As a side effect, it now also lists what one needs to do to disable + PA.) + * 0093-backport-fixes-stable-queue-head.patch: Backport the following + changesets from the stable-queue branch: + + a631be (PA_SINK_INPUT_IS_LINKED typo fix) + + e8cb96 ('Desktop Speaker' handling) + + 7d6bab ('Shared Mic/Line in', 'Analog Source' handling) + + 0c836a ('Internal Mic' handling) + + 307bd1 (default output port names) + + f9b31f (gobject explicit linking) + + ff2474 (padsp handling of /dev/audio) + + 96592c (dbus timeout callback timer fix) + + 5e2af2 (logging of eventfd read failures) + * 0094-autoconf.patch: Rerun autoconf given explicit gobject link + addition; readd version string. + + [ Martin Pitt ] + * 0092-delay-gnome-autostart.patch: Push it out a little further; the X11 + bell is not crucial at desktop startup, and it keeps other programs from + doing more urgent initialization. + + -- Daniel T Chen Mon, 08 Feb 2010 12:42:02 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu5) lucid; urgency=low + + * Add bzr-builddeb configuration (merge mode). + * debian/control: Prefix the Debian git Vcs-* fields with XS-Debian-*, so + that debcheckout on Ubuntu will actually work. + * Add 0092-delay-gnome-autostart.patch: Delay applet startup by two seconds, + so that pulseaudio has started up enough to avoid starting it a second + time through autospawn. + + -- Martin Pitt Mon, 01 Feb 2010 18:12:13 -0800 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu4) lucid; urgency=low + + * debian/01PulseAudio: Break from state (re)store in the correct + place! + + -- Daniel T Chen Sun, 31 Jan 2010 13:44:57 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu3) lucid; urgency=low + + * debian/01PulseAudio: + + Fix su(1) -c quoting (LP: #515038) + + Now that PA only stores mixer state for the active CK seat, and + because the active ConsoleKit seat is the only one we care about, + we don't need to save all PA users' mixer states. Thus, we can + stop (re)storing state as soon as we've finished processing the + active ConsoleKit seat, thereby further optimizing the suspend/ + resume speed. + + -- Daniel T Chen Sun, 31 Jan 2010 13:16:46 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu2) lucid; urgency=low + + * debian/01PulseAudio: Use su(1) instead of sudo(8) + (LP: #489144, #498980). + * debian/patches/series: To trim the startup time, don't lazy-load + sounds by not applying 0005-load-sample-dir-lazy.patch. + * 0091-dont-load-cork-music-on-phone.patch: Refresh. + * 0057-load-module-x11-bell.patch: Don't explicitly load the daemon + since it will autospawn if necessary, and if the system or user + configuration has autospawn disabled it breaks that semantics + (LP: #513120). + + -- Daniel T Chen Fri, 29 Jan 2010 14:37:52 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu1) lucid; urgency=low + + * New snapshot of stable-queue branch as requested by upstream + * debian/patches/0099-back-out-8d3566.patch: Drop. Seeking is fixed + in the latest snapshot. + * debian/pulseaudio.default: Update instructions for using system + mode. + + -- Daniel T Chen Sun, 17 Jan 2010 22:51:57 -0500 + +pulseaudio (1:0.9.22~0.9.21+stable-queue-24-gfa64-0ubuntu1) lucid; urgency=low + + * Reroll actual stable-queue tarball (arrrg!) + * debian/01PulseAudio: Rework pacmd bits (LP: #507941) + * debian/patches/: + + add: 0099-back-out-8d3566.patch (upstream says this commit causes + regressions) + - drop: 0099-change-configure-git-version-tag.patch (no longer + relevant) + + refresh: 0001-change-resample-and-buffering.patch + 0054-mute-iec958-optical-raw-for-audigyX.patch + 0090-disable-flat-volumes.patch + 0091-dont-load-cork-music-on-phone.patch + 0057-load-module-x11-bell.patch + + -- Daniel T Chen Fri, 15 Jan 2010 19:06:15 -0500 + +pulseaudio (1:0.9.22~0.9.21+341-g62bf-0ubuntu1) lucid; urgency=low + + * New snapshot based on stable-queue git branch (testing requested + specifically by upstream) + - LP: #164745, #173212, #201391, #204536, #207796, #210016, #221038, + - LP: #226342, #230408, #236423, #237443, #250059, #269585, #274304, + - LP: #274577, #275474, #277532, #277566, #277932, #278025, #280534, + - LP: #283049, #286816, #287036, #292732, #298011, #298301, #300290, + - LP: #302038, #311497, #311853, #324062, #339448, #344057, #348979, + - LP: #350829, #356206, #367379, #367544, #369822, #371897, #374846, + - LP: #375570, #381801, #399515, #402950, #403786, #408169, #409322, + - LP: #409723, #410326, #410446, #417695, #417976, #419271, #421072, + - LP: #422774, #423979, #424655, #425028, #427016, #431072, #432660, + - LP: #437640, #437996, #442191, #443306, #443389, #446719, #449762, + - LP: #455417, #461532, #464652, #483191, #497537, #503780 + * debian/patches/: + + add: 0099-change-configure-git-version-tag.patch: Match released + upstream 0.9.21 for shlibs and LIBPULSE_VERSION_INFO + - drop: 0004-set-tsched0.patch (no longer relevant) + 0050-revert-pacmd-poll-argv.patch (no longer relevant) + 0056-dont-bail-on-sound-class-modem.patch (merged) + 0056-ignore-sound-class-modem.patch (merged) + 0058-Backport-4c793.patch (merged) + 0059-Backport-978d3.patch (merged) + 0060-fix-implicit-func-decl-cpu-arm.patch (merged) + 0061-Backport-c5fdb.patch (merged) + 0070-dont-bail-on-sound-class-modem-devs.patch (merged) + + refresh: 0001-change-resample-and-buffering.patch + 0090-disable-flat-volumes.patch + 0091-dont-load-cork-music-on-phone.patch + 0057-load-module-x11-bell.patch + + -- Daniel T Chen Thu, 14 Jan 2010 20:33:05 -0500 + +pulseaudio (0.9.21-3) unstable; urgency=low + + * debian/rules: Compile with -g0 on mips{,el} to work around #519006 in + gcc-4.4 + + -- Sjoerd Simons Sat, 03 Jul 2010 15:12:54 +0100 + +pulseaudio (0.9.21-2) unstable; urgency=low + + * Import NMU patches into pkg-pulse git, thanks to the security team for + their work! + * debian/patches/0003-Re-bootstrap.patch + + Added. Update configure so we don't have to re-run autotools when + building the package (Closes: #576457, #576546, #576769) + * Install a KDE specific startup file and module-device-manager. + Thanks to Daniel Schaal and Zsolt Rizsanyi for patches and tips. + (Closes: #570487) + * d/p/0004-In-KDE-only-start-pulseaudio-from-the-KDE-specific-d.patch + + Added. When running KDE use the KDE specific autostart desktop file + instead of the generic pulseaudio-x11 file + * Fix two typos in debian/pulseaudio.default, patch by Paul Menzel + (Closes: #566332) + * Prepare the debian package for building on HURD again (needs some upstream + fixes as well). Patch by Pino Toscano (Closes: #573339) + * Use the pulseaudio.1 manpage from the source tree instead of the older (and + outdated) debian specific one. + + -- Sjoerd Simons Sun, 27 Jun 2010 20:27:23 +0100 + +pulseaudio (0.9.21-1.2) unstable; urgency=high + + * Non-maintainer upload by the Security Team. + * Added autoconf, automake, and libtool in Build-Depends to regenerate + configure and auto* files at build time, and fixed a regression introduced + in previous NMU (Closes: #576457) + + -- Giuseppe Iuculano Mon, 05 Apr 2010 23:02:56 +0200 + +pulseaudio (0.9.21-1.1) unstable; urgency=high + + * Non-maintainer upload. + * Fix insecure temporary file creation security issue (closes: #573615). + + -- Michael Gilbert Sat, 27 Mar 2010 14:32:13 -0400 + +pulseaudio (0.9.21-1) unstable; urgency=low + + * New upstream release + * d/p/0002-Fix-makefiles-to-include-all-alsa-path-files-on-inst.patch + + Removed, merged upstream + * debian/copyright: Updated + * debian/rules: Fix build on arm (slightly changes target name) + + -- Sjoerd Simons Mon, 23 Nov 2009 23:51:16 +0000 + +pulseaudio (1:0.9.21-0ubuntu6) lucid; urgency=low + + * Backport fix from master HEAD: + + 0061-Backport-c5fdb.patch (LP: #502992) + * The following patches have been merged upstream, but we'll continue + to apply them here until the next upstream snapshot: + . 0056-ignore-sound-class-modem.patch + . 0060-fix-implicit-func-decl-cpu-arm.patch + + -- Daniel T Chen Tue, 05 Jan 2010 18:34:40 -0500 + +pulseaudio (1:0.9.21-0ubuntu5) lucid; urgency=low + + * Refresh 0060-fix-implicit-func-decl-cpu-arm.patch with more FTBFS- + on-armel fixes (all submitted upstream). + + -- Daniel T Chen Thu, 17 Dec 2009 00:01:49 -0500 + +pulseaudio (1:0.9.21-0ubuntu4) lucid; urgency=low + + * 0060-fix-implicit-func-decl-cpu-arm.patch: Fix FTBFS on armel. + + -- Daniel T Chen Wed, 16 Dec 2009 22:45:25 -0500 + +pulseaudio (1:0.9.21-0ubuntu3) lucid; urgency=low + + * 0070-dont-bail-on-sound-class-modem-devs.patch: Fix parameter + in function call. Thanks to Whoopie for spotting. + + -- Daniel T Chen Wed, 16 Dec 2009 20:13:43 -0500 + +pulseaudio (1:0.9.21-0ubuntu2) lucid; urgency=low + + * Fix LP: #394500, #450222: + + 0070-dont-bail-on-sound-class-modem-devs.patch: + + Add pa_udev_get_sysattr() helper function so that we can + retrieve pcm_class. + + Add short-circuit in is_card_busy(). Currently there is an + incorrect break out of the loop when an HDA modem is driven by + slmodemd/hsfmodem. An HDA modem resides in device 6 and will + not contain "closed\n" for + /proc/asound/card.../pcm.../sub.../status. + * 0058-Backport-4c793.patch: Use pa_stream pointers to hashmaps + instead of dynarrays. + * 0059-Backport-978d3.patch: Mark shared variables as volatile + to supress compiler optimizations. + + -- Daniel T Chen Sun, 06 Dec 2009 19:40:04 -0500 + +pulseaudio (1:0.9.21-0ubuntu1) lucid; urgency=low + + [ Daniel T Chen ] + * New upstream bugfix release + * debian/control: pulseaudio-module-raop must Depends + pulseaudio-module-zeroconf (LP: #484870). Thanks, Dominic Evans! + * Bump for 0.9.21: + + debian/libpulse0.shlibs + + debian/pulseaudio.shlibs + + debian/rules + * debian/pulseaudio.install: + debian/copyright: Amend for addition of: + + module-device-manager.so + * debian/README.Debian: Update for Ubuntu 9.04+. + * 0002-Fix-makefiles-to-include-all-alsa-path-files-on-inst.patch: + Drop, fixed upstream. + * 0051-fix-sigfpe-mcalign.patch: Drop, needs fixing in alsa-kernel + and alsa-lib. + + [ Chow Loong Jin ] + * debian/01PulseAudio: Add/modify functions to (re)store sink/source + state for (resume/)suspend (LP: #404986, #483900) + + [ Luke Yelavich ] + * Remove wrapper scripts and accessibility special case, to help with the + desktop startup time. The accessibility case should be solved in + speech-dispatcher by the time lucid ships. + - debian/patches/0006-a11y-special-case-disable.patch: Removed + - debian/70pulseaudio: Removed + - debian/pulse-session: Removed + - debian/pulseaudio.install: Re-add the xdg autostart desktop file + - debian/pulseaudio.preinst: Instead of removing the xdg autostart desktop + file on upgrade, remove the 70pulseaudio X Session script on upgrade + + -- Daniel T Chen Wed, 25 Nov 2009 16:34:54 -0500 + +pulseaudio (0.9.20-1) unstable; urgency=low + + * New upstream release + * d/p/0002-Fix-makefiles-to-include-all-alsa-path-files-on-inst.patch + + Added. Make sure all alsa path configuration files are installed + + -- Sjoerd Simons Sat, 14 Nov 2009 22:50:52 +0000 + +pulseaudio (1:0.9.20-0ubuntu3) lucid; urgency=low + + * drop the enforced switch to ARMv6 in debian rules (we build for cortex-a8 + by default now). + * Make sure the arm specific assembler code builds properly with thumb + support by adding -Wa,-mimplicit-it=thumb instead until it is added to + the default compiler flags (fixes FTBFS). + + -- Oliver Grawert Wed, 25 Nov 2009 14:16:59 +0100 + +pulseaudio (1:0.9.20-0ubuntu2) lucid; urgency=low + + * Add 0002-Fix-makefiles-to-include-all-alsa-path-files-on-inst.patch + from Debian unstable (thanks, Sjoerd Simons!) + * Fix 0055-handle-Master-Front.patch to handle only front elements + based on comments from Lennart. The patch now does the right thing + despite linux still doing the wrong thing, but at least we handle + cases where linux will do the right thing. + + -- Daniel T Chen Sun, 15 Nov 2009 13:45:49 -0500 + +pulseaudio (1:0.9.20-0ubuntu1) lucid; urgency=low + + * New upstream bugfix release + + Fix BT validation (LP: #437293) + * debian/control: + + pulseaudio Provides pulseaudio-module-hal, pulseaudio-module-udev, + and pulseaudio-module-rygel-media-server for upgrades (really + fixes LP #477382) + * debian/patches/: + - 0002-work-around-suspend-on-idle-source-sink-race.patch: + - 0052-revert-sse2-optimize.patch: + - 0055-backport-alsa-bt-position-fixes-b3592a1.patch: + Remove; applied upstream + + 0054-mute-iec958-optical-raw-for-audigyX.patch: Refresh + + 0055-handle-Master-Front.patch: For new VIA-based HDA, handle + this mixer control until we've fixed it in linux (LP: #478868) + * Bump for 0.9.20: + + debian/libpulse0.shlibs + + debian/pulseaudio.shlibs + + debian/rules + + -- Daniel T Chen Thu, 12 Nov 2009 19:19:21 -0500 + +pulseaudio (1:0.9.19-2ubuntu2) lucid; urgency=low + + * debian/control: + + Promote pulseaudio-utils to Depends for pulseaudio so that the + pm-utils script is present (LP: #478182) + - Drop obsolete Depends on pulseaudio-module-udev for pulseaudio + (LP: #477382) + * debian/01PulseAudio: Don't fail suspend/resume when system-wide + daemon is running (LP: #476505) + + -- Daniel T Chen Fri, 06 Nov 2009 18:37:36 -0500 + +pulseaudio (1:0.9.19-2ubuntu1) lucid; urgency=low + + * Merge from Debian unstable, remaining changes: + - epoch (my stupid fault :S) + - Don't build against, and create jack package. Jack is not in main + - use speex-float-1 resampler to work better with lack of PREEMPT in + karmic's -generic kernel config, also change buffer size + - Add alsa configuration files to route alsa applications via pulseaudio + - Move libasound2-plugins from Recommends to Depends + - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio + daemons + - Make initscript more informative in the default case of per-user + sessions + - add status check for system wide pulseaudio instance + - create /var/run/pulse, and make restart more robust + - LSB {Required-*,Should-*} should specify hal instead of dbus, + since hal is required (and already requires dbus) + - indicate that the system pulseaudio instance is being started from the init + script + - Install more upstream man pages + - Link to pacat for parec man page + - check whether pulseaudio is running before preloading the padsp library + - Add DEB_OPT_FLAG = -O3 as per recommendation from + pulseaudio-discuss/2007-December/001017.html + - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load + - Generate a PO template on build + - add special case to disable pulseaudio loading if accessibility/speech + is being used + - the esd wrapper script should not load pulseaudio if pulseaudio is being + used as a system service + - add a pulseaudio apport hook + - fix some typos in README.Debian + - drop padevchooser(Recommends) and pavucontrol (Suggests) + - drop libasyncns-dev build dependency, its in universe + - add libudev-dev as a build-dependency + - Fix initialization of devices with modem subdevices + - Backport ALSA BlueTOoth position fixes from git HEAD + - Disable cork-music-on-phone + - Revert sse2 optimizations + - disable flat volume + - Handle div by zero attempts + - Mute IEC958 Optical Raw by default + - use tdd instead of gdbm + * debian/control: + - Dro packages, due to debian including the files in these packages in the + main pulseaudio package: pulseaudio-module-udev, + pulseaudio-module-udev-dbg, pulseaudio-module-rygel-media-server, + pulseaudio-module-rygel-media-server-dbg + - Add conflicts/replaces for pulseaudio-module-udev and + pulseaudio-module-rygel-media-server + - Add replaces for pulseaudio-module-hal to the pulseaudio package to handle + upgrades from hardy + - Remove rtkit from conflicts, and add it to recommends, as 2.6.32 has the + needed patches + + [ Daniel T Chen ] + * 0057-load-module-x11-bell.patch: Load module-x11-bell in the + start-pulseaudio-x11 script (LP: #301174) + + -- Luke Yelavich Fri, 06 Nov 2009 14:07:19 +1100 + +pulseaudio (0.9.19-2) unstable; urgency=low + + * Built with normal old-style hal support on kfreebsd and the hurd + * debian/patches/0001-Work-around-some-platforms-not-having-O_CLOEXEC.patch: + + Added. Don't use O_CLOEXEC on platforms that don't support it. + (Closes: #550826) + * debian/pulseaudio.install: Install pulse udev rules so device profiles can + be matched with the few devices that need special tweaks + * debian/pulseaudio.install: Add the rygel media server plugin, such that + pulseaudio sources and sinks can be exposed over UPNP via rygel. + + -- Sjoerd Simons Sun, 25 Oct 2009 13:43:06 +0000 + +pulseaudio (0.9.19-1) unstable; urgency=low + + * New upstream release + * Remove patches that were merged upstream: + d/p/0001-tunnel-fix-parsing-of-sink-info-from-newer-servers.patch + d/p/0002-tunnel-fix-parsing-of-source-info-from-newer-servers.patch + d/p/0003-svolume-tweak-constraints-for-32-bits.patch + * Only compile the ARMv6 optimized code with -march=armv6 (Closes: #546322) + * Depend on udev (>= 143) for device detection (Closes: #548821, #549001) + * Update various shlibs files to use 0.9.19 + + -- Sjoerd Simons Sat, 03 Oct 2009 18:22:56 +0100 + +pulseaudio (1:0.9.19-0ubuntu4) karmic; urgency=low + + * Remove 0053-fix-sigsegv-module-bluetooth-device.patch, as it did + more harm than good (reopens LP #437293). + * debian/01PulseAudio: Fix bashisms, and make suspend/resume actually + work with sudo -H -u (LP: #432096, #450461). + + -- Daniel T Chen Tue, 20 Oct 2009 10:29:04 -0400 + +pulseaudio (1:0.9.19-0ubuntu3) karmic; urgency=low + + [ Tony Espy ] + * debian/control: Add a Conflicts for rtkit so we force removal, and + hence get more testing coverage between now and Karmic final (LP: #452458). + + [ Daniel T Chen ] + * debian/patches/0056-ignore-sound-class-modem.patch: + + Apply patch from Whoopie to fix initialization of devices with + modem subdevices (LP: #394500, #450222) + + -- Tony Espy Thu, 15 Oct 2009 15:33:02 -0400 + +pulseaudio (1:0.9.19-0ubuntu2) karmic; urgency=low + + * debian/control: Drop rtkit from recommends, as the kernel patches have + not landed in karmic, so rtkit is currently useless. + + -- Luke Yelavich Wed, 14 Oct 2009 12:02:50 +1100 + +pulseaudio (1:0.9.19-0ubuntu1) karmic; urgency=low + + * New upstream bugfix release + * debian/: + . {libpulse0,pulseaudio}.shlibs: + . shlibs{,_pulseaudio}.local: + . rules: Update for new release + * debian + + pulseaudio.dirs: + . patches/0006-a11y-special-case-disable.patch: + . pulse-session: Use a system-wide flag to assist in fixing + alsactl store race. + * debian/patches/: + - 0060-backport-c194d.patch: Drop, subsumed by new release + + 0053-fix-sigsegv-module-bluetooth-device.patch: Don't strcmp + uninitialized memory (LP: #437293) + + 0055-backport-alsa-bt-position-fixes-b3592a1.patch: Apply the + following changesets from origin/master HEAD for fixes: + 40c1ca76c48147c7648e1f1a72cc2c747f3d0c9b, + 7b682c969025845f75cbc74a9f830ad2dec8a415, + c96d2d1117a7e59b351358c8cdd79ef465ddbd49, + b3592a160f0d2a28605048a81c0261bf7c45acbb + + 0091-dont-load-cork-music-on-phone.patch: Disable for Karmic; + it's confusing users (LP: #437638) + * Previous uploads resolved Launchpad bug reports: + - LP: #434003 (crashed with SIGILL in pa_smoother_translate() ) + - LP: #437638 (cpulimit.c: Received request to terminate) + + -- Daniel T Chen Tue, 06 Oct 2009 18:40:38 -0400 + +pulseaudio (0.9.18-1) unstable; urgency=low + + * New upstream release + * d/p/0001-tunnel-fix-parsing-of-sink-info-from-newer-servers.patch + + Added. Fix parsing of the sink info when using module-tunnel + From the upstream 0.9.18-stable branch + * d/p/0002-tunnel-fix-parsing-of-source-info-from-newer-servers.patch + + Added. Fix parsing of the source info when using module-tunnel + From the upstream 0.9.18-stable branch + * d/p/0003-svolume-tweak-constraints-for-32-bits.patch + + Added. Fixes gcc and the inline assembly using the same register. + From the upstream 0.9.18-stable branch + * debian/control: Build-Depend on libudev-dev instead of libhal-dev. + Pulseaudio now uses udev for device detection (Closes: #546721) + * debian/control: Enable hal->udev compat module + * Update various shlibs files to use 0.9.18 + * debian/pulseaudio.install, debian/rules: Add udev and loopback modules + * debian/pulseaudio-utils.install: Add pamon and parecord + * debian/pulseaudio.install: Add dbus configuration file for system-wide + pulse instance (Closes: #529989) + * debian/control: Bump libsndfile1-dev build-depend to >= 1.0.20. + (Closes: #546734) + * debian/rules: Add -march=armv6 to the CFLAGS on arm and armel + (Closes: #546322) + + -- Sjoerd Simons Sun, 27 Sep 2009 23:46:37 +0200 + +pulseaudio (1:0.9.18-0ubuntu3) karmic; urgency=low + + * debian/patches/: + + 0052-revert-sse2-optimize.patch: Revert 3d5a57 causing audio + anomalies (LP: #428619) + + -- Daniel T Chen Tue, 22 Sep 2009 22:19:42 -0400 + +pulseaudio (1:0.9.18-0ubuntu2) karmic; urgency=low + + * Remove epoch again, fixes FTBFs. + + -- Luke Yelavich Mon, 21 Sep 2009 11:12:00 +1000 + +pulseaudio (1:0.9.18-0ubuntu1) karmic; urgency=low + + [ Daniel T Chen ] + * New upstream bugfix release + * debian/patches/: + - 0052-backport-56b6e18030.patch: Drop + - 0053-fix-output-element.patch: Drop, applied upstream + - 0090-use-volume-ignore-for-analog-output.patch: Stop applying + this patch. Too many people are confused as to why PCM isn't + being changed when they adjust PA's volume. + + 0060-backport-c194d.patch: Backport fixes from 0.9.18-stable + branch (to changeset c194db71b0ff853b4f46df26e135edf63b215451) + + 0090-disable-flat-volumes.patch: Many people seem uncomfortable + with PA's new default volume adjustment routine, so disable it + in favour of the existing behaviour known in previous Ubuntu + releases. The downside is that the user again has many knobs to + fiddle; the upside is that applications can no longer drop the + volume floor. This addresses LP: #403859, #433209. + + [ Luke Yelavich ] + * debian/pulse-alsa.conf: Expose the pulse device to the ALSA name hint API. + Thanks to David Henningsson for the patch. + * Add epoch to shlibs version definitions. + + -- Luke Yelavich Mon, 21 Sep 2009 10:28:25 +1000 + +pulseaudio (0.9.17-1) unstable; urgency=low + + * New upstream release + * debian/copyright: updated + * Update various shlibs files to use 0.9.17 + + -- Sjoerd Simons Sat, 12 Sep 2009 10:27:46 +0100 + +pulseaudio (1:0.9.17-0ubuntu2) karmic; urgency=low + + * debian/patches/: + + 0051-fix-sigfpe-mcalign.patch: Handle div by zero attempts + (LP: #412224) + + 0052-backport-56b6e18030.patch: Backport fixes from git HEAD + (56b6e18030b5a467946bd0a5803ec119efccdc8a) + + 0053-fix-output-element.patch: Fix misspelling of Surround + + 0054-mute-iec958-optical-raw-for-audigyX.patch: Mute + IEC958 Optical Raw by default (LP: #400629, #408370) + + -- Daniel T Chen Thu, 17 Sep 2009 19:57:15 -0400 + +pulseaudio (1:0.9.17-0ubuntu1) karmic; urgency=low + + [ Daniel T Chen ] + * New upstream release + + [ Luke Yelavich ] + * debian/rules: refer to the 0.9.17 directory + * bump shlibs + + -- Luke Yelavich Mon, 14 Sep 2009 10:01:24 +1000 + +pulseaudio (0.9.16-1) unstable; urgency=low + + * New upstream release + * debian/copyright: updated + * debian/control: Remove the liboil build-dep + * debian/libpulse0.shlibs: Bump to >= 0.9.16 + * debian/pulseaudio.postinst: No longer make pulseaudio suid and no longer + create the pulse-rt group. Setting realtime priorities is now handled by + rtkit. + + -- Sjoerd Simons Thu, 10 Sep 2009 21:53:15 +0100 + +pulseaudio (1:0.9.16-0ubuntu1) karmic; urgency=low + + [ Daniel T Chen ] + * debian/patches/0090-use-volume-ignore-for-analog-output.patch: + + Realign volume control behaviour with existing Ubuntu releases, + i.e., disable volume = merge and use volume = ignore for + analog output + + [ Luke Yelavich ] + * New upstream release + * debian/patches/0057-introspect-version-fixes.patch (LP: #426210), + debian/patches/0056-alsa-rework.patch, + debian/patches/0055-llvm-clang-analyzer-fixes.patch, + 0054-volume-libpulse-backported-fixes.patch, + 0053-add-input-sources.patch, + debian/patches/0052-disable-cpu-limit.patch: Dropped, all applied upstream + * debian/patches/0051-reduce-lib-linking.patch: Drop, since we are not going + to be doing bi-arch pulseaudio packages for karmic + + -- Luke Yelavich Fri, 11 Sep 2009 09:24:39 +1000 + +pulseaudio (1:0.9.16~test7-14-g7ca81-0ubuntu2) karmic; urgency=low + + * debian/control: Fix missing pulseaudio-module-rygel-media-server + Depends thanks to lintian + * debian/patches/0054-use-sse2-volume.patch: + - Remove, resolved differently upstream (see below) + * debian/patches/0054-volume-libpulse-backported-fixes.patch: + + Add fixes from git HEAD: + e6a666d8d5fffbc9847b51b35349b88d74970079 (PA_BYTES_SNPRINT_MAX) + 5cf0c1e544a5fce97d514c793256b2e301277136 (rearrange functions) + 508c462841fd087528649ed1ca3646363387bb5d: + b5ac3839e18524524fa3e0da7ec68dbce16e8203 (remap/vol only SSE2) + 723499439f575f744f07c85a42b47d95cdc98de6 (init SSE2) + 3bbc5e6a4d0211d8cedd2fe6698c2e2c07d1c4b9 (add PA_VOLUME_INVALID) + cc6c4fe91f916451bbea9073619c11a6b122b684 (check pa_volume_t args) + 9755bfa58af0c27b478d5d8cc56013527a6f660b (drop expensive checks) + d000dd6f4b976894558613f69bdad2974cce7d1e (NULL chan map consist.) + 41a0dc1e9987ae00b605fd88bf887becbdf097d5 (log invalid fade/bal) + 08a4d57ce2f20173ea8a90e597a3ebcd28398242 (ok NULL proplist inv.) + * debian/patches/0055-llvm-clang-analyzer-fixes.patch: + + Add fixes from git HEAD: + f5046759cdd72daf5ba3b31c9dfc7b8d5be6bc9b.. + 7cc100d9e1d7093da44c8c83cbf61bb8c6000d9a + + -- Daniel T Chen Tue, 08 Sep 2009 18:21:00 -0400 + +pulseaudio (1:0.9.16~test7-14-g7ca81-0ubuntu1) karmic; urgency=low + + * New git snapshot of origin/master (0.9.16~test7-14-g7ca81) + fixes LP: #419658, #422451, #424127 + * debian/pulseaudio.install: add module-loopback + * debian/control: remove liboil*-dev build-dependency thanks to + included ASM optimisations + * debian/copyright: update; we've added module-loopback + * debian/patches/0052-disable-cpu-limit.patch: Disable cpu limit as + per 812be327836c93492ad389333bcc037566141eb8 + * debian/patches/0053-add-input-sources.patch: Add internal mic and + docking station as per 8cd635bc614834c13d0f1c586d472b4a52b98664 + * debian/patches/0054-use-sse2-volume.patch: Only use if SSE2 is + available. This is a workaround for LP: #418448, thanks "knarf"! + + -- Daniel T Chen Sun, 06 Sep 2009 14:23:15 -0400 + +pulseaudio (1:0.9.16~test6-3-g57e1-0ubuntu2) karmic; urgency=low + + * add -march=armv6 to compiler flags on armel, recent upstream changes + make pulse fail building on anything below v6 (what a very bad idea !) + + -- Oliver Grawert Thu, 27 Aug 2009 16:25:15 +0200 + +pulseaudio (1:0.9.16~test6-3-g57e1-0ubuntu1) karmic; urgency=low + + [ Daniel T Chen ] + * New git snapshot of origin/master (0.9.16~test6-3-g57e1) + * debian/patches/: + + 0050-revert-pacmd-poll-argv.patch: Retain, still seeing + excessive cpu usage with resume + - 0051-leave-hp-enabled.patch: Drop, applied upstream + + 0051-reduce-lib-linking.patch: Refresh and rename previous + 0052-reduce.. so that minimal changes are made + + [ Luke Yelavich ] + * debian/control: Promote rtkit from suggests to recommends + + -- Luke Yelavich Tue, 25 Aug 2009 09:44:32 +1000 + +pulseaudio (0.9.16~test5-1) experimental; urgency=low + + * New Upstream Version + + -- Sjoerd Simons Sat, 22 Aug 2009 21:59:34 +0100 + +pulseaudio (1:0.9.16~test5-0ubuntu2) karmic; urgency=low + + [ Daniel T Chen ] + * debian/patches/0051-leave-hp-enabled.patch: Leave + headphones enabled in the default analog mixer profiles + + [ Luke Yelavich ] + * debian/patches/0052-reduce-lib-linking.patch: Reduce the number of + libraries that the libpulse libraries are linked against as much as + possible, to lessen the work needed to make bi-arch libpulse packages + in the future + * Remove pulseaudio.desktop once again, as the a11y special case is + not being honoured, and we have the Xsession.d script to start pulse + for us, to avoid any races with other apps wanting to play sounds on + session startup + + -- Luke Yelavich Fri, 21 Aug 2009 15:48:31 +1000 + +pulseaudio (1:0.9.16~test5-0ubuntu1) karmic; urgency=low + + * New upstream release + * debian/patches/0050-backport-git-post-test4.patch: drop + * debian/patches/0050-revert-pacmd-poll-argv.patch: revert pacmd + changesets due to excessive cpu usage (poll()) with resume: + - aae7054b1c442e62cc1154d15a4b7a569d60d8f4 + - 5fcb8a3c0838a4ecdb00a0af09b6e1a358b114d0 + * debian/01PulseAudio: Escape hash when passed to sudo -u + (LP: #414385). Thanks, Christoph Kurrat and Dana Goyette! + * debian/pulseaudio.init: Add NetworkManager to + Should-St{art,op} to fix sink/source publishing with Avahi + (LP: #413443). Thanks, Martin-Éric Racine! + + -- Daniel T Chen Wed, 19 Aug 2009 17:43:48 -0400 + +pulseaudio (0.9.16~test4-1) experimental; urgency=low + + * New Upstream Version + + -- Sjoerd Simons Sun, 09 Aug 2009 18:24:46 +0100 + +pulseaudio (1:0.9.16~test4-0ubuntu6) karmic; urgency=low + + * Correct changelog entry for 1:0.9.16~test4-0ubuntu5 + (5fcb8a3c0838a4ecdb00a0af09b6e1a358b114d0 was _not_ + applied) + * Resync proper 0050-backport-git-post-test4.patch + from the ~ubuntu-audio-dev PPA branch + * debian/control: Drop libgdbm-dev; use tdb-dev instead + since it's upstream's approach + + -- Daniel T Chen Thu, 13 Aug 2009 22:49:07 -0400 + +pulseaudio (1:0.9.16~test4-0ubuntu5) karmic; urgency=low + + [ Daniel T Chen ] + * 0050-backport-git-post-test4.patch: Add the following changesets + from git (can be dropped with -test5): + + 51b3899348bf29dd88b56691aeea9f57895dfd14 + + 7d4916379bbf05384ad199004949cc220822aa5f + + 23a294c97e62e0bee9b17b1f8ad20a39e1ba15da + + d27e26dca0b492b1906b42b2d0f7decd38ed8ae3 + + 462cdf44b7fe36768c836c90761f6b8153290517 + + e8340345f6a102cd03b6676576bcd3879ead7aad + + 8998cba6839a46f11daec411c83a1b35723c5117 + + facae1f27504983d7eff7c7c3ffa864f7e002272 + + 9f53aa5546e7bf9246546c6dda5637d50679483c + + ef176ecb62a8f04bd14ca37e7c2a40469f0bb8ba + + 27b8cd783c2aedb23af8f88fc88632d5c4f387fd + + 5921324fd3c16e2b3d38d07b200febd90835f169 + + 286ab2f19370c7a0041897435614b2c6aadc8e70 + + 17d57415f5abad5b7c30301227054b4c899bc705 + + [ Luke Yelavich ] + * debian/pulseaudio.install: Also add previously dropped 70pulseaudio file + + -- Luke Yelavich Fri, 14 Aug 2009 10:29:16 +1000 + +pulseaudio (1:0.9.16~test4-0ubuntu4) karmic; urgency=low + + * debian/pulseaudio.install: ...and also re-add droped apport hook, and + alsa configuration files + + -- Luke Yelavich Fri, 07 Aug 2009 10:05:51 +0100 + +pulseaudio (1:0.9.16~test4-0ubuntu3) karmic; urgency=low + + * debian/pulseaudio.install: Also re-add pulse-session wrapper script + + -- Luke Yelavich Fri, 07 Aug 2009 09:41:15 +0100 + +pulseaudio (1:0.9.16~test4-0ubuntu2) karmic; urgency=low + + * debian/pulseaudio.install: + - Re-add the pm-utils script that was inadvertantly left out with the + previous Debian merge + - Add udev rules from upstream, needed for particular sound hardware + + -- Luke Yelavich Thu, 06 Aug 2009 18:49:12 +0100 + +pulseaudio (1:0.9.16~test4-0ubuntu1) karmic; urgency=low + + * New upstream release + * debian/patches/0008-clean-out-old-files.patch: Dropped, applied upstream + * debian/control: Fix pulseaudio-module-rygel-media-server debug package name + + -- Luke Yelavich Wed, 05 Aug 2009 12:02:18 +0100 + +pulseaudio (1:0.9.16~test3-0ubuntu1) karmic; urgency=low + + * New upstream release + * debian/pulseaudio.postinst: + - Do not create the pulse-rt group any more + - Do not make the pulseaudio binary suid root + * debian/pulseaudio.postrm: Do not try to remove the pulse-rt group + * debian/pulseaudio.preinst: Remove the pulse-rt group on upgrade + * debian/control: + - Suggest rtkit + - Renamed pulseaudio-module-hal and pulseaudio-module-hal-dbg to + pulseaudio-module-udev and pulseaudio-module-udev-dbg respectively + - pulseaudio-module-udev replaces pulseaudio-module-hal + - Bumped libudev-dev requirement to >= 143 + - Added build dependencies libICE-dev, libxi-dev, x11proto-core-dev + - Add new package for the rygel-media-server module + - Tighten libasound2-dev and libsndfile1-dev dependencies + * debian/pulseaudio.init: Change all hal references to udev + * debian/patches/0008-clean-out-old-files.patch: Remove non-existant files + from POTFILES.in, patch sent upstream + * Merge from Debian unstable, remaining changes: + - epoch (my stupid fault :S) + - Don't build against, and create jack package. Jack is not in main + - use speex-float-1 resampler to work better with lack of PREEMPT in + karmic's -generic kernel config, also change buffer size + - Add alsa configuration files to route alsa applications via pulseaudio + - Move libasound2-plugins from Recommends to Depends + - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio + daemons + - patch to fix source/sink and suspend-on-idle race + - Make initscript more informative in the default case of per-user + sessions + - add status check for system wide pulseaudio instance + - create /var/run/pulse, and make restart more robust + - LSB {Required-*,Should-*} should specify hal instead of dbus, + since hal is required (and already requires dbus) + - indicate that the system pulseaudio instance is being started from the init + script + - Install more upstream man pages + - Link to pacat for parec man page + - check whether pulseaudio is running before preloading the padsp library + - Add DEB_OPT_FLAG = -O3 as per recommendation from + pulseaudio-discuss/2007-December/001017.html + - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load + - Generate a PO template on build + - add special case to disable pulseaudio loading if accessibility/speech + is being used + - the esd wrapper script should not load pulseaudio if pulseaudio is being + used as a system service + - add a pulseaudio apport hook + - fix some typos in README.Debian + - drop padevchooser(Recommends) and pavucontrol (Suggests) + - drop libasyncns-dev build dependency, its in universe + - add libudev-dev as a build-dependency + + -- Luke Yelavich Tue, 04 Aug 2009 11:46:25 +0100 + +pulseaudio (0.9.16~test2~20090726git59659e1db-1) experimental; urgency=low + + * New Upstream Version + * Ack NMU (Was fixed upstream in this version) (Closes: #537351) + * Remove all patches, everything was merged upstream :) + * debian/copyright: updated + * debian/pulseaudio.install: Don't install the PolicyKit config file + * debian/control: Removed build-dep on libpolkit-dbus-dev + * Update various shlibs files to use 0.9.16 + * debian/pulseaudio.install: Install pulseaudio shared config files + * debian/pulseaudio.instal: Add module-intended-roles + * debian/control: Make pulseaudio-module-raop-dbg depend on + pulseaudio-module-raop + + -- Sjoerd Simons Tue, 28 Jul 2009 14:00:27 +0200 + +pulseaudio (0.9.15-4.1) unstable; urgency=high + + * Non-maintainer upload by the Security Team. + * Fix race condition when reading /proc/self/exe and reloading the binary + that leads to arbitrary code execution as pulseaudio is suid root + + Use LDFLAGS to preload DSOs + + regenerate autofoo + (CVE-2009-1894; Closes: #537351). + + -- Nico Golde Fri, 24 Jul 2009 18:02:24 +0200 + +pulseaudio (1:0.9.15-4ubuntu3) karmic; urgency=low + + * debian/01PulseAudio: Mute sinks and sources prior to + suspend; unmute sinks and sources after resume (LP: #404986) + * debian/patches/series: Reenable glitch-free. + + -- Daniel T Chen Mon, 27 Jul 2009 22:06:34 -0400 + +pulseaudio (1:0.9.15-4ubuntu2) karmic; urgency=low + + * SECURITY UPDATE: root escalation from BIND_NOW re-execution. + - 0040-do-not-exec-for-bindnow.patch: use -Wl,-z,now instead of + performing a racey re-exec. + - CVE-2009-1894 + + -- Kees Cook Thu, 16 Jul 2009 10:03:46 -0700 + +pulseaudio (1:0.9.15-4ubuntu1) karmic; urgency=low + + [ Daniel T Chen ] + * debian/patches/0001_change_resample_and_buffering.patch: Bump + default resampler to speex-float-1 due to remaining audio + anomalies when playing DVDs (LP: #376374) + + [ Luke Yelavich ] + * Merge from Debian unstable, remaining changes: + - epoch (my stupid fault :S) + - Don't build against, and create jack package. Jack is not in main + - use speex-float-1 resampler to work better with lack of PREEMPT in + karmic's -generic kernel config, also change buffer size + - Add alsa configuration files to route alsa applications via pulseaudio + - Move libasound2-plugins from Recommends to Depends + - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio + daemons + - patch to fix source/sink and suspend-on-idle race + - Make initscript more informative in the default case of per-user + sessions + - add status check for system wide pulseaudio instance + - create /var/run/pulse, and make restart more robust + - LSB {Required-*,Should-*} should specify hal instead of dbus, + since hal is required (and already requires dbus) + - indicate that the system pulseaudio instance is being started from the init + script + - Install more upstream man pages + - Link to pacat for parec man page + - check whether pulseaudio is running before preloading the padsp library + - Add DEB_OPT_FLAG = -O3 as per recommendation from + pulseaudio-discuss/2007-December/001017.html + - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load + - disable glitch free (use tsched=0) + - Generate a PO template on build + - add special case to disable pulseaud * debian/patches/0090-fix-sw-mute-desync.patch: Dropped, as this is included + in the recently added patches in Debian.io loading if accessibility/speech + is being used + - the esd wrapper script should not load pulseaudio if pulseaudio is being + used as a system service + - add a pulseaudio apport hook + - fix some typos in README.Debian + - drop padevchooser(Recommends) and pavucontrol (Suggests) + - drop libasyncns-dev build dependency, its in universe + - add libudev-dev as a build-dependency + * debian/patches/0090-fix-sw-mute-desync.patch: Dropped, as this is included + in the recently added patches in Debian. + + -- Luke Yelavich Mon, 22 Jun 2009 11:17:06 +1000 + +pulseaudio (0.9.15-4) unstable; urgency=low + + * Synchronize our patches with Mandriva and Fedora (thanks to Colin Guthrie + and Lennart Poettering) + - 0002-util-if-NULL-is-passed-to-pa_path_get_filename-just-.patch + - 0003-alsa-don-t-hit-an-assert-when-invalid-module-argumen.patch + - 0004-alsa-fix-wording-we-are-speaking-of-card-profiles-no.patch + - 0005-alsa-initialize-buffer-size-before-number-of-periods.patch + - 0006-conf-remove-obsolete-module-idle-time-directive-from.patch + - 0007-core-make-sure-soft-mute-status-stays-in-sync-with-h.patch + + Ensure hw and software mute states stay in sync + (Closes: #525572, #522177) + - 0008-endian-fix-LE-BE-order-for-24-bit-accessor-functions.patch + - 0009-log-print-file-name-only-when-we-have-it.patch + - 0010-man-document-24bit-sample-types-in-man-page.patch + - 0011-man-document-log-related-daemon.conf-options.patch + - 0012-man-document-that-tsched-doesn-t-use-fragment-settin.patch + - 0013-mutex-when-we-fail-to-fill-in-mutex-into-static-mute.patch + - 0014-oss-don-t-deadlock-when-we-try-to-resume-an-OSS-devi.patch + - 0015-simple-protocol-don-t-hit-an-assert-when-we-call-con.patch + - 0016-idxset-add-enumeration-macro-PA_IDXSET_FOREACH.patch + - 0017-rescue-streams-when-one-stream-move-fails-try-to-con.patch + - 0018-sample-correctly-pass-s24-32-formats.patch + - 0019-sample-util-fix-iteration-loop-when-adjusting-volume.patch + - 0020-sample-util-properly-allocate-silence-block-for-s24-.patch + - 0021-sconv-fix-a-few-minor-conversion-issues.patch + - 0022-alsa-be-a-bit-more-verbose-when-a-hwparam-call-fails.patch + - 0023-rescue-make-we-don-t-end-up-in-an-endless-loop-when-.patch + - 0024-core-introduce-pa_-sink-source-_set_fixed_latency.patch + - 0025-core-cache-requested-latency-only-when-we-are-runnin.patch + - 0026-sample-fix-build-on-BE-archs.patch + - 0027-alsa-properly-convert-return-values-of-snd_strerror-.patch + - 0028-alsa-remove-debug-code.patch + + -- Sjoerd Simons Sun, 21 Jun 2009 15:40:33 +0100 + +pulseaudio (1:0.9.15-3ubuntu1) karmic; urgency=low + + [ Daniel T Chen ] + * debian/patches/0001_change_resample_and_buffering.patch: Bump + default resampler to ffmpeg. We cannot peg the cpu, and we cannot + have audio anomalies, so this change _should_ be regression-free + but needs extensive testing (LP: #376374). + * debian/patches/0090_fix_sw_mute_desync.patch: Backport from + git HEAD to resolve sw vol becoming muted on logout + (LP: #315971, #352732) + + [ Luke Yelavich ] + * Merge from Debian unstable, remaining changes: + - epoch (my stupid fault :S) + - Don't build against, and create jack package. Jack is not in main + - use ffmpeg resampler to work better with lack of PREEMPT in jaunty's + -generic kernel config, also change buffer size + - Add alsa configuration files to route alsa applications via pulseaudio + - Move libasound2-plugins from Recommends to Depends + - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio + daemons + - patch to fix source/sink and suspend-on-idle race + - Make initscript more informative in the default case of per-user + sessions + - add status check for system wide pulseaudio instance + - create /var/run/pulse, and make restart more robust + - LSB {Required-*,Should-*} should specify hal instead of dbus, + since hal is required (and already requires dbus) + - indicate that the system pulseaudio instance is being started from the init + script + - Install more upstream man pages + - Link to pacat for parec man page + - check whether pulseaudio is running before preloading the padsp library + - Add DEB_OPT_FLAG = -O3 as per recommendation from + pulseaudio-discuss/2007-December/001017.html + - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load + - disable glitch free (use tsched=0) + - Generate a PO template on build + - add special case to disable pulseaudio loading if accessibility/speech + is being used + - the esd wrapper script should not load pulseaudio if pulseaudio is being + used as a system service + - add a pulseaudio apport hook + - fix some typos in README.Debian + - drop padevchooser(Recommends) and pavucontrol (Suggests) + - drop libasyncns-dev build dependency, its in universe + - add libudev-dev as a build-dependency + + -- Luke Yelavich Tue, 09 Jun 2009 10:47:05 +1000 + +pulseaudio (0.9.15-3) unstable; urgency=low + + * Re-enable bluetooth support (Closes: #530514) + * No longer recommend padevchooser and let paprefs be a suggest + (Closes: #530810) + * 0001-alsa-allow-configuration-of-fallback-device-strings-.patch + - Added. Support alsa devices which only have the raw hw device, but no + front device even though they can do 2ch stereo (from upstream git) + * Add support for the status action in the init script, patch by Peter + Eisentraut (Closes: #527333) + * Change the libjack0.100.0-dev build-depend to libjack-dev as per request of + the debian multimedia maintainers (Closes: #527424) + * Prevent the default.pa manpage from being installed as part of the pa + locale (Closes: #508874) + + -- Sjoerd Simons Sun, 07 Jun 2009 22:30:33 +0100 + +pulseaudio (1:0.9.15-2ubuntu1) karmic; urgency=low + + * Merge from Debian unstable, remaining changes: + - epoch (my stupid fault :S) + - Don't build against, and create jack package. Jack is not in main + - use linear resampler to work better with lack of PREEMPT in jaunty's + -generic kernel config, also change buffer size + - Add alsa configuration files to route alsa applications via pulseaudio + - Move libasound2-plugins from Recommends to Depends + - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio + daemons + - patch to fix source/sink and suspend-on-idle race + - Make initscript more informative in the default case of per-user + sessions + - create /var/run/pulse, and make restart more robust + - add status check for system wide pulseaudio instance + - LSB {Required-*,Should-*} should specify hal instead of dbus, + since hal is required (and already requires dbus) + - indicate that the system pulseaudio instance is being started from the init + script + - Install more upstream man pages + - Link to pacat for parec man page + - check whether pulseaudio is running before preloading the padsp library + - Add DEB_OPT_FLAG = -O3 as per recommendation from + pulseaudio-discuss/2007-December/001017.html + - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load + - disable glitch free (use tsched=0) + - Generate a PO template on build + - add special case to disable pulseaudio loading if accessibility/speech + is being used + - the sd wrapper script should not load pulseaudio if pulseaudio is being + used as a system service + - add a pulseaudio apport hook + - fix some typos in README.Debian + - demote paprefs to suggests + - drop padevchooser(Recommends) and pavucontrol (Suggests) + - drop libasyncns-dev build dependency, its in universe + - add libudev-dev as a build-dependency + - Retain libbluetooth-dev build dependency + * debian/01Pulseaudio: Harvist users by UID, and not username, to ensure + that the script doesn't choak on characters not already considered as + used in a username (LP: #374694) + + -- Luke Yelavich Tue, 26 May 2009 23:33:42 +0200 + +pulseaudio (0.9.15-2) unstable; urgency=low + + * debian/control: Add strict dependencies from libpulse-dev to the various + libraries (Closes: #525759) + * Add local shlib files to ensure the correct dependencies get generated + (Closes: #528405) + + -- Sjoerd Simons Thu, 21 May 2009 00:54:38 +0100 + +pulseaudio (1:0.9.15-1ubuntu3) karmic; urgency=low + + * debian/control: libltdl7-dev -> libltdl-dev + + -- Luke Yelavich Mon, 11 May 2009 12:33:08 +1000 + +pulseaudio (1:0.9.15-1ubuntu2) karmic; urgency=low + + * debian/01PulseAudio: harvest users more robustly. Thanks, + Chow Loong Jin ! (LP: #202089) + * debian/control: pulseaudio depends on pulseaudio-module-hal + to fix LP: #326532 + + -- Daniel T Chen Thu, 09 Apr 2009 17:03:00 -0400 + +pulseaudio (1:0.9.15-1ubuntu1) karmic; urgency=low + + * Merge from unreleased Debian pulseaudio git, remaining changes: + - epoch (my stupid fault :S) + - Don't build against, and create jack package. Jack is not in main + - use linear resampler to work better with lack of PREEMPT in jaunty's + -generic kernel config, also change buffer size + - Add alsa configuration files to route alsa applications via pulseaudio + - Move libasound2-plugins from Recommends to Depends + - Add pm-utils sleep hook to suspend (and resume) users' pulseaudio + daemons + - patch to fix source/sink and suspend-on-idle race + - Make initscript more informative in the default case of per-user + sessions + - create /var/run/pulse, and make restart more robust + - add status check for system wide pulseaudio instance + - LSB {Required-*,Should-*} should specify hal instead of dbus, + since hal is required (and already requires dbus) + - indicate that the system pulseaudio instance is being started from the init + script + - Install more upstream man pages + - Link to pacat for parec man page + - check whether pulseaudio is running before preloading the padsp library + - Add DEB_OPT_FLAG = -O3 as per recommendation from + pulseaudio-discuss/2007-December/001017.html + - cache /usr/share/sounds/ubuntu/stereo/ wav files on pulseaudio load + - disable glitch free (use tsched=0) + - Generate a PO template on build + - add special case to disable pulseaudio loading if accessibility/speech + is being used + - the sd wrapper script should not load pulseaudio if pulseaudio is being + used as a system service + - add a pulseaudio apport hook + - fix some typos in README.Debian + - demote paprefs to suggests + - drop padevchooser(Recommends) and pavucontrol (Suggests) + - drop libasyncns-dev build dependency, its in universe + * add libudev-dev as a build-dependency + + -- Luke Yelavich Tue, 05 May 2009 14:18:20 +1000 + +pulseaudio (0.9.15-1) unstable; urgency=low + + * debian/control: Build-Depend on libcap-dev instead of libcap2-dev + * New Upstream Version + * Fixes building on HPPA (Closes: #520378) + * Fixes building with recent libtool (Closes: #522716) + * Update copyright file + * Updated pulseaudio-module-hal.install, dbus-util became part of pulsecore + * Move debug package to the debug Section + * Done make shlibs files for modules in /usr/lib/pulse-0.9.15 + * Update standards-version to 3.8.1, no further changes + * Set priority of pulseaudio-module-raop-dbg to extra + * Change build-depend on libltdl7-dev to recent versions libltdl-dev + * Add Breaks to libpulse0 for old version of pavucontrol + * Temporarily disable bluetooth support as the needed bluez version is stuck + in the NEW queue + + -- Sjoerd Simons Sun, 19 Apr 2009 14:43:41 +0100 + +pulseaudio (0.9.15~test5-1) experimental; urgency=low + + * New Upstream Version + * debian/copyright: Updated + * debian/control: Build-Depends on libltdl7-dev + * debian/control: Build-Depends on libasound2-dev (>= 1.0.19) + * debian/rules: Use git format-patch instead of git-format-patch + * debian/patches/0001-load-module-gconf-earlier.patch: + - Removed. Merged upstream + * debian/pulseaudio.install: Update for new modules + * debian/pulseaudio-module-x11.install: Update for new modules + * Move libpulscore into the pulseaudio package + * debian/pulseaudio-module-bluetooth.install: Add the bluetooth-util module + library + * debian/pulseaudio.install: Add new modules + * debian/control: Add bulid-depends on libgtk2.0-dev and libxtst-dev + * debian/pulseaudio.shlibs, debian/libpulse0.shlibs: Update shlib files + * debian/pulseaudio.install: Add liboss-util.so oss module helper library + * debian/control, debian/pulseaudio-module-raop.install: Add RAOP module + + -- Sjoerd Simons Sun, 22 Mar 2009 23:06:50 +0000 + +pulseaudio (0.9.14-2) unstable; urgency=low + + [ Sjoerd Simons ] + * Build against libcap2-dev (Closes: #489060) + * Bump shlibs of libpulse0 (Closes: #514645) + * Bump soname of libpulsecore to 9 + * Wait up to 5 seconds for pulseaudio to stop. Fix suggested by Aron Griffis + (Closes: #488754, #498457) + * Don't put stop links in rc0 and rc6. Pulse doens't really need it. Patch + supplied by James Westby (Closes: #494959) + * Make the start option of the init script report the right status. Fix + suggested by Aron Griffis (Closes: #488752) + * Use per user esound sockets instead of a single one for all users + + [ Baptiste Mille-Mathias ] + * debian/control: + - create a separate package for bluetooth module (Closes: #513832) + * debian/pulseaudio-module-bluetooth.install + - put files for the separate bluetooth module package + * debian/pulseaudio.install + - remove files of the separate bluetooth module package + + [ Sjoerd Simons ] + * debian/control: Don't build the bluetooth module on non-linux systems + (Closes: #502837) + * debian/control: Make the bluetooth module conflict with older pulseaudio + versions + * Update standards version, no changes needed + * debian/copyright: Big update + + -- Sjoerd Simons Sun, 01 Mar 2009 15:53:27 +0000 + +pulseaudio (0.9.14-1) experimental; urgency=low + + * New Upstream Version + * 0002-load-module-gconf-earlier.patch renamed to + 0001-load-module-gconf-earlier.patch and updated + * 0001-Fix-library-search-path-to-include-lib-and-usr-lib.patch + - Removed, no longer applicable + * 0003-make-sure-to-use-64bit-rounding-even-on-32bit-machin.patch + - Removed, fixed upstream + * 0004-properly-remove-dbus-matches-an-filters-when-unloadi.patch + - Removed, fixed upstream + * debian/patches/series + - Updated + + -- Sjoerd Simons Sun, 01 Feb 2009 12:47:55 +0000 + +pulseaudio (1:0.9.14-0ubuntu20) jaunty; urgency=low + + * debian/01PulseAudio: use pactl instead of pacmd (LP: #202089) + + -- Daniel T Chen Wed, 08 Apr 2009 18:54:30 -0400 + +pulseaudio (1:0.9.14-0ubuntu19) jaunty; urgency=low + + [ Daniel T Chen ] + * debian/pulseaudio.init: + - Fix inane stop() syntax (LP: #357201) + * Update backported (from git HEAD) fixes: + - 0091_workaround_alsa_horkage.patch + * Add new fixes: + - 0049_fix_sampling_rate_not_beyond_pa-rate-max.patch + + -- Luke Yelavich Thu, 09 Apr 2009 07:29:24 +1000 + +pulseaudio (1:0.9.14-0ubuntu18) jaunty; urgency=low + + * debian/apport-hook.py: Add apport hook + * debian/rules, debian/pulseaudio.install: Install apport hook + * LP: #357913 + + -- Matt Zimmerman Wed, 08 Apr 2009 20:14:17 +0100 + +pulseaudio (1:0.9.14-0ubuntu17) jaunty; urgency=low + + [ Daniel T Chen ] + * debian/pulseaudio.init: + - Actually create /var/run/pulse, and make handling of /restart + more robust (LP #317921) + - Add /status check for system-wide daemon instance + (LP: #298299) + * Backport from upstream git HEAD: + - 0046_ignore_hal_no_such_cap.patch, + - 0047_pick_up_all_cards.patch (LP: #353807), + - 0048_fix_stuck_prebuf.patch (LP: #355825) + + [ Luke Yelavich ] + * debian/control: Drop recommends from the pulseaudio-module-x11 package. if + they were dropped previously, they were re-added somehow, so lets get rid + of them once and for all. + + -- Luke Yelavich Tue, 07 Apr 2009 16:51:59 +1000 + +pulseaudio (1:0.9.14-0ubuntu16) jaunty; urgency=low + + * Introduce epoch to fix my stupidity in uploading a test release of + pulseaudio. + + -- Luke Yelavich Wed, 01 Apr 2009 14:04:33 +1100 + +pulseaudio (0.9.14-0ubuntu15) jaunty; urgency=low + + [ Daniel T Chen ] + * README.Debian: + pulse-session: + pulseaudio.default: Clarify function of system-wide check, and + make /usr/bin/pulse-session do the right thing if system-wide + is enabled (LP: #286966) + + [ Luke Yelavich ] + * Make the a11y no start special case per user, not system wide. + * Also make the esd wrapper script honour system wide pulseaudio. + + -- Luke Yelavich Mon, 30 Mar 2009 11:33:33 +1100 + +pulseaudio (0.9.14-0ubuntu14) jaunty; urgency=low + + * No-change rebuild to fix lpia shared library dependencies. + + -- Colin Watson Thu, 19 Mar 2009 13:57:35 +0000 + +pulseaudio (0.9.14-0ubuntu13) jaunty; urgency=low + + * debian/rules: Generate a PO template on build. Thanks to Timo Jyrinki for + the patch! (LP: #342159) + + -- Martin Pitt Mon, 16 Mar 2009 10:14:19 +0100 + +pulseaudio (0.9.14-0ubuntu12) jaunty; urgency=low + + * 0091_workaround_alsa_horkage.patch: + - Lower severity of logging level to prevent DoS on syslog + LP: #320875, #343254 + LP #330814 + + -- Daniel T Chen Sat, 14 Mar 2009 22:39:03 -0400 + +pulseaudio (0.9.14-0ubuntu11) jaunty; urgency=low + + [ Daniel T Chen ] + * Reenable 0030_set_tsched0.patch, which re-disables glitch-free; + too many users are reporting regressions and audio aberrations. + * Adjust 0003_change_resample_and_buffering.patch to use linear + resampler to work better with lack of PREEMPT in jaunty's + -generic kernel config (LP: #207135, #322250, #332761, #335955, + LP: #336965). + * Last upload, specifically 0091_workaround_alsa_horkage, fixes: + LP: #235990, #237443, #279847, #317997, #323185, #330814, + LP: #334874. + * sudo -H change in ubuntu6 fixed LP: #312505. + * Closing old bugs fixed in 0.9.11+: LP: #187963, #193520, #211052. + * Refresh 0006_regen-autotools.patch. + * Add 0043_load_sample_dir_lazy.patch to cache + /usr/share/sounds/ubuntu/stereo/* in default.pa. + * debian/: + - control: Build against libcap2-dev (LP: #339448); + - copyright: Update copyright from Debian's 0.9.14-2; + - rules: Add DEB_OPT_FLAG = -O3 as per recommendation from + pulseaudio-discuss/2007-December/001017.html. + * Refresh fixes from git HEAD: + - 0038_handle_errno_properly.patch, + - 0091_workaround_alsa_horkage.patch, + - 0092_fix_null_pointer_access.patch. + + [ Luke Yelavich ] + * Add a special case to prevent Pulseaudio from being started when the + blindness accessibility profile has been enabled from the Ubuntu live CD, + and for an accessibility install. Unfortunately Pulseaudio and speech do + not currently work very well with each other, and its too late in + the cycle to solve this problem any other way. + + -- Luke Yelavich Tue, 10 Mar 2009 09:00:40 +1100 + +pulseaudio (0.9.14-0ubuntu10) jaunty; urgency=low + + [ Daniel T Chen ] + * 0030_set_tsched0.patch: Disable this patch, which has the effect of + reenabling glitch-free. Depends on 0091_workaround_alsa_horkage. + * 0091_workaround_alsa_horkage.patch: Rework ALSA delay handling. + + [ Luke Yelavich ] + * debian/control: re-add the vcs bzr URL for Ubuntu's pulseaudio packaging + as it got lost somewhere along the way + + -- Luke Yelavich Mon, 02 Mar 2009 10:40:11 +1100 + +pulseaudio (0.9.14-0ubuntu9) jaunty; urgency=low + + * PulseAudio does not need to be started before gdm, especially since we use + user sessions by default. + + -- Scott James Remnant Fri, 27 Feb 2009 01:27:20 +0000 + +pulseaudio (0.9.14-0ubuntu8) jaunty; urgency=low + + [ Daniel T Chen ] + * Backport fixes from git HEAD: + - 0041_clarify_cmdline_opts.patch, + - 0042_fix_selem_init.patch + + [ Luke Yelavich ] + * 0001_more_translatable_strings.patch: Make the .desktop file and PolicyKit + files translatable, thanks to Gabor Kelemen Tue, 24 Feb 2009 13:46:25 +1100 + +pulseaudio (0.9.14-0ubuntu7) jaunty; urgency=low + + [ Luke Yelavich ] + * 0001-Fix-library-search-path-to-include-lib-and-usr-lib.patch: Dropped, + no longer applicable, as evident in Debian's pulseaudio git branch. + + [ Daniel T Chen ] + * 0004_enable_autospawn.patch: Renamed from .."disable".. for clarity, + and actually apply it. + * 0012_clarify_driver_error_redirect_to_alsa_devs.patch: Clarify + logging message for 'linux' source package and ALSA developers + instead of PulseAudio developers in alsa-util.c, too. + - This patch can be tweaked, since upstream has now applied it to + git HEAD + * Backport fixes from git HEAD: + - 0035_fix_module-detect_access.patch, + - 0036_increase_memblock_imports.patch, + - 0037_fill_silence_fail_import_memblock.patch, + - 0038_handle_errno_properly.patch, + - 0039_add_validity_checks.patch, + - 0040_legacy_fixes.patch + + -- Daniel T Chen Thu, 19 Feb 2009 19:34:03 -0500 + +pulseaudio (0.9.14-0ubuntu6) jaunty; urgency=low + + * 0004_disable_autospawn.patch: Disable this patch. Doing so + allows the daemon to spawn if not already running, which + works around LP: #191027, #204272 + * 0012_clarify_driver_error_redirect_to_alsa_devs.patch: + - Only log POLL* being set if tsched is used so that syslog + isn't filled with innocuous messages when we set tsched=0 + (see 0030 below) (LP: #323712), + - Hint 'linux' source package instead of 'alsa-driver' for + Launchpad bug reports, + - The debug-specific portion is only applicable to 0.9.14; + 0.9.15 enables a rate limiting module by default to work + around this (and other) issues + * 0029_fix_suspend_on_idle_null_race.patch: Handle sink case, + too + * 0030_set_tsched0.patch: Work around a shedload of (driver) + bugs by falling back to interrupt-based buffer semantics + (LP: #190754, #292880, #295519, #298494, #301755, #302964, + LP: #319118, #323976, #324103, #326205, #326864) + * Backport fixes from git HEAD: + - 0031_fix_6chan_map.patch, + - 0032_reinit_proplist.patch, + - 0033_fix_pa-gcc-packedmalloc.patch, + - 0034_bt_fixes.patch + * Make invoking the stop target in the initscript not fail an + upgrade (LP: #317921) + * Previous upload (0.9.14-0ubuntu3) fixed LP: #321357 + * 01PulseAudio: use sudo -H to ensure that $HOME is, in fact, + the user's when invoking pacmd for suspend/resume + + -- Daniel T Chen Sun, 15 Feb 2009 02:35:26 -0500 + +pulseaudio (0.9.14-0ubuntu5) jaunty; urgency=low + + * Add fixes from git HEAD: + - 0028_fix_uninit_rtp_resamp.patch, + - 0029_fix_suspend_on_idle_null_race.patch + + -- Daniel T Chen Thu, 12 Feb 2009 18:28:42 -0500 + +pulseaudio (0.9.14-0ubuntu4) jaunty; urgency=low + + * Add fixes from git HEAD: + - 0023_work_around_dlsym_retval_mistyping.patch, + - 0024_fix_sink_source_calls_in_suspended.patch, + - 0025_shortcut_pa-sink-process-rewind.patch, + - 0026_reset_rewind-requested_when_suspend.patch, + - 0027_fix_piped_pacmd.patch + + -- Daniel T Chen Wed, 04 Feb 2009 19:36:09 -0500 + +pulseaudio (0.9.14-0ubuntu3) jaunty; urgency=low + + [ Daniel T Chen ] + * Add fixes from git HEAD: + - 0014_fix_avail-min_calc.patch, + - 0015_no_pa-asyncq-push_fail.patch, + - 0016_dont_rely_pa-sink-running-idle_for_optim.patch, + - 0017_fix_hsp_rate_chan.patch, + - 0018_dont_restore_mute_vol_when_already_set.patch, + - 0019_fix_mem_leak_in_pa-alsa-open-by-device-string.patch, + - 0020_ask_for_same_frag_set_when_resuming_oss_dev.patch, + - 0021_add_missing_const.patch, + - 0022_dont_hit_assert_in_esound-sink_when_latency_queried.patch + + [ Luke Yelavich ] + * Re-instate /etc/X11/Xsession.d/70pulseaudio, to again load pulseaudio + earlier in the X session, to aleviate a pulse/login-sound race condition + (LP: #322374) + + -- Luke Yelavich Mon, 02 Feb 2009 15:27:55 +0100 + +pulseaudio (0.9.14-0ubuntu2) jaunty; urgency=low + + * Add fixes from trunk: + - 0012_clarify_driver_error_redirect_to_alsa_devs.patch + * Add 0013_add_padsp_wrapper_check.patch (LP: #269939) + * debian/pulseaudio.manpages: + debian/pulseaudio-esound-compat.manpages: + debian/pulseaudio-utils.links: + - Install upstream man pages (LP: #219669, #318660), + - Link to pacat for parec man page (LP: #294628) + + -- Daniel T Chen Thu, 22 Jan 2009 02:57:54 -0500 + +pulseaudio (0.9.14-0ubuntu1) jaunty; urgency=low + + * New upstream release. (LP: #317502, #317613) + * Dropped patches, all in upstream release. + - 0003-make-sure-to-use-64bit-rounding-even-on-32bit-machin.patch + - 0004-properly-remove-dbus-matches-an-filters-when-unloadi.patch + - 0005-Fix-two-typos-that-broke-tunnels.patch + - 0008_regen_autotools.patch + - 0009_shm-arch-indep.patch + - 0010_check_before_using_environment.patch + - 0011_load_restore_before_other_modules.patch + - 0013_dont_hit_assert_issuing_two_rewinds_in_single_iter.patch + - 0014_retry_without_snd-pcm-no-auto-format.patch + - 0015_use_fionread.patch + - 0016_add_pa-source-message-get-latency.patch + - 0017_allow_dev_dsp_w-ok.patch + - 0019_fix_macro_pa-unlikely.patch + - 0020_catch_driver_errors.patch + - 0022_fix_return_val_dump-resample-methods.patch + - 0023_use_gdbm-nolock.patch + - 0024_dont_mix_front-center_into_rear.patch + - 0025_drop_cap-nice_properly.patch + - 0027_handle_multicast_sdp_with_same_ip_ttl_as_rtp.patch + - 0029_add_minor_fixes.patch + - 0030_dont_drop_client_data.patch + - 0031_use_fragsize_for_record_stream_latency.patch + * Bumped shlibs for libpulse0. + * Package libpulsecore8 -> libpulsecore9. + * Add libdbus-glib-1-dev to build-depends. + * Regression fix: + - pulse.conf: Always honour ~/.asoundrc and /etc/asound.conf with highest + priority, thanks to Daniel T Chen. (LP: #295832) + + -- Luke Yelavich Mon, 19 Jan 2009 14:45:36 +1100 + +pulseaudio (0.9.13-2ubuntu7) UNRELEASED; urgency=low + + * Add fixes from 0.9.14: + - 0030_dont_drop_client_data.patch, + - 0031_use_fragsize_for_record_stream_latency.patch, + - 0032_fix_suspend_sinks_sources.patch (LP: #317613) + + -- Daniel T Chen Thu, 15 Jan 2009 17:26:14 -0500 + +pulseaudio (0.9.13-2ubuntu6) jaunty; urgency=low + + * debian/control: Package pulseaudio-module-x11, + Recommends: gnome-audio | ubuntu-sounds. + + -- Luke Yelavich Tue, 13 Jan 2009 16:15:48 +1100 + +pulseaudio (0.9.13-2ubuntu5) jaunty; urgency=low + + [ Daniel T Chen ] + * Add fixes from git: + - 0015_use_fionread.patch, + - 0016_add_pa-source-message-get-latency.patch, + - 0017_allow_dev_dsp_w-ok.patch, + - 0018_fix_return_val_pa-frame-aligned.patch, + - 0019_fix_macro_pa-unlikely.patch, + - 0020_catch_driver_errors.patch (LP: #312373), + - 0021_convert_to_pa-bool-t.patch, + - 0022_fix_return_val_dump-resample-methods.patch, + - 0023_use_gdbm-nolock.patch, + - 0024_dont_mix_front-center_into_rear.patch, + - 0025_drop_cap-nice_properly.patch, + - 0027_handle_multicast_sdp_with_same_ip_ttl_as_rtp.patch, + - 0028_prefer_mixer_controls_with_vols.patch (LP: #281605), + - 0029_add_minor_fixes.patch + * Forward-port workaround from hardy branch for source/sink and + suspend-on-idle race (LP: #203654): + - 0026_work_around_suspend-on-idle_source_sink_race.patch + * debian/control: Drop padevchooser(Recommends) and pavucontrol + (Suggests) completely - functionality has been subsumed by + jaunty's gnome-volume-control. + * debian/pulseaudio.init: + - Make initscript more informative in the default case of per-user + sessions (LP: #259522), + - Make initscript retry (until three-second timeout) if stopping + fails when restarting (LP: #244414), + - LSB {Required-*,Should-*} should specify hal instead of dbus, + since hal is required (and already requires dbus) (LP: #244679) + * Previous upload contains patches to close: + LP: #193491, #268891, #295164, #298301 + + [ Luke Yelavich ] + * 0008_regen_autotools.patch: Pull some libtool 2.2 updates from git, + and regenerate autotools glue. + * debian/rules: Add --enable-static to force creation of libpulse.a, + a side-effect of messing with the autotools files. This shouldn't + be needed for the 0.9.14 release. + + -- Luke Yelavich Fri, 09 Jan 2009 17:05:38 +1100 + +pulseaudio (0.9.13-2ubuntu4) jaunty; urgency=low + + * Demote paprefs to suggests (LP: #309422) + * Add fixes from git: + - 0010_check_before_using_environment.patch, + - 0011_load_restore_before_other_modules.patch, + - 0012_dont_hit_assert_checking_for_idleness.patch, + - 0013_dont_hit_assert_issuing_two_rewinds_in_single_iter.patch, + - 0014_retry_without_snd-pcm-no-auto-format.patch. + + -- Daniel T Chen Sun, 28 Dec 2008 23:43:01 -0500 + +pulseaudio (0.9.13-2ubuntu3) jaunty; urgency=low + + * Add pm-utils sleep hook to suspend (and resume) users' pulseaudio + daemons (LP: #202089). Based on a patch by + Chow Loong Jin . + + -- Daniel T Chen Mon, 08 Dec 2008 22:11:32 -0800 + +pulseaudio (0.9.13-2ubuntu2) jaunty; urgency=low + + * debian/patches/0009_shm-arch-indep.patch: + - Make shm marker architecture independant, taken from git. + + -- Luke Yelavich Mon, 01 Dec 2008 12:06:00 +1100 + +pulseaudio (0.9.13-2ubuntu1) jaunty; urgency=low + + * Merge from Debian experimental, remaining changes: + - Don't build against, and create jack package. Jack is not in main. + - Remove --disable-per-user-esound-socket from configure flags, as we still + want per user esound sockets. + - Remove stop links from rc0 and rc6. + - Change default resample algorithm and bubffer size. + - Add alsa configuration files to route alsa applications via pulseaudio. + - Move libasound2-plugins from Recommends to Depends. + - debian/pulseaudio.preinst: When upgrading from intrepid, remove + /etc/X11/Xsession.d/70pulseaudio, as this was used to minimize a race + condition when starting GNOME in intrepid. This race should not exist in + jaunty once libcanberra is built to use pulseaudio as a backend. + - Do not spawn a pulseaudio server if clients fail to find a running server. + - Regenerate autotools files for ubuntu. + + -- Luke Yelavich Wed, 19 Nov 2008 10:44:03 +1100 + +pulseaudio (0.9.13-2) experimental; urgency=low + + * Rename libpulsecore5 to libpulsecore8 to correctly reflect the soname + (Closes: #503612) + * 0003-make-sure-to-use-64bit-rounding-even-on-32bit-machin.patch + - Fix rounding errors on 32 bit machines. From upstream git + * 0004-properly-remove-dbus-matches-an-filters-when-unloadi.patch + - Properly remove dbus filters when unloading the bluetooth module + * 0005-Fix-two-typos-that-broke-tunnels.patch + - Fix tunnels. From upstream git + + -- Sjoerd Simons Sun, 16 Nov 2008 18:13:05 +0000 + +pulseaudio (0.9.13-1ubuntu3) jaunty; urgency=low + + * Build-depend on libltdl7-dev to make the armel buildd happy. + + -- Matthias Klose Wed, 19 Nov 2008 16:26:45 +0000 + +pulseaudio (0.9.13-1ubuntu2) jaunty; urgency=low + + * Drop libasyncns-dev again. Its in universe, and we will worry about + whether we really need it again later. + + -- Luke Yelavich Tue, 18 Nov 2008 15:47:20 +1100 + +pulseaudio (0.9.13-1ubuntu1) jaunty; urgency=low + + * Merge from Debian unstable, remaining changes: + - Don't build against, and create jack package. Jack is not in main. + - Remove --disable-per-user-esound-socket from configure flags, as we still + want per user esound sockets. + - Remove stop links from rc0 and rc6. + - Change default resample algorithm and bubffer size. + - Add alsa configuration files to route alsa applications via pulseaudio. + - Move libasound2-plugins from Recommends to Depends. + * debian/pulseaudio.preinst: When upgrading from intrepid, remove + /etc/X11/Xsession.d/70pulseaudio, as this was used to minimize a race + condition when starting GNOME in intrepid. This race should not exist in + jaunty once libcanberra is built to use pulseaudio as a backend. + * Do not spawn a pulseaudio server if clients fail to find a running server. + * Remove explicit version dependency for libspeex-dev to allow the package + to be built for now. + * Regenerate autotools files to work with Ubuntu's newer libtool/libltdl. + * debian/control: libpulsecore5 -> libpulsecore8 to match the library + soname. + + -- Luke Yelavich Tue, 04 Nov 2008 15:46:00 +1100 + +pulseaudio (0.9.13-1) experimental; urgency=low + + [ Bas Zoetekouw ] + * debian/control: Build-Depend on libasound2-dev (>= 1.0.17) + * debian/pulseaudio-module-x11.install: No longer install an xdg autostart + file + * debian/pulseaudio.install: Install system.pa config file and various new + pulseaudio modules + * debian/rules: Add --disable-per-user-esound-socket to configure flags + + [ Sjoerd Simons ] + * New Upstream Version + * Fixes FTBTS on GNU/kFreeBSD (Closes: #497624) + * Dropped patches for things that have been fixed upstream: + - 0003-Define-PULSE_INTERNAL.patch + - 0005-Reduce-RT-prio-logging-severity.patch + - 0006-fix-iteration-over-random-devices.patch + * rename 0003-load-module-gconf-earlier.patch to + 0002-load-module-gconf-earlier.patch + * rename 0002-Fix-library-search-path-to-include-lib-and-usr-lib.patch + to 0001-Fix-library-search-path-to-include-lib-and-usr-lib.patch + * rename 0004-load-module-gconf-earlier.patch to + 0003-load-module-gconf-earlier.patch + * 0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch + - Dropped, not necessary anymore, the --disable-per-user-esound-socket + configure flag now has the same result + * debian/control: Add libspeexdsp-dev (>= 1.2~rc1) to Build-Depends + * debian/control: Add Build-Depends on libpolkit-dbus-dev and + libbluetooth-dev + * debian/pulseaudio.install: Install various new modules. Including bluetooth + and polkit, which will move into a separate package later. + * debian/pulseaudio.install: Install the new pulseaudio xdg autostart file + * debian/control: add a depend on consolekit. Might be downgrade to a + recommend later + * debian/control: Set the maintainer to the pkg-pulseaudio mailinglist + * debian/control: Add libgdbm-dev to build-depends + * debian/control: Add intltool to build-depends + + -- Sjoerd Simons Sun, 19 Oct 2008 21:05:13 +0100 + +pulseaudio (0.9.10-3) unstable; urgency=low + + * debian/patches/0006-fix-iteration-over-random-devices.patch + - Added. Iterate over the various random devices if opening fails + (Closes: #491270) + + -- Sjoerd Simons Sat, 30 Aug 2008 14:24:51 +0100 + +pulseaudio (0.9.10-2ubuntu9) intrepid; urgency=low + + * debian/70pulseaudio && debian/pulse-session: Use a wrapper script + to start pulseaudio at the Xsession.d phase of the login process. + The wrapper script is necessary to execute processes that need to + be loaded after pulseaudio, such as the X session manager. This + works around a race condition involving pulseaudio and canberra-gtk-play + and the GNOME login sound. (LP: #274124) + * debian/pulseaudio.preinst: Remove /etc/xdg/autostart/pulseaudio.desktop + if it exists. We don't want pulseaudio started more than once. + + -- Luke Yelavich Mon, 20 Oct 2008 13:26:28 +1100 + +pulseaudio (0.9.10-2ubuntu8) intrepid; urgency=low + + * debian/pulseaudio.desktop: Use a slightly modified version of the + pulseaudio desktop file from more recent versions, and place it in + /etc/xdg/autostart, to start pulseaudio earlier in the GNOME desktop + initialization. This should avoid a race condition between the login + sound being played, and pulseaudio being loaded. (LP: #274124) + + -- Luke Yelavich Fri, 10 Oct 2008 15:22:51 +1100 + +pulseaudio (0.9.10-2ubuntu7) intrepid; urgency=low + + * Fix some errors in the pid file handling patch, thanks to Mandriva. + * debian/pulse.conf: Do not use an absolute path when referring to the + pulse alsa plugin, as this breaks bi-arch configurations. libasound2 + and lib32/64asound2 now include ldconfig files to include the alsa-plugins + path for the architecture in use. + + -- Luke Yelavich Wed, 08 Oct 2008 11:20:17 +1100 + +pulseaudio (0.9.10-2ubuntu6) intrepid; urgency=low + + * debian/pulse-alsa.conf: extend configuration to include "pulse" + definitions for buggy ALSA applications (e.g., Skype). (LP: #258581) + + -- Conn O Griofa Tue, 23 Sep 2008 16:12:19 +0100 + +pulseaudio (0.9.10-2ubuntu5) intrepid; urgency=low + + * debian/control: Bump libasound2-plugins from recommends to depends to be + sure that nobody's audio set up for alsa applications is broken. + + -- Luke Yelavich Tue, 23 Sep 2008 23:07:23 +1000 + +pulseaudio (0.9.10-2ubuntu4) intrepid; urgency=low + + * debian/pulse.conf, debian/pulse-alsa.conf. Asoundrc configuration files + to allow the use of pulseaudio as the default output for applications + using alsa, when pulseaudio is running. + * debian/patches/0015-Change-resampler-and-buffering.patch: Change the + resample method used as well as the buffer size. + * Some patches taken from Mandriva's pulseaudio package. See comments in + patch headers for more details: + - 0007-Perfer-client.conf-over-X11-property-variables.patch + - 0008-Also-link-libpulsecore.la-to-some-libraries-needed.patch + - 0009-Rejig-r2495-slightly-and-directly-compile-the-necess.patch + - 0010-Do-not-invalidate-the-cookie-if-no-file-was-specifie.patch + - 0011-fix-error-path-spotted-by-Coling-Guthrie.patch + - 0012-Change-policykit-policy-to-allow-high-priority-and-d.patch + - 0013-More-robust-pid-file-handling.patch + - 0014-Disable-hotplug-sound-as-it-interferes-with-too-many.patch + + -- Luke Yelavich Tue, 23 Sep 2008 16:02:48 +1000 + +pulseaudio (0.9.10-2ubuntu3) intrepid; urgency=low + + * Remove stop links from rc0 and rc6 (LP: #254254): + - debian/rules: change DEB_UPDATE_RCD_PARAMS to + start 25 2 3 4 5 . stop 15 1 . + + -- Cesare Tirabassi Mon, 04 Aug 2008 19:22:43 +0200 + +pulseaudio (0.9.10-2ubuntu2) intrepid; urgency=low + + * debian/patches/0006-pcspkr-last.patch: Load the PC speaker as a sink + after all other sound card sinks have been loaded. (LP: #242966) + * debian/patches/0007-relibtoolize.patch: Regenerate relevant libtool + bits, because even though libltdl7 is supposed to be API-compatible + with libltdl3, the package FTBFs without regeneration. + + -- Luke Yelavich Tue, 29 Jul 2008 16:07:18 +1000 + +pulseaudio (0.9.10-2ubuntu1) intrepid; urgency=low + + * Merge from Debian unstable. + * Patches + + 0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch: + continue to disable this patch, as we want user sockets to be + the default in the conffile; + - 0050-Reduce-RT-highprio-log-to-info: absorbed into Debian unstable; + - 0051-Reduce-pa_pid_file_create-Daemon-already-running-log-spam: + removed as per discussion with Sjoerd, as it can confuse human + debugging; + * Packaging + + MaintainerField and Vcs munging; + + Don't generate or install the jackd module; + + Use multiuser semantics. + + -- Daniel T Chen Wed, 14 May 2008 15:47:31 -0400 + +pulseaudio (0.9.10-2) unstable; urgency=low + + * debian/patches/0003-Define-PULSE_INTERNAL.patch + - Added. Let the daemon put PULSE_INTERNAL in its environment so things + can detect when called from within pulseaudio + * debian/patches/0004-load-module-gconf-earlier.patch + - Added. Load module-gconf before module-volume-restore and + module-device-restore. Otherwise setting virtual sinks/sources as default + won't be persistent + * debian/patches/0005-Reduce-RT-prio-logging-severity.patch + - Added. Reduce the priority of the RT warnings. Not running with RT + priorities is the default. + + -- Sjoerd Simons Sat, 10 May 2008 22:16:12 +0200 + +pulseaudio (0.9.10-1ubuntu1) hardy; urgency=low + + [ Daniel T Chen ] + * Merge from Debian unstable: + * Patches + + 0050-Reduce-RT-highprio-log-to-info: + + 0051-Reduce-pa_pid_file_create-Daemon-already-running-log-spam: + Retain to prevent innocuous messages from spamming user log; + - 0052-Add-extra-checks-to-padsp-debug-calls: + - 0053-Handle-channel-map-failure: + - 0054-Invoke-pa_ltdl_done-conditionally: + - 0055-fix_record_stream_moved: Merged in new upstream version. + * Packaging + + control: Adhere to DebianMaintainerField spec, and add a + Vcs-Bzr entry; + + control: + + pulseaudio-module-jack.install: Don't generate or install the + jackd module; + + pulseaudio.init: + + rules: Use multiuser semantics. + + [ Luke Yelavich ] + * FFe granted. (LP: #211592) + + -- Luke Yelavich Mon, 07 Apr 2008 10:40:01 +1000 + +pulseaudio (0.9.10-1) unstable; urgency=low + + [ CJ van den Berg ] + * New Upstream Version + * debian/patches: Drop patches merged upstream + - 0002-Double-esound-maximum-sample-size.patch + - 0003-fix-uploading-of-samples-into-PA.-Problem-discovered.patch + - 0004-make-sure-to-create-.pulse-before-using-any-config.patch + - 0005-Don-t-add-protocol-fields-introduced-in-version-12-w.patch + - 0006-Implement-opcodes-added-in-version-12-in-the-tunnel.patch + - 0007-Change-config-to-not-fail-if-loading-of-esd-gconf-o.patch + - 0008-Fix-compilation-on-non-linux-platforms.patch + * debian/patches: Add patch to fix RPATHs. + + 0002-Fix-library-search-path-to-include-lib-and-usr-lib.patch + * debian/control: + + Make libpulsecore5-dbg depend on libpulsecore5, instead of pulseaudio. + + Make libpulse-browse0-dbg depend on libpulse-browse0. + * Update Standards-Version to 3.7.3 (no changes required). + + [ Petter Reinholdtsen ] + * debian/pulseaudio.init: Fix problems with LSB header in init.d script. + (Closes: #470934) + + -- CJ van den Berg Sun, 30 Mar 2008 20:11:02 +0200 + +pulseaudio (0.9.9-1ubuntu4) hardy; urgency=low + + * Patch from Thorvald Natvig to fix protocol error when moving source outputs. + (LP: #194756) + + -- Luke Yelavich Fri, 28 Mar 2008 15:58:55 +1100 + +pulseaudio (0.9.9-1ubuntu3) hardy; urgency=low + + * Patches: + - Apply (new) patch to handle channel mapping failure. From + upstream SVN changeset 2105. (LP: #178442) + - Apply (new) patch to invoke pa_ltdl_done() conditionally. + From upstream SVN changeset 2111. + + -- Daniel T Chen Mon, 18 Feb 2008 18:40:28 -0500 + +pulseaudio (0.9.9-1ubuntu2) hardy; urgency=low + + * Packaging: + - Add versioned dependency on sysv-rc to pulseaudio for LTS->LTS. + Thanks, Steve Langasek (LP: #187469)! + * Patches: + - Apply (new) patch from Mandriva adding checks to debug calls, + preventing crashes, with padsp. + + -- Daniel T Chen Wed, 30 Jan 2008 20:43:29 -0500 + +pulseaudio (0.9.9-1ubuntu1) hardy; urgency=low + + * Merge from Debian unstable, remaining changes: + - Packaging: + + pulseaudio-module-x11 does not recommend an audio theme, + + no jack packages, + + pulseaudio-utils long description clarification, + + multiuser initscript semantics (Teardown spec), + + Vcs-Bzr entry and DebianMaintainerField mangling; + - Patches: + + omit 0001-Set-ESD-socket-to-tmp-.., + + omit socket parameter in 0007-Change-config-.. to apply + cleanly given above 0001-Set-ESD-socket omission, + + lower verboseness of some log messages, + + drop backported CVE-2008-008 fix (already in 0.9.9). + + -- Daniel T Chen Fri, 25 Jan 2008 16:04:34 -0500 + +pulseaudio (0.9.9-1) unstable; urgency=high + + * New Upstream Version. + * Fixes CVE-2008-008: Assert that dropping permissions succeeds. + * Priority high because it fixes a security issue. + + -- Sjoerd Simons Thu, 24 Jan 2008 12:44:55 +0100 + +pulseaudio (0.9.8-2ubuntu3) hardy; urgency=low + + * [SECURITY] Apply (new) patch fixing unchecked setuid() return + values. Patch backported from upstream 0.9.9. + * References: + CVE-2008-0008 + https://bugzilla.novell.com/show_bug.cgi?id=347822 + https://bugzilla.redhat.com/show_bug.cgi?id=425481 + + -- Daniel T Chen Wed, 23 Jan 2008 20:11:25 -0500 + +pulseaudio (0.9.8-2ubuntu2) hardy; urgency=low + + * Apply (new) 0051-Reduce-pa_pid_file_create.. patch that lowers the + "Daemon already running", "pa_pid_file_create() failed", and + "setrlimit(..Operation not permitted" levels to prevent spamming + /var/log/syslog. Normal users not in the pulse-rt group don't need + this level of verbosity, and the "errors" are innocuous given per- + user session invocation. (These changes really close LP #83137 and + duplicates.) + * Thanks to Sjoerd Simons for the insight. + + -- Daniel T Chen Tue, 08 Jan 2008 06:36:42 -0500 + +pulseaudio (0.9.8-2ubuntu1) hardy; urgency=low + + * Merge from Debian unstable, remaining changes: + - Packaging: + + pulseaudio-module-x11 does not recommend an audio theme, + + no jack packages, + + pulseaudio-utils long description clarification, + + multiuser initscript semantics (Teardown spec), + + Vcs-Bzr entry and DebianMaintainerField mangling; + - Patches: + + omit 0001-Set-ESD-socket-to-tmp-.., + + omit socket parameter in 0007-Change-config-.. to apply + cleanly given above 0001-Set-ESD-socket omission, + + apply (new) 0050-Reduce-RT-highprio-log-to-info.patch + (LP: #83137 and duplicates). + + -- Daniel T Chen Fri, 04 Jan 2008 21:46:57 +0000 + +pulseaudio (0.9.8-2) unstable; urgency=low + + * Bump shlibs of libpulse and libpulse-browse. Upstream has started + versioning symbols. + * debian/p.../0005-Don-t-add-protocol-fields-introduced-in-version-12-w.patch + - Added. Don't send fields/opcodes adding in protocol version 12 to + clients using version 11. (Closes: #458556) + * debian/p.../0006-Implement-opcodes-added-in-version-12-in-the-tunnel.patch + - Added. Add dummy implementations of the opcodes added in protocol + version 12. + * debian/patches/0004-Force-module-tunnel-to-use-protocol-version-11.patch + - Removed. Obsoleted by the two previous patches + * debian/p.../0005-make-sure-to-create-.pulse-before-using-any-config.patch + - Renamed to 0004-make-sure-to-create-.pulse-before-using-any-config.patch + * debian/p.../0007-Change-config-to-not-fail-if-loading-of-esd-gconf-o.patch + - Added. Don't fail to load if esd, gconf or x11-publish fail. + (Closes: 456590, #456505) + * debian/patches/0008-Fix-compilation-on-non-linux-platforms.patch + - Added. Fixes compliation on non-linux platforms such as GNU/kFreeBSD. + Thanks to Aurelien Jarno for the patch (Closes: #454197) + + -- Sjoerd Simons Fri, 04 Jan 2008 16:12:27 +0100 + +pulseaudio (0.9.8-1ubuntu3) hardy; urgency=low + + * debian/control: Drop Recommendation of ubuntu-sounds entirely; it's wrong + for derivatives, and theming should be done with seeds and derivative + specific meta packages. + + -- Martin Pitt Mon, 10 Dec 2007 14:37:37 +0100 + +pulseaudio (0.9.8-1ubuntu2) hardy; urgency=low + + * debian/control: Make pulseaudio-module-x11 recommend ubuntu-sounds, + not gnome-audio. + + -- Daniel T Chen Thu, 06 Dec 2007 07:12:07 -0500 + +pulseaudio (0.9.8-1ubuntu1) hardy; urgency=low + + "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. + + -- Daniel T Chen Tue, 04 Dec 2007 00:56:08 +0000 + +pulseaudio (0.9.8-1) unstable; urgency=low + + [ CJ van den Berg ] + * New upstream version. + * debian/overrides/pulseaudio: Remove override for setuid-binary. + * debian/control: + + Change the priority of all -dbg packages to extra. + + Stop recommending libao-pulse. libao2 has built-in pulseaudio support. + + Make pulseaudio conflict libltdl3 < 1.5.24-1 (Closes: #451638) + + Change XS-Vcs-* tags to Vcs-*. + + Add libpulsecore5-dbg package. + + Rename gstreamer plugin package in recommends. + + Add Homepage field. + + Bump libpulsecore so version number to 5. + + Conflict with all pre libpulsecore split packages. + * debian/patches/0002-Fix-pa_readlink-to-put-a-0-in-the-right-location.patch: + - Dropped, merged upstream. + * debian/p..s/0003-Define-__NR_eventfd-on-arm-if-it-wasn-t-defined-yet.patch: + - Dropped, merged upstream. + * debian/patches/0002-Double-esound-maximum-sample-size.patch: + + Added, from Ubuntu. + * debian/p..s/0003-fix-uploading-of-samples-into-PA.-Problem-discovered.patch: + + Added, svn commit r2074 from upstream. + * debian/patches/0004-Force-module-tunnel-to-use-protocol-version-11.patch: + + Added, fixes protocol errors in module-tunnel. + * debian/pa..es/0005-make-sure-to-create-.pulse-before-using-any-config.patch: + + Added, fixes module-volume-restore so that volumes are restored across + daemon restarts. + * debian/pulseaudio.manpages: Add manpages default.pa.5, pulse-client.conf.5 + and pulse-daemon.conf.5 + * debian/pulseaudio-utils.manpages: Add manpages pabrowse.1, pacat.1, + pacmd.1, pactl.1, padsp.1, paplay.1, pasuspender.1 and pax11publish.1 + * debian/pulseaudio.default: Add a description of the preferred method of + running the daemon. + + [Daniel T Chen] + * debian/control: Add lsb-base (>= 3) to pulseaudio's dependencies. + * debian/pulseaudio.init: LSB-ify. + + -- CJ van den Berg Thu, 22 Nov 2007 02:33:51 +0100 + +pulseaudio (0.9.7-3ubuntu2) hardy; urgency=low + + * Disable 0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch. We + do want per-user esd sockets in Ubuntu. This unbreaks multiuser support + and matches the patch that we did to esound for the very same reason: + every user needs its own esd socket path to have them not conflict to each + other. + + -- Martin Pitt Tue, 20 Nov 2007 22:30:35 +0100 + +pulseaudio (0.9.7-3ubuntu1) hardy; urgency=low + + "Hail our new PulseAudio overlords (part one)." + + * Merge from Debian unstable. + * Apply Ubuntu-specific changes: + - debian/control: + + drop libasyncns-dev and libjack0.100.0-dev build-dependencies + since we don't build the jack plugin [yet]; + + add versioned lsb-base dependency to pulseaudio; + + keep pulseaudio installable by demoting some recommended + packages to suggested [retain libasound2-plugins, + libgstreamer-plugins-pulse0.10-0, and + pulseaudio-esound-compat. pulseaudio-module-hal, + pulseaudio-module-x11, libao-pulse, paprefs, and + padevchooser are currently in universe]; + + adhere to DebianMaintainerField spec; + - debian/rules: + + use multiuser instead of defaults in DEB_UPDATE_RCD_PARAMS. + * Drop obsolete Ubuntu-specific change: + - src/pulsecore/protocol-esound.c: applied upstream. + + -- Daniel T Chen Sat, 17 Nov 2007 00:10:48 +0000 + +pulseaudio (0.9.7-3) unstable; urgency=low + + [ CJ van den Berg ] + * debian/control: Add depends on -utils to -module-x11. (Closes: #450840) + + [ Sjoerd Simons ] + * Set pulseaudio setuid in postinst if the permissions aren't overriden by + dpkg-statoverride, instead of having the binary with suid perms in the deb + + -- Sjoerd Simons Fri, 16 Nov 2007 18:41:28 +0100 + +pulseaudio (0.9.7-2) unstable; urgency=low + + * Use pulseaudio (<< 0.9.7) instead of pulseaudio (< 0.9.7) in + -esound-compat + * debian/patches/0002-Fix-pa_readlink-to-put-a-0-in-the-right-location.patch: + + Added. Fix pa_readlink to put a \0 directly after the link string. Fixes + issues with clients using the alsa compatibility layer + * deb/patches/0003-Define-__NR_eventfd-on-arm-if-it-wasn-t-defined-yet.patch: + + Added. Define __NR_eventfd. Fixes FTBS on arm, because libc6-dev does + define SYS_eventfd but older versions of linux-libc-dev don't define + __NR_eventfd yet. + + -- Sjoerd Simons Sun, 04 Nov 2007 13:53:09 +0100 + +pulseaudio (0.9.7-1) unstable; urgency=low + + * New Upstream Version. (Closes: #446026, #436409) + * Drop all patches. All patches are merged upstream. + * debian/control: + + Replace ${Source-Version} with ${binary:Version}. + + Add XS-Vcs-* tags. + + Conflict pulseaudio < 0.9.7 in -esound-compat due to moved manpage. + * debian/rules: + + Add list-missing to catch new modules + + Remove all .la files. + * debian/overrides/pulseaudio: Update libpulsecore so version. + * debian/pulseaudio.install: + + Add new module-default-device-restore.so. + + Add new module-suspend-on-idle.so. + + Add new module-remap-sink.so. + + Add new module-ladspa-sink.so. + - Remove module-oss-mmap.so, removed upstream. + * debian/pulseaudio-module-x11.install: Add new module-x11-xsmp.so. + * debian/pulseaudio-module-zeroconf.install: Add new module-zeroconf- + discover.so. + * debian/pulseaudio-utils.install: Add pasuspender utility. + * debian/pulseaudio-esound-compat.links: Move esd link to pulseaudio- + esound-compat. + * debian/pulseaudio-esound-compat.manpages: Move esdcompat manpage to + pulseaudio-esound-compat. + * debian/libpulse0.shlibs: Add minimum version of 0.9.7 to libpulse0 shlibs. + * debian/patches: + + Added 0001-Set-ESD-socket-to-tmp-.esd-socket-to- match-up-with.patch + + -- CJ van den Berg Wed, 31 Oct 2007 15:31:44 +0100 + +pulseaudio (0.9.6-2) unstable; urgency=low + + * debian/control: + - Add -dbg packages. + - Make libcap-dev and libasound-dev arch specific build deps. + - Add recommends gnome-audio to pulseaudio-module-x11. (Closes: #437393) + - Make pulseaudio-module-zeroconf recommend avahi-daemon. + - Make pulseaudio-utils suggest avahi-daemon. (for pabrowse) + * debian/rules: + - Generate arch specific install files. (Closes: #430366) + - Install init script to start at 25 and stop at 15. (Closes: #428046) + * debian/overrides/pulseaudio: Update libpulsecore override to new + soversion. + * debian/copyright: Update e-mail address for Lennart Poettering. + * debian/patches: Reformat patch series. Add two new patches. + + 0003-Backported-padsp-improvements-from-upstream-trunk.patch + + 0004-New-realtime-safe-and-transport-free-JACK-module.patch + + -- CJ van den Berg Sun, 02 Sep 2007 20:22:19 +0200 + +pulseaudio (0.9.6-1ubuntu2) gutsy; urgency=low + + * fix esound max samplesize again to make sure teh login sound is playable + on networked connections. + + -- Oliver Grawert Thu, 28 Jun 2007 15:31:28 +0200 + +pulseaudio (0.9.6-1ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable, remaining changes: + - debian/control: + + Add lsb-base (>= 3) to pulseaudio's dependencies, + + Adhere to DebianMaintainerField policy, + + Don't build-depend on libjack0.100.0-dev or libasyncns-dev, + - debian/patches/: Remove all Ubuntu-created patches (merged + upstream). + + -- Daniel T Chen Mon, 28 May 2007 22:30:44 +0100 + +pulseaudio (0.9.6-1) unstable; urgency=low + + * New Upstream Version. + + Fix remote DOS vulnerabilities. (CVE-2007-1804) + + Add support for suspended alsa sinks and sources. + + Correct parameter handling in esdcompat. (Closes: #414355) + + Handle ALSA frame size changes. (Closes: #423887) + + Don't unload module-hal-detect if HAL doesn't report any devices. + (Closes: #395893) + * debian/patches: Remove all patches merged upstream. + - 02_ifexists_else_endif.dpatch + - 03_r1352_firefox_workaround.dpatch + - 04_r1373_JavaSound_support.dpatch + - 05_t28_wrong-endian-convert.dpatch + - 06_pulseaudio-0.9.5-suspend.dpatch + * debian/rules: Port to CDBS. + * debian/patches: Rework patch series for quilt. + * debian/control: Add libatomic-ops-dev to Build-Depends. + + -- CJ van den Berg Mon, 28 May 2007 00:53:28 +0200 + +pulseaudio (0.9.5-7ubuntu1) gutsy; urgency=low + + * Merge from Debian unstable, remaining changes: + - debian/control: + + Add lsb-base (>= 3) to pulseaudio's dependencies, + + Adhere to DebianMaintainerField policy, + - debian/patches/: + + Add 10_fix_DoS_vulns.dpatch (pA ticket 67) and + 11_disallow_excessively_high_sampling_rates.dpatch, + + Drop 06_fix_suspend.dpatch in favour of + 06_pulseaudio-0.9.5-suspend.dpatch, + + Retain 07_fix_esdcompat_bashism.dpatch and + 09_fix_esd_max_samplesize.dpatch. + + -- Daniel T Chen Fri, 25 May 2007 01:32:39 -0400 + +pulseaudio (0.9.5-7) unstable; urgency=low + + * debian/control: Make pulseaudio-module-hal depend on hal, not just + libhal. (Closes: #411501) + + -- CJ van den Berg Mon, 19 Feb 2007 22:11:48 +0100 + +pulseaudio (0.9.5-6) unstable; urgency=low + + * debian/patches/06_pulseaudio-0.9.5-suspend.dpatch: + + Added. Handle -ESTRPIPE correctly. Allows pulseaudio to survive suspend + operations on ALSA devices (e.g. s2disk). Thanks to Tobias Diedrich. + (Closes: #406768) + + -- CJ van den Berg Mon, 12 Feb 2007 11:24:50 +0100 + +pulseaudio (0.9.5-5ubuntu4) feisty; urgency=low + + * add 09_fix_esd_max_samplesize.dpatch to make sure the login and logout + gnome sounds can be processed on remote connections. + + -- Oliver Grawert Tue, 6 Mar 2007 14:14:08 +0100 + +pulseaudio (0.9.5-5ubuntu3) feisty; urgency=low + + * debian/control: + - Add lsb-base (>= 3) to pulseaudio's dependencies, + - Adhere to DebianMaintainerField policy, + - Pull in fix from Debian's 0.9.5-7 adding hal to + pulseaudio-module-hal's dependencies, + * debian/pulseaudio.init: LSB-ify. + + -- Daniel T Chen Sun, 25 Feb 2007 02:30:31 -0500 + +pulseaudio (0.9.5-5ubuntu2) feisty; urgency=low + + * added 06_fix_suspend.dpatch from http://pulseaudio.org/ticket/26 + * added 07_fix_esdcompat_bashism.dpatch to avoid esdcompat trying to + shift an empty $1 on POSIX shells + + -- Oliver Grawert Tue, 30 Jan 2007 23:50:57 +0100 + +pulseaudio (0.9.5-5ubuntu1) feisty; urgency=low + + * Merge from Debian unstable, remaining change: + - debian/{control,rules}: Don't use jack or asyncns. + + -- Daniel T Chen Mon, 29 Jan 2007 10:36:35 -0500 + +pulseaudio (0.9.5-5) unstable; urgency=low + + * debian/control: Make Build-deps more specific. (Closes: #401111) + * debian/pulseaudio.init: Make sure files in /var/run/pulse exist before + calling chown and chmod. (Closes: #405869) + + -- CJ van den Berg Mon, 8 Jan 2007 23:02:53 +0100 + +pulseaudio (0.9.5-4ubuntu2) feisty; urgency=low + + * disable libasyncns to fix ftbfs + + -- Oliver Grawert Sat, 20 Jan 2007 11:10:59 +0100 + +pulseaudio (0.9.5-4ubuntu1) feisty; urgency=low + + * merge from debian unstable + * keep jack removal + + -- Oliver Grawert Tue, 28 Nov 2006 19:51:21 +0100 + +pulseaudio (0.9.5-4) unstable; urgency=low + + * Add comment about resampling methods and CPU consumption to + README.Debian (Closes: #391455) + * debian/patches/03_r1352_firefox_workaround.dpatch: + + Added. Fix padsp to work with firefox. Patch created from + SVN revision 1352. + * debian/patches/04_r1373_JavaSound_support.dpatch: + + Added. Fix padsp to work with JavaSound. Patch created from + SVN revision 1373. + * debian/patches/05_t28_wrong-endian-convert.dpatch: + + Added. Add additional sample conversions to sconv.c to support + BE <-> LE network audio. + Patch from http://www.pulseaudio.org/ticket/28 + + -- CJ van den Berg Wed, 18 Oct 2006 23:10:47 +0200 + +pulseaudio (0.9.5-3ubuntu1) feisty; urgency=low + + * indeed remove the jack plugin from debian/control as well + + -- Oliver Grawert Tue, 14 Nov 2006 21:05:29 +0100 + +pulseaudio (0.9.5-3ubuntu0) feisty; urgency=low + + * initial package + * disable jack + * disable asyncns + + -- Oliver Grawert Sun, 12 Nov 2006 20:00:18 +0100 + +pulseaudio (0.9.5-3) unstable; urgency=low + + * Add support for .ifexists configuration directive. + * Make default.pa use ifexists when loading optional modules. + * Recommend instead of Depend on pulseaudio-module-hal. (Closes: #391232) + * Recommend libasound2-plugins instead of -plugins-pulse. (Closes: #391254) + + -- CJ van den Berg Fri, 6 Oct 2006 01:12:05 +0200 + +pulseaudio (0.9.5-2) unstable; urgency=low + + * Add myself to uploaders + * Put libpulse-dev and libpulse0 in the right sections. + + -- Sjoerd Simons Tue, 3 Oct 2006 15:49:12 +0200 + +pulseaudio (0.9.5-1) unstable; urgency=low + + * Initial release (Closes: #378626) + + -- CJ van den Berg Mon, 28 Aug 2006 00:31:10 +0200 + --- pulseaudio-0.99.1.orig/debian/pulseaudio.postinst +++ pulseaudio-0.99.1/debian/pulseaudio.postinst @@ -0,0 +1,45 @@ +#! /bin/sh +# postinst script for pulseaudio + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +PULSEAUDIO=/usr/bin/pulseaudio + +case "$1" in + configure) + if ! getent passwd pulse >/dev/null; then + adduser --disabled-password --quiet --system \ + --home /var/run/pulse --no-create-home\ + --gecos "PulseAudio daemon" --group pulse + adduser --quiet pulse audio + fi + if ! getent group pulse-access >/dev/null; then + addgroup --quiet --system pulse-access + fi + + if dpkg --compare-versions "$2" lt-nl "0.9.14-0ubuntu9"; then + update-rc.d -f pulseaudio remove + fi + ;; + abort-upgrade|abort-remove|abort-deconfigure) + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 --- pulseaudio-0.99.1.orig/debian/pulseaudio.install +++ pulseaudio-0.99.1/debian/pulseaudio.install @@ -0,0 +1,82 @@ +etc/pulse/default.pa +etc/pulse/system.pa +etc/pulse/daemon.conf +etc/dbus-1/system.d/pulseaudio-system.conf +etc/xdg/autostart/pulseaudio.desktop +etc/xdg/autostart/pulseaudio-kde.desktop +usr/bin/pulseaudio +usr/bin/start-pulseaudio-x11 +usr/bin/start-pulseaudio-kde +usr/lib/pulse-*/modules/libalsa-util.so +usr/lib/pulse-*/modules/libcli.so +usr/lib/pulse-*/modules/libprotocol-cli.so +usr/lib/pulse-*/modules/libprotocol-http.so +usr/lib/pulse-*/modules/libprotocol-native.so +usr/lib/pulse-*/modules/libprotocol-simple.so +usr/lib/pulse-*/modules/librtp.so +usr/lib/pulse-*/modules/module-alsa-sink.so +usr/lib/pulse-*/modules/module-alsa-source.so +usr/lib/pulse-*/modules/module-always-sink.so +usr/lib/pulse-*/modules/module-console-kit.so +usr/lib/pulse-*/modules/module-device-restore.so +usr/lib/pulse-*/modules/module-echo-cancel.so +usr/lib/pulse-*/modules/module-stream-restore.so +usr/lib/pulse-*/modules/module-cli-protocol-tcp.so +usr/lib/pulse-*/modules/module-cli-protocol-unix.so +usr/lib/pulse-*/modules/module-cli.so +usr/lib/pulse-*/modules/module-combine.so +usr/lib/pulse-*/modules/module-default-device-restore.so +usr/lib/pulse-*/modules/module-detect.so +usr/lib/pulse-*/modules/module-esound-sink.so +usr/lib/pulse-*/modules/module-http-protocol-tcp.so +usr/lib/pulse-*/modules/module-http-protocol-unix.so +usr/lib/pulse-*/modules/module-intended-roles.so +usr/lib/pulse-*/modules/module-ladspa-sink.so +usr/lib/pulse-*/modules/module-match.so +usr/lib/pulse-*/modules/module-mmkbd-evdev.so +usr/lib/pulse-*/modules/module-native-protocol-fd.so +usr/lib/pulse-*/modules/module-native-protocol-tcp.so +usr/lib/pulse-*/modules/module-native-protocol-unix.so +usr/lib/pulse-*/modules/module-udev-detect.so +usr/lib/pulse-*/modules/module-loopback.so +usr/share/alsa +usr/share/apport +usr/share/lintian/overrides/pulseaudio +usr/lib/pulse-*/modules/module-null-sink.so +usr/lib/pulse-*/modules/module-oss.so +usr/lib/pulse-*/modules/liboss-util.so +usr/lib/pulse-*/modules/module-pipe-sink.so +usr/lib/pulse-*/modules/module-pipe-source.so +usr/lib/pulse-*/modules/module-position-event-sounds.so +usr/lib/pulse-*/modules/module-remap-sink.so +usr/lib/pulse-*/modules/module-rescue-streams.so +usr/lib/pulse-*/modules/module-rtp-recv.so +usr/lib/pulse-*/modules/module-rtp-send.so +usr/lib/pulse-*/modules/module-simple-protocol-tcp.so +usr/lib/pulse-*/modules/module-simple-protocol-unix.so +usr/lib/pulse-*/modules/module-sine.so +usr/lib/pulse-*/modules/module-tunnel-sink.so +usr/lib/pulse-*/modules/module-tunnel-source.so +usr/lib/pulse-*/modules/module-suspend-on-idle.so +usr/lib/pulse-*/modules/module-volume-restore.so +usr/lib/pulse-*/modules/module-alsa-card.so +usr/lib/pulse-*/modules/module-augment-properties.so +usr/lib/pulse-*/modules/module-card-restore.so +usr/lib/pulse-*/modules/module-cork-music-on-phone.so +usr/lib/pulse-*/modules/module-sine-source.so +usr/lib/pulse-*/modules/module-rygel-media-server.so +usr/lib/pulse-*/modules/module-device-manager.so +usr/lib/pulse-*/modules/module-combine-sink.so +usr/lib/pulse-*/modules/module-dbus-protocol.so +usr/lib/pulse-*/modules/module-filter-apply.so +usr/lib/pulse-*/modules/module-filter-heuristics.so +usr/lib/pulse-*/modules/module-null-source.so +usr/lib/pulse-*/modules/module-switch-on-connect.so +usr/lib/pulse-*/modules/module-virtual-sink.so +usr/lib/pulse-*/modules/module-virtual-source.so +lib/udev/rules.d/90-pulseaudio.rules +usr/share/locale +usr/share/pulseaudio +usr/lib/*/libpulsecore-*.so usr/lib +usr/lib/pm-utils/sleep.d/01PulseAudio +usr/share/man/man5/default.pa.5 --- pulseaudio-0.99.1.orig/debian/pulseaudio.manpages +++ pulseaudio-0.99.1/debian/pulseaudio.manpages @@ -0,0 +1,5 @@ +debian/tmp/usr/share/man/man1/pulseaudio.1 +debian/tmp/usr/share/man/man5/pulse-client.conf.5 +debian/tmp/usr/share/man/man5/pulse-daemon.conf.5 +debian/tmp/usr/share/man/man1/start-pulseaudio-kde.1 +debian/tmp/usr/share/man/man1/start-pulseaudio-x11.1 --- pulseaudio-0.99.1.orig/debian/pulseaudio.init +++ pulseaudio-0.99.1/debian/pulseaudio.init @@ -0,0 +1,83 @@ +#!/bin/sh -e +### BEGIN INIT INFO +# Provides: pulseaudio esound +# Required-Start: $remote_fs $syslog +# Required-Stop: $remote_fs $syslog +# Should-Start: udev NetworkManager +# Should-Stop: udev NetworkManager +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Start the PulseAudio sound server +# Description: System mode startup script for +# the PulseAudio sound server. +### END INIT INFO + +DAEMON=/usr/bin/pulseaudio +PIDDIR=/var/run/pulse +PIDFILE=$PIDDIR/pid +DAEMONUSER=pulse +PATH=/sbin:/bin:/usr/sbin:/usr/bin + +test -x $DAEMON || exit 0 + +. /lib/lsb/init-functions + +PULSEAUDIO_SYSTEM_START=0 +DISALLOW_MODULE_LOADING=1 +test -f /etc/default/pulseaudio && . /etc/default/pulseaudio +if [ "$PULSEAUDIO_SYSTEM_START" != "1" ]; then + log_warning_msg "PulseAudio configured for per-user sessions" + exit 0 +fi + +pulseaudio_start () { + log_daemon_msg "Starting system PulseAudio Daemon" + if [ ! -d $PIDDIR ]; then + mkdir -p $PIDDIR + chown $DAEMONUSER:$DAEMONUSER $PIDDIR + fi + start-stop-daemon -x $DAEMON -p $PIDFILE --start -- --system --daemonize --high-priority --log-target=syslog --disallow-module-loading=$DISALLOW_MODULE_LOADING + status=$? + if [ -e /var/run/pulse/.esd_auth ]; then + chown pulse:pulse-access /var/run/pulse/.esd_auth + chmod 640 /var/run/pulse/.esd_auth + fi + if [ -e /var/run/pulse/.pulse-cookie ]; then + chown pulse:pulse-access /var/run/pulse/.pulse-cookie + chmod 640 /var/run/pulse/.pulse-cookie + fi + log_end_msg ${status} +} + +pulseaudio_stop () { + log_daemon_msg "Stopping system PulseAudio Daemon" + start-stop-daemon -p $PIDFILE --stop --retry 5 || echo -n "...which is not running" + log_end_msg $? +} + +case "$1" in + start|stop) + pulseaudio_${1} + ;; + restart|reload|force-reload) + if [ -s $PIDFILE ] && kill -0 $(cat $PIDFILE) >/dev/null 2>&1; then + pulseaudio_stop + pulseaudio_start + fi + ;; + force-stop) + pulseaudio_stop + killall pulseaudio || true + sleep 2 + killall -9 pulseaudio || true + ;; + status) + status_of_proc -p $PIDFILE "$DAEMON" "system-wide PulseAudio" && exit 0 || exit $? + ;; + *) + echo "Usage: /etc/init.d/pulseaudio {start|stop|force-stop|restart|reload|force-reload|status}" + exit 1 + ;; +esac + +exit 0 --- pulseaudio-0.99.1.orig/debian/shlibs.local +++ pulseaudio-0.99.1/debian/shlibs.local @@ -0,0 +1 @@ +libpulsecore 0 pulseaudio (= ${binary:Version}) --- pulseaudio-0.99.1.orig/debian/pulseaudio-dev.install +++ pulseaudio-0.99.1/debian/pulseaudio-dev.install @@ -0,0 +1,2 @@ +usr/lib/*/libpulsecore.so usr/lib +usr/include/pulsecore/* --- pulseaudio-0.99.1.orig/debian/pulseaudio-module-raop.install +++ pulseaudio-0.99.1/debian/pulseaudio-module-raop.install @@ -0,0 +1 @@ +usr/lib/pulse-*/modules/*raop* --- pulseaudio-0.99.1.orig/debian/pulseaudio-esound-compat.links +++ pulseaudio-0.99.1/debian/pulseaudio-esound-compat.links @@ -0,0 +1 @@ +usr/bin/esdcompat usr/bin/esd --- pulseaudio-0.99.1.orig/debian/pulseaudio-module-zeroconf.install +++ pulseaudio-0.99.1/debian/pulseaudio-module-zeroconf.install @@ -0,0 +1,3 @@ +usr/lib/pulse-*/modules/libavahi-wrap.so +usr/lib/pulse-*/modules/module-zeroconf-discover.so +usr/lib/pulse-*/modules/module-zeroconf-publish.so --- pulseaudio-0.99.1.orig/debian/pulseaudio.preinst +++ pulseaudio-0.99.1/debian/pulseaudio.preinst @@ -0,0 +1,27 @@ +#!/bin/sh + +case "$1" in + install|upgrade) + if dpkg --compare-versions "$2" lt "1:0.9.16~test1-0ubuntu1~ppa2"; then + if getent group pulse-rt > /dev/null ; then + delgroup --quiet --system pulse-rt > /dev/null || true + fi + fi + + if dpkg --compare-versions "$2" lt "1:0.9.21-0ubuntu1"; then + if [ -f /etc/X11/Xsession.d/70pulseaudio ]; then + rm /etc/X11/Xsession.d/70pulseaudio + fi + fi + ;; + abort-upgrade) + ;; + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 --- pulseaudio-0.99.1.orig/debian/pulseaudio.default +++ pulseaudio-0.99.1/debian/pulseaudio.default @@ -0,0 +1,22 @@ +# Start the PulseAudio sound server in system mode. +# (enables the pulseaudio init script - requires that users be in the +# pulse-access group) +# System mode is not the recommended way to run PulseAudio as it has some +# limitations (such as no shared memory access) and could potentially allow +# users to disconnect or redirect each others' audio streams. The +# recommended way to run PulseAudio is as a per-session daemon. For GNOME/KDE/ +# Xfce sessions in Ubuntu Lucid/10.04, /etc/xdg/autostart/pulseaudio.desktop +# handles this function of automatically starting PulseAudio on login, and for +# it to work correctly your user must *not* have "autospawn = no" set in +# ~/.pulse/client.conf (or in /etc/pulse/client.conf). By default, autospawn +# is enabled. For other sessions, you can simply start PulseAudio with +# "pulseaudio --daemonize". +# 0 = don't start in system mode, 1 = start in system mode +PULSEAUDIO_SYSTEM_START=0 + +# Prevent users from dynamically loading modules into the PulseAudio sound +# server. Dynamic module loading enhances the flexibility of the PulseAudio +# system, but may pose a security risk. +# 0 = no, 1 = yes +DISALLOW_MODULE_LOADING=1 + --- pulseaudio-0.99.1.orig/debian/control +++ pulseaudio-0.99.1/debian/control @@ -0,0 +1,386 @@ +Source: pulseaudio +Section: sound +Priority: optional +Maintainer: Ubuntu Core Developers +XSBC-Original-Maintainer: Pulseaudio maintenance team +Uploaders: CJ van den Berg , Sjoerd Simons +Build-Depends: debhelper (>= 8.1.3), cdbs (>= 0.4.93), quilt, m4, libltdl-dev, + libsamplerate0-dev, libsndfile1-dev (>= 1.0.20), libglib2.0-dev, + libasound2-dev (>= 1.0.19) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], + libavahi-client-dev, libjack-dev, libwrap0-dev,, libasyncns-dev, + liblircclient-dev, libgconf2-dev, libatomic-ops-dev, libspeexdsp-dev (>= 1.2~rc1), + libbluetooth-dev (>= 3.0) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], + tdb-dev, intltool, libgtk2.0-dev, libxtst-dev, libssl-dev, libudev-dev (>= 143), + libice-dev, libxi-dev, x11proto-core-dev, libxcb-atom1-dev, libx11-xcb-dev, + automake, autoconf, libtool, libjson0-dev, dh-autoreconf +Standards-Version: 3.8.1 +XS-Debian-Vcs-Git: git://git.debian.org/git/pkg-pulseaudio/pulseaudio.git +XS-Debian-Vcs-Browser: http://git.debian.org/?p=pkg-pulseaudio/pulseaudio.git +Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-audio-dev/pulseaudio/ubuntu.oneiric +Homepage: http://www.pulseaudio.org + +Package: pulseaudio +Architecture: any +Multi-Arch: foreign +Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, + lsb-base (>= 3), consolekit, libasound2-plugins, pulseaudio-utils +Conflicts: libltdl3 (<< 1.5.24-1), pulseaudio-module-udev (<< ${binary:Version}), + pulseaudio-module-rygel-media-server (<< ${binary:Version}) +Replaces: pulseaudio-module-hal, pulseaudio-module-udev (<< ${binary:Version}), + pulseaudio-module-rygel-media-server (<< ${binary:Version}), + libpulse-browse0 (<< ${binary:Version}) +Provides: pulseaudio-module-hal, pulseaudio-module-udev, + pulseaudio-module-rygel-media-server +Recommends: pulseaudio-module-x11, gstreamer0.10-pulseaudio, pulseaudio-esound-compat, rtkit +Suggests: pavumeter, paman, paprefs, pulseaudio-module-raop +Description: PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + These are some of PulseAudio's features: + . + * High quality software mixing of multiple audio streams with support for + more than one sink/source. May be used to combine multiple sound cards + into one (with sample rate adjustment). + . + * Wide range of supported client libraries. ESD, ALSA, oss, libao and + GStreamer client applications are supported as-is. Native PulseAudio + plug-ins are also available for xmms and mplayer. + . + * Good low latency behaviour and very accurate latency measurement for + playback and recording. Ability to fully synchronize multiple playback + streams. + . + * Network transparency, allowing an application to play back or record + audio on a different machine than the one it is running on. + . + * Extensible plug-in architecture with plug-ins for jackd, multicast-rtp + lirc and avahi, just to name a few. + . + This package contains the daemon and basic module set. + +Package: pulseaudio-dbg +Architecture: any +Priority: extra +Section: debug +Depends: ${misc:Depends}, pulseaudio (= ${binary:Version}) +Replaces: pulseaudio-module-hal-dbg, pulseaudio-module-udev-dbg (<< ${binary:Version}), pulseaudio-module-rygel-media-server-dbg (<< ${binary:Version}) +Description: PulseAudio sound server detached debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains the detached debugging symbols for the daemon and + basic module set. + +Package: pulseaudio-utils +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: avahi-daemon +Description: Command line tools for the PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + These tools provide command line access to various features of the + PulseAudio sound server. Included tools are: + . + paplay - Playback a WAV file via a PulseAudio sink. + pacat - Cat raw audio data to a PulseAudio sink. + parec - Cat raw audio data from a PulseAudio source. + pacmd - Connect to PulseAudio's built-in command line control interface. + pactl - Send a control command to a PulseAudio server. + padsp - /dev/dsp wrapper to transparently support OSS applications. + pax11publish - Store/retrieve PulseAudio default server/sink/source + settings in the X11 root window. + +Package: pulseaudio-utils-dbg +Architecture: any +Priority: extra +Section: debug +Depends: ${misc:Depends}, pulseaudio-utils (= ${binary:Version}) +Description: PulseAudio command line tools detached debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains detached debugging symbols for the command line tools. + +Package: pulseaudio-esound-compat +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: esound, pulseaudio (<< 0.9.7) +Replaces: esound +Provides: esound +Description: PulseAudio ESD compatibility layer + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains the ESD compatibility components used by some + older versions of complete desktop environments, e.g., GNOME, and + many useful applications. It enables a PulseAudio sound server to + fully replace ESD. + +Package: pulseaudio-esound-compat-dbg +Architecture: any +Priority: extra +Section: debug +Depends: ${misc:Depends}, pulseaudio-esound-compat (= ${binary:Version}) +Description: PulseAudio ESD compatibility layer debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains debugging symbols for the ESD compatibility components. + +Package: pulseaudio-module-zeroconf +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, avahi-daemon +Description: Zeroconf module for PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This module enables PulseAudio to publish available sinks and sources via + zeroconf (aka. Avahi, mdns). + . + The module is called module-zeroconf-publish. + +Package: pulseaudio-module-zeroconf-dbg +Architecture: any +Priority: extra +Section: debug +Depends: ${misc:Depends}, pulseaudio-module-zeroconf (= ${binary:Version}) +Description: Zeroconf module for PulseAudio sound server debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains detached debugging symbols for the zeroconf module. + +Package: pulseaudio-module-jack +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: jackd modules for PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + These modules enables PulseAudio to connect to a jackd daemon. + . + The modules are called module-jack-sink, module-jack-source. + +Package: pulseaudio-module-jack-dbg +Architecture: any +Priority: extra +Section: debug +Depends: ${misc:Depends}, pulseaudio-module-jack (= ${binary:Version}) +Description: jackd modules for PulseAudio sound server debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains debugging symbols for the PulseAudio jack modules. + +Package: pulseaudio-module-lirc +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: lirc module for PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This module enables the volume of a PulseAudio sink to be controlled when + buttons of an infrared remote control are pressed (through LIRC). + . + The module is called module-lirc. + +Package: pulseaudio-module-lirc-dbg +Architecture: any +Priority: extra +Section: debug +Depends: ${misc:Depends}, pulseaudio-module-lirc (= ${binary:Version}) +Description: lirc module for PulseAudio sound server debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains debugging symbols for the PulseAudio lirc module. + +Package: pulseaudio-module-gconf +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: GConf module for PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This module enables PulseAudio to store additional configuration in GConf. + . + The module is called module-gconf. + +Package: pulseaudio-module-gconf-dbg +Architecture: any +Priority: extra +Section: debug +Depends: ${misc:Depends}, pulseaudio-module-gconf (= ${binary:Version}) +Description: GConf module for PulseAudio sound server debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains debugging symbols for the PulseAudio GConf module. + +Package: pulseaudio-module-raop +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, pulseaudio-module-zeroconf +Description: RAOP module for PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This module enables PulseAudio to stream audio to an Apple Airport Express. + +Package: pulseaudio-module-raop-dbg +Architecture: any +Priority: extra +Section: debug +Depends: ${shlibs:Depends}, ${misc:Depends}, + pulseaudio-module-raop (= ${binary:Version}) +Description: RAOP module for PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains debugging symbols for the PulseAudio RAOP module. + +Package: pulseaudio-module-bluetooth +Architecture: alpha amd64 arm armel hppa i386 ia64 mips mipsel powerpc s390 sparc +Priority: extra +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: pulseaudio (<< 0.9.14-2) +Description: Bluetooth module for PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This module enables PulseAudio to work with bluetooth devices, like headset + or audio gateway. + . + The module is called module-bluetooth + +Package: pulseaudio-module-bluetooth-dbg +Architecture: alpha amd64 arm armel hppa i386 ia64 mips mipsel powerpc s390 sparc +Priority: extra +Section: debug +Depends: ${misc:Depends}, pulseaudio-module-bluetooth (= ${binary:Version}) +Description: Bluetooth module for PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains debugging symbols for the PulseAudio bluetooth module. + +Package: pulseaudio-module-x11 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, pulseaudio-utils +Description: X11 module for PulseAudio sound server + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This module enables PulseAudio to publish itself as the default sound + server to the X11 root window automatically upon startup. There is also a + module to playback a sound file in place of the X11 bell beep. + . + The modules are called module-x11-publish and module-x11-bell. + +Package: pulseaudio-module-x11-dbg +Architecture: any +Priority: extra +Section: debug +Depends: ${misc:Depends}, pulseaudio-module-x11 (= ${binary:Version}) +Description: X11 module for PulseAudio sound server debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains debugging symbols for the PulseAudio X11 modules. + +Package: libpulse0 +Section: libs +Architecture: any +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends} +Depends: ${shlibs:Depends}, ${misc:Depends} +Breaks: pavucontrol (<< 0.9.8) +Suggests: pulseaudio +Description: PulseAudio client libraries + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + Client libraries used by applications that access a PulseAudio sound server + via PulseAudio's native interface. + +Package: libpulse0-dbg +Section: debug +Architecture: any +Multi-Arch: same +Priority: extra +Depends: ${misc:Depends}, libpulse0 (= ${binary:Version}) +Description: PulseAudio client libraries detached debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains detached debugging symbols for the PulseAudio native + interface client libraries. + +Package: libpulse-mainloop-glib0 +Architecture: any +Multi-Arch: same +Pre-Depends: ${misc:Pre-Depends} +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: PulseAudio client libraries (glib support) + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + Client libraries used by applications that access a PulseAudio sound server + via PulseAudio's native interface. + . + This package adds support for glib2 client applications. + +Package: libpulse-mainloop-glib0-dbg +Section: debug +Architecture: any +Multi-Arch: same +Priority: extra +Depends: ${misc:Depends}, libpulse-mainloop-glib0 (= ${binary:Version}) +Description: PulseAudio client libraries (glib support) debugging symbols + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + This package contains detached debugging symbols for the PulseAudio native + interface glib support client libraries. + +Package: libpulse-dev +Section: libdevel +Architecture: any +Multi-Arch: same +Depends: ${misc:Depends}, + libpulse0 (= ${binary:Version}), + libpulse-mainloop-glib0 (= ${binary:Version}), + libglib2.0-dev, + libavahi-client-dev +Description: PulseAudio client development headers and libraries + PulseAudio, previously known as Polypaudio, is a sound server for POSIX and + WIN32 systems. It is a drop in replacement for the ESD sound server with + much better latency, mixing/re-sampling quality and overall architecture. + . + Headers and libraries for developing applications that access a PulseAudio + sound server via PulseAudio's native interface. --- pulseaudio-0.99.1.orig/debian/apport-hook.py +++ pulseaudio-0.99.1/debian/apport-hook.py @@ -0,0 +1,15 @@ +'''apport package hook for pulseaudio + +(c) 2009 Canonical Ltd. +Author: +Matt Zimmerman + +''' + +from apport.hookutils import * +import re + +def add_info(report): + attach_alsa(report) + recent_syslog(re.compile(r'pulseaudio\[')) + attach_conffiles(report, 'pulseaudio') --- pulseaudio-0.99.1.orig/debian/pulseaudio-esound-compat.install +++ pulseaudio-0.99.1/debian/pulseaudio-esound-compat.install @@ -0,0 +1,6 @@ +usr/bin/esdcompat +usr/lib/pulse-*/modules/libprotocol-esound.so +usr/lib/pulse-*/modules/module-esound-compat-spawnfd.so +usr/lib/pulse-*/modules/module-esound-compat-spawnpid.so +usr/lib/pulse-*/modules/module-esound-protocol-tcp.so +usr/lib/pulse-*/modules/module-esound-protocol-unix.so --- pulseaudio-0.99.1.orig/debian/pulseaudio-module-x11.install +++ pulseaudio-0.99.1/debian/pulseaudio-module-x11.install @@ -0,0 +1,2 @@ +usr/lib/pulse-*/modules/module-x11*.so +usr/share/lintian/overrides/pulseaudio-module-x11 --- pulseaudio-0.99.1.orig/debian/pulseaudio-module-gconf.install +++ pulseaudio-0.99.1/debian/pulseaudio-module-gconf.install @@ -0,0 +1,2 @@ +usr/lib/pulseaudio/pulse/gconf-helper +usr/lib/pulse-*/modules/module-gconf.so --- pulseaudio-0.99.1.orig/debian/libpulse-mainloop-glib0.install +++ pulseaudio-0.99.1/debian/libpulse-mainloop-glib0.install @@ -0,0 +1 @@ +usr/lib/*/libpulse-mainloop-glib.so.* --- pulseaudio-0.99.1.orig/debian/compat +++ pulseaudio-0.99.1/debian/compat @@ -0,0 +1 @@ +5 --- pulseaudio-0.99.1.orig/debian/libpulse-mainloop-glib0.symbols +++ pulseaudio-0.99.1/debian/libpulse-mainloop-glib0.symbols @@ -0,0 +1,1629 @@ +libpulse-mainloop-glib.so.0 libpulse-glib-mainloop0 #MINVER# + PULSE_0@PULSE_0 1:0.99.1 + pa_glib_mainloop_free@PULSE_0 1:0.99.1 + pa_glib_mainloop_get_api@PULSE_0 1:0.99.1 + pa_glib_mainloop_new@PULSE_0 1:0.99.1 +libpulse-simple.so.0 libpulse-glib-mainloop0 #MINVER# + PULSE_0@PULSE_0 1:0.99.1 + pa_simple_drain@PULSE_0 1:0.99.1 + pa_simple_flush@PULSE_0 1:0.99.1 + pa_simple_free@PULSE_0 1:0.99.1 + pa_simple_get_latency@PULSE_0 1:0.99.1 + pa_simple_new@PULSE_0 1:0.99.1 + pa_simple_read@PULSE_0 1:0.99.1 + pa_simple_write@PULSE_0 1:0.99.1 +libpulse.so.0 libpulse-glib-mainloop0 #MINVER# + PULSE_0@PULSE_0 1:0.99.1 + pa_ascii_filter@PULSE_0 1:0.99.1 + pa_ascii_valid@PULSE_0 1:0.99.1 + pa_bytes_per_second@PULSE_0 1:0.99.1 + pa_bytes_snprint@PULSE_0 1:0.99.1 + pa_bytes_to_usec@PULSE_0 1:0.99.1 + pa_channel_map_can_balance@PULSE_0 1:0.99.1 + pa_channel_map_can_fade@PULSE_0 1:0.99.1 + pa_channel_map_compatible@PULSE_0 1:0.99.1 + pa_channel_map_equal@PULSE_0 1:0.99.1 + pa_channel_map_has_position@PULSE_0 1:0.99.1 + pa_channel_map_init@PULSE_0 1:0.99.1 + pa_channel_map_init_auto@PULSE_0 1:0.99.1 + pa_channel_map_init_extend@PULSE_0 1:0.99.1 + pa_channel_map_init_mono@PULSE_0 1:0.99.1 + pa_channel_map_init_stereo@PULSE_0 1:0.99.1 + pa_channel_map_mask@PULSE_0 1:0.99.1 + pa_channel_map_parse@PULSE_0 1:0.99.1 + pa_channel_map_snprint@PULSE_0 1:0.99.1 + pa_channel_map_superset@PULSE_0 1:0.99.1 + pa_channel_map_to_name@PULSE_0 1:0.99.1 + pa_channel_map_to_pretty_name@PULSE_0 1:0.99.1 + pa_channel_map_valid@PULSE_0 1:0.99.1 + pa_channel_position_from_string@PULSE_0 1:0.99.1 + pa_channel_position_to_pretty_string@PULSE_0 1:0.99.1 + pa_channel_position_to_string@PULSE_0 1:0.99.1 + pa_context_add_autoload@PULSE_0 1:0.99.1 + pa_context_connect@PULSE_0 1:0.99.1 + pa_context_disconnect@PULSE_0 1:0.99.1 + pa_context_drain@PULSE_0 1:0.99.1 + pa_context_errno@PULSE_0 1:0.99.1 + pa_context_exit_daemon@PULSE_0 1:0.99.1 + pa_context_get_autoload_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_autoload_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_autoload_info_list@PULSE_0 1:0.99.1 + pa_context_get_card_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_card_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_card_info_list@PULSE_0 1:0.99.1 + pa_context_get_client_info@PULSE_0 1:0.99.1 + pa_context_get_client_info_list@PULSE_0 1:0.99.1 + pa_context_get_index@PULSE_0 1:0.99.1 + pa_context_get_module_info@PULSE_0 1:0.99.1 + pa_context_get_module_info_list@PULSE_0 1:0.99.1 + pa_context_get_protocol_version@PULSE_0 1:0.99.1 + pa_context_get_sample_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_sample_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_sample_info_list@PULSE_0 1:0.99.1 + pa_context_get_server@PULSE_0 1:0.99.1 + pa_context_get_server_info@PULSE_0 1:0.99.1 + pa_context_get_server_protocol_version@PULSE_0 1:0.99.1 + pa_context_get_sink_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_sink_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_sink_info_list@PULSE_0 1:0.99.1 + pa_context_get_sink_input_info@PULSE_0 1:0.99.1 + pa_context_get_sink_input_info_list@PULSE_0 1:0.99.1 + pa_context_get_source_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_source_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_source_info_list@PULSE_0 1:0.99.1 + pa_context_get_source_output_info@PULSE_0 1:0.99.1 + pa_context_get_source_output_info_list@PULSE_0 1:0.99.1 + pa_context_get_state@PULSE_0 1:0.99.1 + pa_context_get_tile_size@PULSE_0 1:0.99.1 + pa_context_is_local@PULSE_0 1:0.99.1 + pa_context_is_pending@PULSE_0 1:0.99.1 + pa_context_kill_client@PULSE_0 1:0.99.1 + pa_context_kill_sink_input@PULSE_0 1:0.99.1 + pa_context_kill_source_output@PULSE_0 1:0.99.1 + pa_context_load_module@PULSE_0 1:0.99.1 + pa_context_move_sink_input_by_index@PULSE_0 1:0.99.1 + pa_context_move_sink_input_by_name@PULSE_0 1:0.99.1 + pa_context_move_source_output_by_index@PULSE_0 1:0.99.1 + pa_context_move_source_output_by_name@PULSE_0 1:0.99.1 + pa_context_new@PULSE_0 1:0.99.1 + pa_context_new_with_proplist@PULSE_0 1:0.99.1 + pa_context_play_sample@PULSE_0 1:0.99.1 + pa_context_play_sample_with_proplist@PULSE_0 1:0.99.1 + pa_context_proplist_remove@PULSE_0 1:0.99.1 + pa_context_proplist_update@PULSE_0 1:0.99.1 + pa_context_ref@PULSE_0 1:0.99.1 + pa_context_remove_autoload_by_index@PULSE_0 1:0.99.1 + pa_context_remove_autoload_by_name@PULSE_0 1:0.99.1 + pa_context_remove_sample@PULSE_0 1:0.99.1 + pa_context_rttime_new@PULSE_0 1:0.99.1 + pa_context_rttime_restart@PULSE_0 1:0.99.1 + pa_context_set_card_profile_by_index@PULSE_0 1:0.99.1 + pa_context_set_card_profile_by_name@PULSE_0 1:0.99.1 + pa_context_set_default_sink@PULSE_0 1:0.99.1 + pa_context_set_default_source@PULSE_0 1:0.99.1 + pa_context_set_event_callback@PULSE_0 1:0.99.1 + pa_context_set_name@PULSE_0 1:0.99.1 + pa_context_set_sink_input_mute@PULSE_0 1:0.99.1 + pa_context_set_sink_input_volume@PULSE_0 1:0.99.1 + pa_context_set_sink_mute_by_index@PULSE_0 1:0.99.1 + pa_context_set_sink_mute_by_name@PULSE_0 1:0.99.1 + pa_context_set_sink_port_by_index@PULSE_0 1:0.99.1 + pa_context_set_sink_port_by_name@PULSE_0 1:0.99.1 + pa_context_set_sink_volume_by_index@PULSE_0 1:0.99.1 + pa_context_set_sink_volume_by_name@PULSE_0 1:0.99.1 + pa_context_set_source_mute_by_index@PULSE_0 1:0.99.1 + pa_context_set_source_mute_by_name@PULSE_0 1:0.99.1 + pa_context_set_source_output_mute@PULSE_0 1:0.99.1 + pa_context_set_source_output_volume@PULSE_0 1:0.99.1 + pa_context_set_source_port_by_index@PULSE_0 1:0.99.1 + pa_context_set_source_port_by_name@PULSE_0 1:0.99.1 + pa_context_set_source_volume_by_index@PULSE_0 1:0.99.1 + pa_context_set_source_volume_by_name@PULSE_0 1:0.99.1 + pa_context_set_state_callback@PULSE_0 1:0.99.1 + pa_context_set_subscribe_callback@PULSE_0 1:0.99.1 + pa_context_stat@PULSE_0 1:0.99.1 + pa_context_subscribe@PULSE_0 1:0.99.1 + pa_context_suspend_sink_by_index@PULSE_0 1:0.99.1 + pa_context_suspend_sink_by_name@PULSE_0 1:0.99.1 + pa_context_suspend_source_by_index@PULSE_0 1:0.99.1 + pa_context_suspend_source_by_name@PULSE_0 1:0.99.1 + pa_context_unload_module@PULSE_0 1:0.99.1 + pa_context_unref@PULSE_0 1:0.99.1 + pa_cvolume_avg@PULSE_0 1:0.99.1 + pa_cvolume_avg_mask@PULSE_0 1:0.99.1 + pa_cvolume_channels_equal_to@PULSE_0 1:0.99.1 + pa_cvolume_compatible@PULSE_0 1:0.99.1 + pa_cvolume_compatible_with_channel_map@PULSE_0 1:0.99.1 + pa_cvolume_dec@PULSE_0 1:0.99.1 + pa_cvolume_equal@PULSE_0 1:0.99.1 + pa_cvolume_get_balance@PULSE_0 1:0.99.1 + pa_cvolume_get_fade@PULSE_0 1:0.99.1 + pa_cvolume_get_position@PULSE_0 1:0.99.1 + pa_cvolume_inc@PULSE_0 1:0.99.1 + pa_cvolume_inc_clamp@PULSE_0 1:0.99.1 + pa_cvolume_init@PULSE_0 1:0.99.1 + pa_cvolume_max@PULSE_0 1:0.99.1 + pa_cvolume_max_mask@PULSE_0 1:0.99.1 + pa_cvolume_merge@PULSE_0 1:0.99.1 + pa_cvolume_min@PULSE_0 1:0.99.1 + pa_cvolume_min_mask@PULSE_0 1:0.99.1 + pa_cvolume_remap@PULSE_0 1:0.99.1 + pa_cvolume_scale@PULSE_0 1:0.99.1 + pa_cvolume_scale_mask@PULSE_0 1:0.99.1 + pa_cvolume_set@PULSE_0 1:0.99.1 + pa_cvolume_set_balance@PULSE_0 1:0.99.1 + pa_cvolume_set_fade@PULSE_0 1:0.99.1 + pa_cvolume_set_position@PULSE_0 1:0.99.1 + pa_cvolume_snprint@PULSE_0 1:0.99.1 + pa_cvolume_valid@PULSE_0 1:0.99.1 + pa_ext_device_manager_delete@PULSE_0 1:0.99.1 + pa_ext_device_manager_enable_role_device_priority_routing@PULSE_0 1:0.99.1 + pa_ext_device_manager_read@PULSE_0 1:0.99.1 + pa_ext_device_manager_reorder_devices_for_role@PULSE_0 1:0.99.1 + pa_ext_device_manager_set_device_description@PULSE_0 1:0.99.1 + pa_ext_device_manager_set_subscribe_cb@PULSE_0 1:0.99.1 + pa_ext_device_manager_subscribe@PULSE_0 1:0.99.1 + pa_ext_device_manager_test@PULSE_0 1:0.99.1 + pa_ext_device_restore_read_sink_formats@PULSE_0 1:0.99.1 + pa_ext_device_restore_read_sink_formats_all@PULSE_0 1:0.99.1 + pa_ext_device_restore_save_sink_formats@PULSE_0 1:0.99.1 + pa_ext_device_restore_subscribe@PULSE_0 1:0.99.1 + pa_ext_device_restore_test@PULSE_0 1:0.99.1 + pa_ext_stream_restore_delete@PULSE_0 1:0.99.1 + pa_ext_stream_restore_read@PULSE_0 1:0.99.1 + pa_ext_stream_restore_set_subscribe_cb@PULSE_0 1:0.99.1 + pa_ext_stream_restore_subscribe@PULSE_0 1:0.99.1 + pa_ext_stream_restore_test@PULSE_0 1:0.99.1 + pa_ext_stream_restore_write@PULSE_0 1:0.99.1 + pa_frame_size@PULSE_0 1:0.99.1 + pa_get_binary_name@PULSE_0 1:0.99.1 + pa_get_fqdn@PULSE_0 1:0.99.1 + pa_get_home_dir@PULSE_0 1:0.99.1 + pa_get_host_name@PULSE_0 1:0.99.1 + pa_get_library_version@PULSE_0 1:0.99.1 + pa_get_user_name@PULSE_0 1:0.99.1 + pa_gettimeofday@PULSE_0 1:0.99.1 + pa_locale_to_utf8@PULSE_0 1:0.99.1 + pa_mainloop_api_once@PULSE_0 1:0.99.1 + pa_mainloop_dispatch@PULSE_0 1:0.99.1 + pa_mainloop_free@PULSE_0 1:0.99.1 + pa_mainloop_get_api@PULSE_0 1:0.99.1 + pa_mainloop_get_retval@PULSE_0 1:0.99.1 + pa_mainloop_iterate@PULSE_0 1:0.99.1 + pa_mainloop_new@PULSE_0 1:0.99.1 + pa_mainloop_poll@PULSE_0 1:0.99.1 + pa_mainloop_prepare@PULSE_0 1:0.99.1 + pa_mainloop_quit@PULSE_0 1:0.99.1 + pa_mainloop_run@PULSE_0 1:0.99.1 + pa_mainloop_set_poll_func@PULSE_0 1:0.99.1 + pa_mainloop_wakeup@PULSE_0 1:0.99.1 + pa_msleep@PULSE_0 1:0.99.1 + pa_operation_cancel@PULSE_0 1:0.99.1 + pa_operation_get_state@PULSE_0 1:0.99.1 + pa_operation_ref@PULSE_0 1:0.99.1 + pa_operation_unref@PULSE_0 1:0.99.1 + pa_parse_sample_format@PULSE_0 1:0.99.1 + pa_path_get_filename@PULSE_0 1:0.99.1 + pa_proplist_clear@PULSE_0 1:0.99.1 + pa_proplist_contains@PULSE_0 1:0.99.1 + pa_proplist_copy@PULSE_0 1:0.99.1 + pa_proplist_equal@PULSE_0 1:0.99.1 + pa_proplist_free@PULSE_0 1:0.99.1 + pa_proplist_from_string@PULSE_0 1:0.99.1 + pa_proplist_get@PULSE_0 1:0.99.1 + pa_proplist_gets@PULSE_0 1:0.99.1 + pa_proplist_isempty@PULSE_0 1:0.99.1 + pa_proplist_iterate@PULSE_0 1:0.99.1 + pa_proplist_new@PULSE_0 1:0.99.1 + pa_proplist_set@PULSE_0 1:0.99.1 + pa_proplist_setf@PULSE_0 1:0.99.1 + pa_proplist_setp@PULSE_0 1:0.99.1 + pa_proplist_sets@PULSE_0 1:0.99.1 + pa_proplist_size@PULSE_0 1:0.99.1 + pa_proplist_to_string@PULSE_0 1:0.99.1 + pa_proplist_to_string_sep@PULSE_0 1:0.99.1 + pa_proplist_unset@PULSE_0 1:0.99.1 + pa_proplist_unset_many@PULSE_0 1:0.99.1 + pa_proplist_update@PULSE_0 1:0.99.1 + pa_rtclock_now@PULSE_0 1:0.99.1 + pa_sample_format_is_be@PULSE_0 1:0.99.1 + pa_sample_format_is_le@PULSE_0 1:0.99.1 + pa_sample_format_to_string@PULSE_0 1:0.99.1 + pa_sample_size@PULSE_0 1:0.99.1 + pa_sample_size_of_format@PULSE_0 1:0.99.1 + pa_sample_spec_equal@PULSE_0 1:0.99.1 + pa_sample_spec_init@PULSE_0 1:0.99.1 + pa_sample_spec_snprint@PULSE_0 1:0.99.1 + pa_sample_spec_valid@PULSE_0 1:0.99.1 + pa_signal_done@PULSE_0 1:0.99.1 + pa_signal_free@PULSE_0 1:0.99.1 + pa_signal_init@PULSE_0 1:0.99.1 + pa_signal_new@PULSE_0 1:0.99.1 + pa_signal_set_destroy@PULSE_0 1:0.99.1 + pa_stream_begin_write@PULSE_0 1:0.99.1 + pa_stream_cancel_write@PULSE_0 1:0.99.1 + pa_stream_connect_playback@PULSE_0 1:0.99.1 + pa_stream_connect_record@PULSE_0 1:0.99.1 + pa_stream_connect_upload@PULSE_0 1:0.99.1 + pa_stream_cork@PULSE_0 1:0.99.1 + pa_stream_disconnect@PULSE_0 1:0.99.1 + pa_stream_drain@PULSE_0 1:0.99.1 + pa_stream_drop@PULSE_0 1:0.99.1 + pa_stream_finish_upload@PULSE_0 1:0.99.1 + pa_stream_flush@PULSE_0 1:0.99.1 + pa_stream_get_buffer_attr@PULSE_0 1:0.99.1 + pa_stream_get_channel_map@PULSE_0 1:0.99.1 + pa_stream_get_context@PULSE_0 1:0.99.1 + pa_stream_get_device_index@PULSE_0 1:0.99.1 + pa_stream_get_device_name@PULSE_0 1:0.99.1 + pa_stream_get_format_info@PULSE_0 1:0.99.1 + pa_stream_get_index@PULSE_0 1:0.99.1 + pa_stream_get_latency@PULSE_0 1:0.99.1 + pa_stream_get_monitor_stream@PULSE_0 1:0.99.1 + pa_stream_get_sample_spec@PULSE_0 1:0.99.1 + pa_stream_get_state@PULSE_0 1:0.99.1 + pa_stream_get_time@PULSE_0 1:0.99.1 + pa_stream_get_timing_info@PULSE_0 1:0.99.1 + pa_stream_get_underflow_index@PULSE_0 1:0.99.1 + pa_stream_is_corked@PULSE_0 1:0.99.1 + pa_stream_is_suspended@PULSE_0 1:0.99.1 + pa_stream_new@PULSE_0 1:0.99.1 + pa_stream_new_extended@PULSE_0 1:0.99.1 + pa_stream_new_with_proplist@PULSE_0 1:0.99.1 + pa_stream_peek@PULSE_0 1:0.99.1 + pa_stream_prebuf@PULSE_0 1:0.99.1 + pa_stream_proplist_remove@PULSE_0 1:0.99.1 + pa_stream_proplist_update@PULSE_0 1:0.99.1 + pa_stream_readable_size@PULSE_0 1:0.99.1 + pa_stream_ref@PULSE_0 1:0.99.1 + pa_stream_set_buffer_attr@PULSE_0 1:0.99.1 + pa_stream_set_buffer_attr_callback@PULSE_0 1:0.99.1 + pa_stream_set_event_callback@PULSE_0 1:0.99.1 + pa_stream_set_latency_update_callback@PULSE_0 1:0.99.1 + pa_stream_set_monitor_stream@PULSE_0 1:0.99.1 + pa_stream_set_moved_callback@PULSE_0 1:0.99.1 + pa_stream_set_name@PULSE_0 1:0.99.1 + pa_stream_set_overflow_callback@PULSE_0 1:0.99.1 + pa_stream_set_read_callback@PULSE_0 1:0.99.1 + pa_stream_set_started_callback@PULSE_0 1:0.99.1 + pa_stream_set_state_callback@PULSE_0 1:0.99.1 + pa_stream_set_suspended_callback@PULSE_0 1:0.99.1 + pa_stream_set_underflow_callback@PULSE_0 1:0.99.1 + pa_stream_set_write_callback@PULSE_0 1:0.99.1 + pa_stream_trigger@PULSE_0 1:0.99.1 + pa_stream_unref@PULSE_0 1:0.99.1 + pa_stream_update_sample_rate@PULSE_0 1:0.99.1 + pa_stream_update_timing_info@PULSE_0 1:0.99.1 + pa_stream_writable_size@PULSE_0 1:0.99.1 + pa_stream_write@PULSE_0 1:0.99.1 + pa_strerror@PULSE_0 1:0.99.1 + pa_sw_cvolume_divide@PULSE_0 1:0.99.1 + pa_sw_cvolume_divide_scalar@PULSE_0 1:0.99.1 + pa_sw_cvolume_multiply@PULSE_0 1:0.99.1 + pa_sw_cvolume_multiply_scalar@PULSE_0 1:0.99.1 + pa_sw_cvolume_snprint_dB@PULSE_0 1:0.99.1 + pa_sw_volume_divide@PULSE_0 1:0.99.1 + pa_sw_volume_from_dB@PULSE_0 1:0.99.1 + pa_sw_volume_from_linear@PULSE_0 1:0.99.1 + pa_sw_volume_multiply@PULSE_0 1:0.99.1 + pa_sw_volume_snprint_dB@PULSE_0 1:0.99.1 + pa_sw_volume_to_dB@PULSE_0 1:0.99.1 + pa_sw_volume_to_linear@PULSE_0 1:0.99.1 + pa_threaded_mainloop_accept@PULSE_0 1:0.99.1 + pa_threaded_mainloop_free@PULSE_0 1:0.99.1 + pa_threaded_mainloop_get_api@PULSE_0 1:0.99.1 + pa_threaded_mainloop_get_retval@PULSE_0 1:0.99.1 + pa_threaded_mainloop_in_thread@PULSE_0 1:0.99.1 + pa_threaded_mainloop_lock@PULSE_0 1:0.99.1 + pa_threaded_mainloop_new@PULSE_0 1:0.99.1 + pa_threaded_mainloop_signal@PULSE_0 1:0.99.1 + pa_threaded_mainloop_start@PULSE_0 1:0.99.1 + pa_threaded_mainloop_stop@PULSE_0 1:0.99.1 + pa_threaded_mainloop_unlock@PULSE_0 1:0.99.1 + pa_threaded_mainloop_wait@PULSE_0 1:0.99.1 + pa_timeval_add@PULSE_0 1:0.99.1 + pa_timeval_age@PULSE_0 1:0.99.1 + pa_timeval_cmp@PULSE_0 1:0.99.1 + pa_timeval_diff@PULSE_0 1:0.99.1 + pa_timeval_load@PULSE_0 1:0.99.1 + pa_timeval_store@PULSE_0 1:0.99.1 + pa_timeval_sub@PULSE_0 1:0.99.1 + pa_usec_to_bytes@PULSE_0 1:0.99.1 + pa_utf8_filter@PULSE_0 1:0.99.1 + pa_utf8_to_locale@PULSE_0 1:0.99.1 + pa_utf8_valid@PULSE_0 1:0.99.1 + pa_volume_snprint@PULSE_0 1:0.99.1 + pa_xfree@PULSE_0 1:0.99.1 + pa_xmalloc0@PULSE_0 1:0.99.1 + pa_xmalloc@PULSE_0 1:0.99.1 + pa_xmemdup@PULSE_0 1:0.99.1 + pa_xrealloc@PULSE_0 1:0.99.1 + pa_xstrdup@PULSE_0 1:0.99.1 + pa_xstrndup@PULSE_0 1:0.99.1 +libpulsecommon-0.99.so libpulse-glib-mainloop0 #MINVER# + pa_accept_cloexec@Base 1:0.99.1 + pa_ascii_filter@Base 1:0.99.1 + pa_ascii_valid@Base 1:0.99.1 + pa_atod@Base 1:0.99.1 + pa_atoi@Base 1:0.99.1 + pa_atol@Base 1:0.99.1 + pa_atou@Base 1:0.99.1 + pa_aupdate_free@Base 1:0.99.1 + pa_aupdate_new@Base 1:0.99.1 + pa_aupdate_read_begin@Base 1:0.99.1 + pa_aupdate_read_end@Base 1:0.99.1 + pa_aupdate_write_begin@Base 1:0.99.1 + pa_aupdate_write_end@Base 1:0.99.1 + pa_aupdate_write_swap@Base 1:0.99.1 + pa_authkey_load@Base 1:0.99.1 + pa_authkey_load_auto@Base 1:0.99.1 + pa_authkey_save@Base 1:0.99.1 + pa_autospawn_lock_acquire@Base 1:0.99.1 + pa_autospawn_lock_done@Base 1:0.99.1 + pa_autospawn_lock_init@Base 1:0.99.1 + pa_autospawn_lock_release@Base 1:0.99.1 + pa_bitset_equals@Base 1:0.99.1 + pa_bitset_get@Base 1:0.99.1 + pa_bitset_set@Base 1:0.99.1 + pa_bytes_per_second@Base 1:0.99.1 + pa_bytes_snprint@Base 1:0.99.1 + pa_bytes_to_usec@Base 1:0.99.1 + pa_channel_map_can_balance@Base 1:0.99.1 + pa_channel_map_can_fade@Base 1:0.99.1 + pa_channel_map_compatible@Base 1:0.99.1 + pa_channel_map_equal@Base 1:0.99.1 + pa_channel_map_has_position@Base 1:0.99.1 + pa_channel_map_init@Base 1:0.99.1 + pa_channel_map_init_auto@Base 1:0.99.1 + pa_channel_map_init_extend@Base 1:0.99.1 + pa_channel_map_init_mono@Base 1:0.99.1 + pa_channel_map_init_stereo@Base 1:0.99.1 + pa_channel_map_mask@Base 1:0.99.1 + pa_channel_map_parse@Base 1:0.99.1 + pa_channel_map_snprint@Base 1:0.99.1 + pa_channel_map_superset@Base 1:0.99.1 + pa_channel_map_to_name@Base 1:0.99.1 + pa_channel_map_to_pretty_name@Base 1:0.99.1 + pa_channel_map_valid@Base 1:0.99.1 + pa_channel_position_from_string@Base 1:0.99.1 + pa_channel_position_to_pretty_string@Base 1:0.99.1 + pa_channel_position_to_string@Base 1:0.99.1 + pa_check_in_group@Base 1:0.99.1 + pa_check_signal_is_blocked@Base 1:0.99.1 + pa_client_conf_env@Base 1:0.99.1 + pa_client_conf_free@Base 1:0.99.1 + pa_client_conf_from_x11@Base 1:0.99.1 + pa_client_conf_load@Base 1:0.99.1 + pa_client_conf_load_cookie@Base 1:0.99.1 + pa_client_conf_new@Base 1:0.99.1 + pa_close@Base 1:0.99.1 + pa_close_all@Base 1:0.99.1 + pa_close_allv@Base 1:0.99.1 + pa_close_pipe@Base 1:0.99.1 + pa_cond_free@Base 1:0.99.1 + pa_cond_new@Base 1:0.99.1 + pa_cond_signal@Base 1:0.99.1 + pa_cond_wait@Base 1:0.99.1 + pa_config_parse@Base 1:0.99.1 + pa_config_parse_bool@Base 1:0.99.1 + pa_config_parse_int@Base 1:0.99.1 + pa_config_parse_not_bool@Base 1:0.99.1 + pa_config_parse_size@Base 1:0.99.1 + pa_config_parse_string@Base 1:0.99.1 + pa_config_parse_unsigned@Base 1:0.99.1 + pa_cstrerror@Base 1:0.99.1 + pa_dbus_add_matches@Base 1:0.99.1 + pa_dbus_append_basic_array@Base 1:0.99.1 + pa_dbus_append_basic_array_variant@Base 1:0.99.1 + pa_dbus_append_basic_array_variant_dict_entry@Base 1:0.99.1 + pa_dbus_append_basic_variant@Base 1:0.99.1 + pa_dbus_append_basic_variant_dict_entry@Base 1:0.99.1 + pa_dbus_append_proplist@Base 1:0.99.1 + pa_dbus_append_proplist_variant@Base 1:0.99.1 + pa_dbus_append_proplist_variant_dict_entry@Base 1:0.99.1 + pa_dbus_free_pending_list@Base 1:0.99.1 + pa_dbus_get_proplist_arg@Base 1:0.99.1 + pa_dbus_pending_free@Base 1:0.99.1 + pa_dbus_pending_new@Base 1:0.99.1 + pa_dbus_remove_matches@Base 1:0.99.1 + pa_dbus_send_basic_array_variant_reply@Base 1:0.99.1 + pa_dbus_send_basic_value_reply@Base 1:0.99.1 + pa_dbus_send_basic_variant_reply@Base 1:0.99.1 + pa_dbus_send_empty_reply@Base 1:0.99.1 + pa_dbus_send_error@Base 1:0.99.1 + pa_dbus_send_proplist_variant_reply@Base 1:0.99.1 + pa_dbus_sync_pending_list@Base 1:0.99.1 + pa_dbus_wrap_connection_free@Base 1:0.99.1 + pa_dbus_wrap_connection_get@Base 1:0.99.1 + pa_dbus_wrap_connection_new@Base 1:0.99.1 + pa_dbus_wrap_connection_new_from_existing@Base 1:0.99.1 + pa_detect_fork@Base 1:0.99.1 + pa_disable_sigpipe@Base 1:0.99.1 + pa_dynarray_append@Base 1:0.99.1 + pa_dynarray_free@Base 1:0.99.1 + pa_dynarray_get@Base 1:0.99.1 + pa_dynarray_new@Base 1:0.99.1 + pa_dynarray_put@Base 1:0.99.1 + pa_dynarray_size@Base 1:0.99.1 + pa_encoding_to_string@Base 1:0.99.1 + pa_endswith@Base 1:0.99.1 + pa_escape@Base 1:0.99.1 + pa_find_config_file@Base 1:0.99.1 + pa_flist_free@Base 1:0.99.1 + pa_flist_new@Base 1:0.99.1 + pa_flist_new_with_name@Base 1:0.99.1 + pa_flist_pop@Base 1:0.99.1 + pa_flist_push@Base 1:0.99.1 + pa_fopen_cloexec@Base 1:0.99.1 + pa_format_info_copy@Base 1:0.99.1 + pa_format_info_free2@Base 1:0.99.1 + pa_format_info_free@Base 1:0.99.1 + pa_format_info_from_sample_spec@Base 1:0.99.1 + pa_format_info_get_prop_int@Base 1:0.99.1 + pa_format_info_get_prop_string@Base 1:0.99.1 + pa_format_info_is_compatible@Base 1:0.99.1 + pa_format_info_is_pcm@Base 1:0.99.1 + pa_format_info_new@Base 1:0.99.1 + pa_format_info_set_channel_map@Base 1:0.99.1 + pa_format_info_set_channels@Base 1:0.99.1 + pa_format_info_set_prop_int@Base 1:0.99.1 + pa_format_info_set_prop_int_array@Base 1:0.99.1 + pa_format_info_set_prop_int_range@Base 1:0.99.1 + pa_format_info_set_prop_string@Base 1:0.99.1 + pa_format_info_set_prop_string_array@Base 1:0.99.1 + pa_format_info_set_rate@Base 1:0.99.1 + pa_format_info_set_sample_format@Base 1:0.99.1 + pa_format_info_snprint@Base 1:0.99.1 + pa_format_info_to_sample_spec@Base 1:0.99.1 + pa_format_info_to_sample_spec_fake@Base 1:0.99.1 + pa_format_info_valid@Base 1:0.99.1 + pa_frame_size@Base 1:0.99.1 + pa_gcd@Base 1:0.99.1 + pa_get_binary_name@Base 1:0.99.1 + pa_get_binary_name_malloc@Base 1:0.99.1 + pa_get_fqdn@Base 1:0.99.1 + pa_get_gid_of_group@Base 1:0.99.1 + pa_get_home_dir@Base 1:0.99.1 + pa_get_home_dir_malloc@Base 1:0.99.1 + pa_get_host_name@Base 1:0.99.1 + pa_get_host_name_malloc@Base 1:0.99.1 + pa_get_runtime_dir@Base 1:0.99.1 + pa_get_state_dir@Base 1:0.99.1 + pa_get_temp_dir@Base 1:0.99.1 + pa_get_user_name@Base 1:0.99.1 + pa_get_user_name_malloc@Base 1:0.99.1 + pa_getcwd@Base 1:0.99.1 + pa_getgrgid_free@Base 1:0.99.1 + pa_getgrgid_malloc@Base 1:0.99.1 + pa_getgrnam_free@Base 1:0.99.1 + pa_getgrnam_malloc@Base 1:0.99.1 + pa_getpwnam_free@Base 1:0.99.1 + pa_getpwnam_malloc@Base 1:0.99.1 + pa_getpwuid_free@Base 1:0.99.1 + pa_getpwuid_malloc@Base 1:0.99.1 + pa_gettimeofday@Base 1:0.99.1 + pa_hashmap_first@Base 1:0.99.1 + pa_hashmap_free@Base 1:0.99.1 + pa_hashmap_get@Base 1:0.99.1 + pa_hashmap_isempty@Base 1:0.99.1 + pa_hashmap_iterate@Base 1:0.99.1 + pa_hashmap_iterate_backwards@Base 1:0.99.1 + pa_hashmap_last@Base 1:0.99.1 + pa_hashmap_new@Base 1:0.99.1 + pa_hashmap_put@Base 1:0.99.1 + pa_hashmap_remove@Base 1:0.99.1 + pa_hashmap_size@Base 1:0.99.1 + pa_hashmap_steal_first@Base 1:0.99.1 + pa_hexstr@Base 1:0.99.1 + pa_idxset_copy@Base 1:0.99.1 + pa_idxset_first@Base 1:0.99.1 + pa_idxset_free@Base 1:0.99.1 + pa_idxset_get_by_data@Base 1:0.99.1 + pa_idxset_get_by_index@Base 1:0.99.1 + pa_idxset_isempty@Base 1:0.99.1 + pa_idxset_iterate@Base 1:0.99.1 + pa_idxset_new@Base 1:0.99.1 + pa_idxset_next@Base 1:0.99.1 + pa_idxset_put@Base 1:0.99.1 + pa_idxset_remove_by_data@Base 1:0.99.1 + pa_idxset_remove_by_index@Base 1:0.99.1 + pa_idxset_rrobin@Base 1:0.99.1 + pa_idxset_size@Base 1:0.99.1 + pa_idxset_steal_first@Base 1:0.99.1 + pa_idxset_string_compare_func@Base 1:0.99.1 + pa_idxset_string_hash_func@Base 1:0.99.1 + pa_idxset_trivial_compare_func@Base 1:0.99.1 + pa_idxset_trivial_hash_func@Base 1:0.99.1 + pa_in_system_mode@Base 1:0.99.1 + pa_init_i18n@Base 1:0.99.1 + pa_init_proplist@Base 1:0.99.1 + pa_iochannel_creds_enable@Base 1:0.99.1 + pa_iochannel_creds_supported@Base 1:0.99.1 + pa_iochannel_free@Base 1:0.99.1 + pa_iochannel_get_mainloop_api@Base 1:0.99.1 + pa_iochannel_get_recv_fd@Base 1:0.99.1 + pa_iochannel_get_send_fd@Base 1:0.99.1 + pa_iochannel_is_hungup@Base 1:0.99.1 + pa_iochannel_is_readable@Base 1:0.99.1 + pa_iochannel_is_writable@Base 1:0.99.1 + pa_iochannel_new@Base 1:0.99.1 + pa_iochannel_read@Base 1:0.99.1 + pa_iochannel_read_with_creds@Base 1:0.99.1 + pa_iochannel_set_callback@Base 1:0.99.1 + pa_iochannel_set_noclose@Base 1:0.99.1 + pa_iochannel_socket_is_local@Base 1:0.99.1 + pa_iochannel_socket_peer_to_string@Base 1:0.99.1 + pa_iochannel_socket_set_rcvbuf@Base 1:0.99.1 + pa_iochannel_socket_set_sndbuf@Base 1:0.99.1 + pa_iochannel_write@Base 1:0.99.1 + pa_iochannel_write_with_creds@Base 1:0.99.1 + pa_ioline_close@Base 1:0.99.1 + pa_ioline_defer_close@Base 1:0.99.1 + pa_ioline_detach_iochannel@Base 1:0.99.1 + pa_ioline_is_drained@Base 1:0.99.1 + pa_ioline_new@Base 1:0.99.1 + pa_ioline_printf@Base 1:0.99.1 + pa_ioline_puts@Base 1:0.99.1 + pa_ioline_ref@Base 1:0.99.1 + pa_ioline_set_callback@Base 1:0.99.1 + pa_ioline_set_drain_callback@Base 1:0.99.1 + pa_ioline_unref@Base 1:0.99.1 + pa_ip_acl_check@Base 1:0.99.1 + pa_ip_acl_free@Base 1:0.99.1 + pa_ip_acl_new@Base 1:0.99.1 + pa_is_ip_address@Base 1:0.99.1 + pa_is_path_absolute@Base 1:0.99.1 + pa_locale_to_utf8@Base 1:0.99.1 + pa_lock_fd@Base 1:0.99.1 + pa_lock_lockfile@Base 1:0.99.1 + pa_log_level@Base 1:0.99.1 + pa_log_level_meta@Base 1:0.99.1 + pa_log_levelv@Base 1:0.99.1 + pa_log_levelv_meta@Base 1:0.99.1 + pa_log_ratelimit@Base 1:0.99.1 + pa_log_set_fd@Base 1:0.99.1 + pa_log_set_flags@Base 1:0.99.1 + pa_log_set_ident@Base 1:0.99.1 + pa_log_set_level@Base 1:0.99.1 + pa_log_set_show_backtrace@Base 1:0.99.1 + pa_log_set_skip_backtrace@Base 1:0.99.1 + pa_log_set_target@Base 1:0.99.1 + pa_loop_read@Base 1:0.99.1 + pa_loop_write@Base 1:0.99.1 + pa_machine_id@Base 1:0.99.1 + pa_make_fd_cloexec@Base 1:0.99.1 + pa_make_fd_nonblock@Base 1:0.99.1 + pa_make_path_absolute@Base 1:0.99.1 + pa_make_realtime@Base 1:0.99.1 + pa_make_secure_dir@Base 1:0.99.1 + pa_make_secure_parent_dir@Base 1:0.99.1 + pa_make_socket_low_delay@Base 1:0.99.1 + pa_make_tcp_socket_low_delay@Base 1:0.99.1 + pa_make_udp_socket_low_delay@Base 1:0.99.1 + pa_match@Base 1:0.99.1 + pa_maybe_prefix_path@Base 1:0.99.1 + pa_mcalign_csize@Base 1:0.99.1 + pa_mcalign_flush@Base 1:0.99.1 + pa_mcalign_free@Base 1:0.99.1 + pa_mcalign_new@Base 1:0.99.1 + pa_mcalign_pop@Base 1:0.99.1 + pa_mcalign_push@Base 1:0.99.1 + pa_memblock_acquire@Base 1:0.99.1 + pa_memblock_get_length@Base 1:0.99.1 + pa_memblock_get_pool@Base 1:0.99.1 + pa_memblock_is_read_only@Base 1:0.99.1 + pa_memblock_is_silence@Base 1:0.99.1 + pa_memblock_new@Base 1:0.99.1 + pa_memblock_new_fixed@Base 1:0.99.1 + pa_memblock_new_pool@Base 1:0.99.1 + pa_memblock_new_user@Base 1:0.99.1 + pa_memblock_ref@Base 1:0.99.1 + pa_memblock_ref_is_one@Base 1:0.99.1 + pa_memblock_release@Base 1:0.99.1 + pa_memblock_set_is_silence@Base 1:0.99.1 + pa_memblock_unref@Base 1:0.99.1 + pa_memblock_unref_fixed@Base 1:0.99.1 + pa_memblock_will_need@Base 1:0.99.1 + pa_memblockq_apply_attr@Base 1:0.99.1 + pa_memblockq_drop@Base 1:0.99.1 + pa_memblockq_flush_read@Base 1:0.99.1 + pa_memblockq_flush_write@Base 1:0.99.1 + pa_memblockq_free@Base 1:0.99.1 + pa_memblockq_get_attr@Base 1:0.99.1 + pa_memblockq_get_base@Base 1:0.99.1 + pa_memblockq_get_length@Base 1:0.99.1 + pa_memblockq_get_maxlength@Base 1:0.99.1 + pa_memblockq_get_maxrewind@Base 1:0.99.1 + pa_memblockq_get_minreq@Base 1:0.99.1 + pa_memblockq_get_nblocks@Base 1:0.99.1 + pa_memblockq_get_prebuf@Base 1:0.99.1 + pa_memblockq_get_read_index@Base 1:0.99.1 + pa_memblockq_get_tlength@Base 1:0.99.1 + pa_memblockq_get_write_index@Base 1:0.99.1 + pa_memblockq_is_empty@Base 1:0.99.1 + pa_memblockq_is_readable@Base 1:0.99.1 + pa_memblockq_missing@Base 1:0.99.1 + pa_memblockq_new@Base 1:0.99.1 + pa_memblockq_peek@Base 1:0.99.1 + pa_memblockq_peek_fixed_size@Base 1:0.99.1 + pa_memblockq_pop_missing@Base 1:0.99.1 + pa_memblockq_prebuf_active@Base 1:0.99.1 + pa_memblockq_prebuf_disable@Base 1:0.99.1 + pa_memblockq_prebuf_force@Base 1:0.99.1 + pa_memblockq_push@Base 1:0.99.1 + pa_memblockq_push_align@Base 1:0.99.1 + pa_memblockq_rewind@Base 1:0.99.1 + pa_memblockq_seek@Base 1:0.99.1 + pa_memblockq_set_maxlength@Base 1:0.99.1 + pa_memblockq_set_maxrewind@Base 1:0.99.1 + pa_memblockq_set_minreq@Base 1:0.99.1 + pa_memblockq_set_prebuf@Base 1:0.99.1 + pa_memblockq_set_silence@Base 1:0.99.1 + pa_memblockq_set_tlength@Base 1:0.99.1 + pa_memblockq_silence@Base 1:0.99.1 + pa_memblockq_splice@Base 1:0.99.1 + pa_memblockq_willneed@Base 1:0.99.1 + pa_memchunk_isset@Base 1:0.99.1 + pa_memchunk_make_writable@Base 1:0.99.1 + pa_memchunk_memcpy@Base 1:0.99.1 + pa_memchunk_reset@Base 1:0.99.1 + pa_memchunk_will_need@Base 1:0.99.1 + pa_memexport_free@Base 1:0.99.1 + pa_memexport_new@Base 1:0.99.1 + pa_memexport_process_release@Base 1:0.99.1 + pa_memexport_put@Base 1:0.99.1 + pa_memimport_free@Base 1:0.99.1 + pa_memimport_get@Base 1:0.99.1 + pa_memimport_new@Base 1:0.99.1 + pa_memimport_process_revoke@Base 1:0.99.1 + pa_mempool_block_size_max@Base 1:0.99.1 + pa_mempool_free@Base 1:0.99.1 + pa_mempool_get_shm_id@Base 1:0.99.1 + pa_mempool_get_stat@Base 1:0.99.1 + pa_mempool_is_shared@Base 1:0.99.1 + pa_mempool_new@Base 1:0.99.1 + pa_mempool_vacuum@Base 1:0.99.1 + pa_memtrap_add@Base 1:0.99.1 + pa_memtrap_install@Base 1:0.99.1 + pa_memtrap_is_good@Base 1:0.99.1 + pa_memtrap_remove@Base 1:0.99.1 + pa_memtrap_update@Base 1:0.99.1 + pa_msleep@Base 1:0.99.1 + pa_mutex_free@Base 1:0.99.1 + pa_mutex_lock@Base 1:0.99.1 + pa_mutex_new@Base 1:0.99.1 + pa_mutex_try_lock@Base 1:0.99.1 + pa_mutex_unlock@Base 1:0.99.1 + pa_ncpus@Base 1:0.99.1 + pa_nullify_stdfds@Base 1:0.99.1 + pa_once_begin@Base 1:0.99.1 + pa_once_end@Base 1:0.99.1 + pa_open_cloexec@Base 1:0.99.1 + pa_open_config_file@Base 1:0.99.1 + pa_own_uid_in_group@Base 1:0.99.1 + pa_packet_new@Base 1:0.99.1 + pa_packet_new_dynamic@Base 1:0.99.1 + pa_packet_ref@Base 1:0.99.1 + pa_packet_unref@Base 1:0.99.1 + pa_parent_dir@Base 1:0.99.1 + pa_parse_address@Base 1:0.99.1 + pa_parse_boolean@Base 1:0.99.1 + pa_parse_sample_format@Base 1:0.99.1 + pa_parsehex@Base 1:0.99.1 + pa_path_get_filename@Base 1:0.99.1 + pa_pdispatch_creds@Base 1:0.99.1 + pa_pdispatch_is_pending@Base 1:0.99.1 + pa_pdispatch_new@Base 1:0.99.1 + pa_pdispatch_ref@Base 1:0.99.1 + pa_pdispatch_register_reply@Base 1:0.99.1 + pa_pdispatch_run@Base 1:0.99.1 + pa_pdispatch_set_drain_callback@Base 1:0.99.1 + pa_pdispatch_unref@Base 1:0.99.1 + pa_pdispatch_unregister_reply@Base 1:0.99.1 + pa_pid_file_check_running@Base 1:0.99.1 + pa_pid_file_create@Base 1:0.99.1 + pa_pid_file_kill@Base 1:0.99.1 + pa_pid_file_remove@Base 1:0.99.1 + pa_pipe_buf@Base 1:0.99.1 + pa_pipe_cloexec@Base 1:0.99.1 + pa_prioq_free@Base 1:0.99.1 + pa_prioq_isempty@Base 1:0.99.1 + pa_prioq_new@Base 1:0.99.1 + pa_prioq_peek@Base 1:0.99.1 + pa_prioq_pop@Base 1:0.99.1 + pa_prioq_put@Base 1:0.99.1 + pa_prioq_remove@Base 1:0.99.1 + pa_prioq_reshuffle@Base 1:0.99.1 + pa_prioq_size@Base 1:0.99.1 + pa_proplist_clear@Base 1:0.99.1 + pa_proplist_contains@Base 1:0.99.1 + pa_proplist_copy@Base 1:0.99.1 + pa_proplist_equal@Base 1:0.99.1 + pa_proplist_free@Base 1:0.99.1 + pa_proplist_from_string@Base 1:0.99.1 + pa_proplist_get@Base 1:0.99.1 + pa_proplist_gets@Base 1:0.99.1 + pa_proplist_isempty@Base 1:0.99.1 + pa_proplist_iterate@Base 1:0.99.1 + pa_proplist_new@Base 1:0.99.1 + pa_proplist_set@Base 1:0.99.1 + pa_proplist_setf@Base 1:0.99.1 + pa_proplist_setp@Base 1:0.99.1 + pa_proplist_sets@Base 1:0.99.1 + pa_proplist_size@Base 1:0.99.1 + pa_proplist_to_string@Base 1:0.99.1 + pa_proplist_to_string_sep@Base 1:0.99.1 + pa_proplist_unset@Base 1:0.99.1 + pa_proplist_unset_many@Base 1:0.99.1 + pa_proplist_update@Base 1:0.99.1 + pa_pstream_enable_shm@Base 1:0.99.1 + pa_pstream_get_shm@Base 1:0.99.1 + pa_pstream_is_pending@Base 1:0.99.1 + pa_pstream_new@Base 1:0.99.1 + pa_pstream_ref@Base 1:0.99.1 + pa_pstream_send_error@Base 1:0.99.1 + pa_pstream_send_memblock@Base 1:0.99.1 + pa_pstream_send_packet@Base 1:0.99.1 + pa_pstream_send_release@Base 1:0.99.1 + pa_pstream_send_revoke@Base 1:0.99.1 + pa_pstream_send_simple_ack@Base 1:0.99.1 + pa_pstream_send_tagstruct_with_creds@Base 1:0.99.1 + pa_pstream_set_die_callback@Base 1:0.99.1 + pa_pstream_set_drain_callback@Base 1:0.99.1 + pa_pstream_set_recieve_memblock_callback@Base 1:0.99.1 + pa_pstream_set_recieve_packet_callback@Base 1:0.99.1 + pa_pstream_set_release_callback@Base 1:0.99.1 + pa_pstream_set_revoke_callback@Base 1:0.99.1 + pa_pstream_unlink@Base 1:0.99.1 + pa_pstream_unref@Base 1:0.99.1 + pa_queue_free@Base 1:0.99.1 + pa_queue_isempty@Base 1:0.99.1 + pa_queue_new@Base 1:0.99.1 + pa_queue_pop@Base 1:0.99.1 + pa_queue_push@Base 1:0.99.1 + pa_raise_priority@Base 1:0.99.1 + pa_random@Base 1:0.99.1 + pa_random_seed@Base 1:0.99.1 + pa_ratelimit_test@Base 1:0.99.1 + pa_read@Base 1:0.99.1 + pa_read_line_from_file@Base 1:0.99.1 + pa_readlink@Base 1:0.99.1 + pa_realpath@Base 1:0.99.1 + pa_reduce@Base 1:0.99.1 + pa_replace@Base 1:0.99.1 + pa_reset_personality@Base 1:0.99.1 + pa_reset_priority@Base 1:0.99.1 + pa_reset_sigs@Base 1:0.99.1 + pa_reset_sigsv@Base 1:0.99.1 + pa_rtclock_age@Base 1:0.99.1 + pa_rtclock_from_wallclock@Base 1:0.99.1 + pa_rtclock_get@Base 1:0.99.1 + pa_rtclock_hrtimer@Base 1:0.99.1 + pa_rtclock_hrtimer_enable@Base 1:0.99.1 + pa_rtclock_now@Base 1:0.99.1 + pa_run_once@Base 1:0.99.1 + pa_running_in_vm@Base 1:0.99.1 + pa_runtime_path@Base 1:0.99.1 + pa_sample_format_is_be@Base 1:0.99.1 + pa_sample_format_is_le@Base 1:0.99.1 + pa_sample_format_to_string@Base 1:0.99.1 + pa_sample_size@Base 1:0.99.1 + pa_sample_size_of_format@Base 1:0.99.1 + pa_sample_spec_equal@Base 1:0.99.1 + pa_sample_spec_init@Base 1:0.99.1 + pa_sample_spec_snprint@Base 1:0.99.1 + pa_sample_spec_valid@Base 1:0.99.1 + pa_semaphore_free@Base 1:0.99.1 + pa_semaphore_new@Base 1:0.99.1 + pa_semaphore_post@Base 1:0.99.1 + pa_semaphore_wait@Base 1:0.99.1 + pa_session_id@Base 1:0.99.1 + pa_set_env@Base 1:0.99.1 + pa_set_env_and_record@Base 1:0.99.1 + pa_shm_attach_ro@Base 1:0.99.1 + pa_shm_cleanup@Base 1:0.99.1 + pa_shm_create_rw@Base 1:0.99.1 + pa_shm_free@Base 1:0.99.1 + pa_shm_punch@Base 1:0.99.1 + pa_sig2str@Base 1:0.99.1 + pa_smoother_fix_now@Base 1:0.99.1 + pa_smoother_free@Base 1:0.99.1 + pa_smoother_get@Base 1:0.99.1 + pa_smoother_new@Base 1:0.99.1 + pa_smoother_pause@Base 1:0.99.1 + pa_smoother_put@Base 1:0.99.1 + pa_smoother_reset@Base 1:0.99.1 + pa_smoother_resume@Base 1:0.99.1 + pa_smoother_set_time_offset@Base 1:0.99.1 + pa_smoother_translate@Base 1:0.99.1 + pa_sndfile_dump_formats@Base 1:0.99.1 + pa_sndfile_format_from_string@Base 1:0.99.1 + pa_sndfile_init_proplist@Base 1:0.99.1 + pa_sndfile_read_channel_map@Base 1:0.99.1 + pa_sndfile_read_sample_spec@Base 1:0.99.1 + pa_sndfile_readf_function@Base 1:0.99.1 + pa_sndfile_write_channel_map@Base 1:0.99.1 + pa_sndfile_write_sample_spec@Base 1:0.99.1 + pa_sndfile_writef_function@Base 1:0.99.1 + pa_snprintf@Base 1:0.99.1 + pa_socket_address_is_local@Base 1:0.99.1 + pa_socket_client_is_local@Base 1:0.99.1 + pa_socket_client_new_ipv4@Base 1:0.99.1 + pa_socket_client_new_ipv6@Base 1:0.99.1 + pa_socket_client_new_sockaddr@Base 1:0.99.1 + pa_socket_client_new_string@Base 1:0.99.1 + pa_socket_client_new_unix@Base 1:0.99.1 + pa_socket_client_ref@Base 1:0.99.1 + pa_socket_client_set_callback@Base 1:0.99.1 + pa_socket_client_unref@Base 1:0.99.1 + pa_socket_cloexec@Base 1:0.99.1 + pa_socket_is_local@Base 1:0.99.1 + pa_socket_peer_to_string@Base 1:0.99.1 + pa_socket_server_get_address@Base 1:0.99.1 + pa_socket_server_new@Base 1:0.99.1 + pa_socket_server_new_ipv4@Base 1:0.99.1 + pa_socket_server_new_ipv4_any@Base 1:0.99.1 + pa_socket_server_new_ipv4_loopback@Base 1:0.99.1 + pa_socket_server_new_ipv4_string@Base 1:0.99.1 + pa_socket_server_new_ipv6@Base 1:0.99.1 + pa_socket_server_new_ipv6_any@Base 1:0.99.1 + pa_socket_server_new_ipv6_loopback@Base 1:0.99.1 + pa_socket_server_new_ipv6_string@Base 1:0.99.1 + pa_socket_server_new_unix@Base 1:0.99.1 + pa_socket_server_ref@Base 1:0.99.1 + pa_socket_server_set_callback@Base 1:0.99.1 + pa_socket_server_unref@Base 1:0.99.1 + pa_socket_set_rcvbuf@Base 1:0.99.1 + pa_socket_set_sndbuf@Base 1:0.99.1 + pa_split@Base 1:0.99.1 + pa_split_spaces@Base 1:0.99.1 + pa_split_spaces_strv@Base 1:0.99.1 + pa_sprintf_malloc@Base 1:0.99.1 + pa_startswith@Base 1:0.99.1 + pa_state_path@Base 1:0.99.1 + pa_static_mutex_get@Base 1:0.99.1 + pa_static_semaphore_get@Base 1:0.99.1 + pa_strbuf_free@Base 1:0.99.1 + pa_strbuf_isempty@Base 1:0.99.1 + pa_strbuf_new@Base 1:0.99.1 + pa_strbuf_printf@Base 1:0.99.1 + pa_strbuf_putc@Base 1:0.99.1 + pa_strbuf_puts@Base 1:0.99.1 + pa_strbuf_putsn@Base 1:0.99.1 + pa_strbuf_tostring@Base 1:0.99.1 + pa_strbuf_tostring_free@Base 1:0.99.1 + pa_strip@Base 1:0.99.1 + pa_strip_nl@Base 1:0.99.1 + pa_strlcpy@Base 1:0.99.1 + pa_strlist_data@Base 1:0.99.1 + pa_strlist_free@Base 1:0.99.1 + pa_strlist_next@Base 1:0.99.1 + pa_strlist_parse@Base 1:0.99.1 + pa_strlist_pop@Base 1:0.99.1 + pa_strlist_prepend@Base 1:0.99.1 + pa_strlist_remove@Base 1:0.99.1 + pa_strlist_reverse@Base 1:0.99.1 + pa_strlist_tostring@Base 1:0.99.1 + pa_tagstruct_data@Base 1:0.99.1 + pa_tagstruct_eof@Base 1:0.99.1 + pa_tagstruct_free@Base 1:0.99.1 + pa_tagstruct_free_data@Base 1:0.99.1 + pa_tagstruct_get@Base 1:0.99.1 + pa_tagstruct_get_arbitrary@Base 1:0.99.1 + pa_tagstruct_get_boolean@Base 1:0.99.1 + pa_tagstruct_get_channel_map@Base 1:0.99.1 + pa_tagstruct_get_cvolume@Base 1:0.99.1 + pa_tagstruct_get_format_info@Base 1:0.99.1 + pa_tagstruct_get_proplist@Base 1:0.99.1 + pa_tagstruct_get_sample_spec@Base 1:0.99.1 + pa_tagstruct_get_timeval@Base 1:0.99.1 + pa_tagstruct_get_usec@Base 1:0.99.1 + pa_tagstruct_get_volume@Base 1:0.99.1 + pa_tagstruct_gets64@Base 1:0.99.1 + pa_tagstruct_gets@Base 1:0.99.1 + pa_tagstruct_getu32@Base 1:0.99.1 + pa_tagstruct_getu64@Base 1:0.99.1 + pa_tagstruct_getu8@Base 1:0.99.1 + pa_tagstruct_new@Base 1:0.99.1 + pa_tagstruct_put@Base 1:0.99.1 + pa_tagstruct_put_arbitrary@Base 1:0.99.1 + pa_tagstruct_put_boolean@Base 1:0.99.1 + pa_tagstruct_put_channel_map@Base 1:0.99.1 + pa_tagstruct_put_cvolume@Base 1:0.99.1 + pa_tagstruct_put_format_info@Base 1:0.99.1 + pa_tagstruct_put_proplist@Base 1:0.99.1 + pa_tagstruct_put_sample_spec@Base 1:0.99.1 + pa_tagstruct_put_timeval@Base 1:0.99.1 + pa_tagstruct_put_usec@Base 1:0.99.1 + pa_tagstruct_put_volume@Base 1:0.99.1 + pa_tagstruct_puts64@Base 1:0.99.1 + pa_tagstruct_puts@Base 1:0.99.1 + pa_tagstruct_putu32@Base 1:0.99.1 + pa_tagstruct_putu64@Base 1:0.99.1 + pa_tagstruct_putu8@Base 1:0.99.1 + pa_thread_free@Base 1:0.99.1 + pa_thread_get_data@Base 1:0.99.1 + pa_thread_get_name@Base 1:0.99.1 + pa_thread_is_running@Base 1:0.99.1 + pa_thread_join@Base 1:0.99.1 + pa_thread_new@Base 1:0.99.1 + pa_thread_self@Base 1:0.99.1 + pa_thread_set_data@Base 1:0.99.1 + pa_thread_set_name@Base 1:0.99.1 + pa_thread_yield@Base 1:0.99.1 + pa_timespec_load@Base 1:0.99.1 + pa_timespec_store@Base 1:0.99.1 + pa_timeval_add@Base 1:0.99.1 + pa_timeval_age@Base 1:0.99.1 + pa_timeval_cmp@Base 1:0.99.1 + pa_timeval_diff@Base 1:0.99.1 + pa_timeval_load@Base 1:0.99.1 + pa_timeval_rtstore@Base 1:0.99.1 + pa_timeval_store@Base 1:0.99.1 + pa_timeval_sub@Base 1:0.99.1 + pa_tls_free@Base 1:0.99.1 + pa_tls_get@Base 1:0.99.1 + pa_tls_new@Base 1:0.99.1 + pa_tls_set@Base 1:0.99.1 + pa_tokenizer_free@Base 1:0.99.1 + pa_tokenizer_get@Base 1:0.99.1 + pa_tokenizer_new@Base 1:0.99.1 + pa_truncate_utf8@Base 1:0.99.1 + pa_uid_in_group@Base 1:0.99.1 + pa_uname_string@Base 1:0.99.1 + pa_unblock_sigs@Base 1:0.99.1 + pa_unblock_sigsv@Base 1:0.99.1 + pa_unescape@Base 1:0.99.1 + pa_unix_socket_is_stale@Base 1:0.99.1 + pa_unix_socket_remove_stale@Base 1:0.99.1 + pa_unlock_lockfile@Base 1:0.99.1 + pa_unset_env_recorded@Base 1:0.99.1 + pa_usec_to_bytes@Base 1:0.99.1 + pa_utf8_filter@Base 1:0.99.1 + pa_utf8_to_locale@Base 1:0.99.1 + pa_utf8_valid@Base 1:0.99.1 + pa_vsnprintf@Base 1:0.99.1 + pa_vsprintf_malloc@Base 1:0.99.1 + pa_will_need@Base 1:0.99.1 + pa_write@Base 1:0.99.1 + pa_x11_del_prop@Base 1:0.99.1 + pa_x11_get_prop@Base 1:0.99.1 + pa_x11_set_prop@Base 1:0.99.1 + pa_xfree@Base 1:0.99.1 + pa_xfreev@Base 1:0.99.1 + pa_xmalloc0@Base 1:0.99.1 + pa_xmalloc@Base 1:0.99.1 + pa_xmemdup@Base 1:0.99.1 + pa_xrealloc@Base 1:0.99.1 + pa_xstrdup@Base 1:0.99.1 + pa_xstrndup@Base 1:0.99.1 + pretty_table@Base 1:0.99.1 + rtkit_make_high_priority@Base 1:0.99.1 + rtkit_make_realtime@Base 1:0.99.1 + table@Base 1:0.99.1 +libpulsecore-0.99.so libpulse-glib-mainloop0 #MINVER# + av_build_filter@Base 1:0.99.1 + av_resample@Base 1:0.99.1 + av_resample_close@Base 1:0.99.1 + av_resample_compensate@Base 1:0.99.1 + av_resample_init@Base 1:0.99.1 + pa_asyncmsgq_dispatch@Base 1:0.99.1 + pa_asyncmsgq_dispatching@Base 1:0.99.1 + pa_asyncmsgq_done@Base 1:0.99.1 + pa_asyncmsgq_flush@Base 1:0.99.1 + pa_asyncmsgq_get@Base 1:0.99.1 + pa_asyncmsgq_new@Base 1:0.99.1 + pa_asyncmsgq_post@Base 1:0.99.1 + pa_asyncmsgq_process_one@Base 1:0.99.1 + pa_asyncmsgq_read_after_poll@Base 1:0.99.1 + pa_asyncmsgq_read_before_poll@Base 1:0.99.1 + pa_asyncmsgq_read_fd@Base 1:0.99.1 + pa_asyncmsgq_ref@Base 1:0.99.1 + pa_asyncmsgq_send@Base 1:0.99.1 + pa_asyncmsgq_unref@Base 1:0.99.1 + pa_asyncmsgq_wait_for@Base 1:0.99.1 + pa_asyncmsgq_write_after_poll@Base 1:0.99.1 + pa_asyncmsgq_write_before_poll@Base 1:0.99.1 + pa_asyncmsgq_write_fd@Base 1:0.99.1 + pa_asyncq_free@Base 1:0.99.1 + pa_asyncq_new@Base 1:0.99.1 + pa_asyncq_pop@Base 1:0.99.1 + pa_asyncq_post@Base 1:0.99.1 + pa_asyncq_push@Base 1:0.99.1 + pa_asyncq_read_after_poll@Base 1:0.99.1 + pa_asyncq_read_before_poll@Base 1:0.99.1 + pa_asyncq_read_fd@Base 1:0.99.1 + pa_asyncq_write_after_poll@Base 1:0.99.1 + pa_asyncq_write_before_poll@Base 1:0.99.1 + pa_asyncq_write_fd@Base 1:0.99.1 + pa_auth_cookie_get@Base 1:0.99.1 + pa_auth_cookie_read@Base 1:0.99.1 + pa_auth_cookie_ref@Base 1:0.99.1 + pa_auth_cookie_unref@Base 1:0.99.1 + pa_bytes_to_usec_round_up@Base 1:0.99.1 + pa_card_free@Base 1:0.99.1 + pa_card_list_to_string@Base 1:0.99.1 + pa_card_new@Base 1:0.99.1 + pa_card_new_data_done@Base 1:0.99.1 + pa_card_new_data_init@Base 1:0.99.1 + pa_card_new_data_set_name@Base 1:0.99.1 + pa_card_new_data_set_profile@Base 1:0.99.1 + pa_card_profile_free@Base 1:0.99.1 + pa_card_profile_new@Base 1:0.99.1 + pa_card_set_profile@Base 1:0.99.1 + pa_card_suspend@Base 1:0.99.1 + pa_cli_command_execute@Base 1:0.99.1 + pa_cli_command_execute_file@Base 1:0.99.1 + pa_cli_command_execute_file_stream@Base 1:0.99.1 + pa_cli_command_execute_line@Base 1:0.99.1 + pa_cli_command_execute_line_stateful@Base 1:0.99.1 + pa_client_free@Base 1:0.99.1 + pa_client_kill@Base 1:0.99.1 + pa_client_list_to_string@Base 1:0.99.1 + pa_client_new@Base 1:0.99.1 + pa_client_new_data_done@Base 1:0.99.1 + pa_client_new_data_init@Base 1:0.99.1 + pa_client_send_event@Base 1:0.99.1 + pa_client_set_name@Base 1:0.99.1 + pa_client_update_proplist@Base 1:0.99.1 + pa_convert_func_init_sse@Base 1:0.99.1 + pa_convert_size@Base 1:0.99.1 + pa_core_check_idle@Base 1:0.99.1 + pa_core_check_type@Base 1:0.99.1 + pa_core_exit@Base 1:0.99.1 + pa_core_maybe_vacuum@Base 1:0.99.1 + pa_core_new@Base 1:0.99.1 + pa_core_rttime_new@Base 1:0.99.1 + pa_core_rttime_restart@Base 1:0.99.1 + pa_core_type_id@Base 1:0.99.1 + pa_cpu_init_arm@Base 1:0.99.1 + pa_cpu_init_orc@Base 1:0.99.1 + pa_cpu_init_x86@Base 1:0.99.1 + pa_database_clear@Base 1:0.99.1 + pa_database_close@Base 1:0.99.1 + pa_database_first@Base 1:0.99.1 + pa_database_get@Base 1:0.99.1 + pa_database_next@Base 1:0.99.1 + pa_database_open@Base 1:0.99.1 + pa_database_set@Base 1:0.99.1 + pa_database_size@Base 1:0.99.1 + pa_database_sync@Base 1:0.99.1 + pa_database_unset@Base 1:0.99.1 + pa_datum_free@Base 1:0.99.1 + pa_dbus_bus_get@Base 1:0.99.1 + pa_dbus_connection_get@Base 1:0.99.1 + pa_dbus_connection_ref@Base 1:0.99.1 + pa_dbus_connection_unref@Base 1:0.99.1 + pa_dbus_protocol_add_interface@Base 1:0.99.1 + pa_dbus_protocol_add_signal_listener@Base 1:0.99.1 + pa_dbus_protocol_get@Base 1:0.99.1 + pa_dbus_protocol_get_client@Base 1:0.99.1 + pa_dbus_protocol_get_extensions@Base 1:0.99.1 + pa_dbus_protocol_hook_connect@Base 1:0.99.1 + pa_dbus_protocol_ref@Base 1:0.99.1 + pa_dbus_protocol_register_connection@Base 1:0.99.1 + pa_dbus_protocol_register_extension@Base 1:0.99.1 + pa_dbus_protocol_remove_interface@Base 1:0.99.1 + pa_dbus_protocol_remove_signal_listener@Base 1:0.99.1 + pa_dbus_protocol_send_signal@Base 1:0.99.1 + pa_dbus_protocol_unref@Base 1:0.99.1 + pa_dbus_protocol_unregister_connection@Base 1:0.99.1 + pa_dbus_protocol_unregister_extension@Base 1:0.99.1 + pa_deinterleave@Base 1:0.99.1 + pa_device_init_description@Base 1:0.99.1 + pa_device_init_icon@Base 1:0.99.1 + pa_device_init_intended_roles@Base 1:0.99.1 + pa_device_init_priority@Base 1:0.99.1 + pa_device_port_free@Base 1:0.99.1 + pa_device_port_new@Base 1:0.99.1 + pa_fdsem_after_poll@Base 1:0.99.1 + pa_fdsem_before_poll@Base 1:0.99.1 + pa_fdsem_free@Base 1:0.99.1 + pa_fdsem_get@Base 1:0.99.1 + pa_fdsem_new@Base 1:0.99.1 + pa_fdsem_new_shm@Base 1:0.99.1 + pa_fdsem_open_shm@Base 1:0.99.1 + pa_fdsem_post@Base 1:0.99.1 + pa_fdsem_try@Base 1:0.99.1 + pa_fdsem_wait@Base 1:0.99.1 + pa_frame_align@Base 1:0.99.1 + pa_frame_aligned@Base 1:0.99.1 + pa_full_status_string@Base 1:0.99.1 + pa_get_convert_from_float32ne_function@Base 1:0.99.1 + pa_get_convert_from_s16ne_function@Base 1:0.99.1 + pa_get_convert_to_float32ne_function@Base 1:0.99.1 + pa_get_convert_to_s16ne_function@Base 1:0.99.1 + pa_get_dbus_address_from_server_type@Base 1:0.99.1 + pa_get_init_remap_func@Base 1:0.99.1 + pa_get_volume_func@Base 1:0.99.1 + pa_hook_connect@Base 1:0.99.1 + pa_hook_done@Base 1:0.99.1 + pa_hook_fire@Base 1:0.99.1 + pa_hook_init@Base 1:0.99.1 + pa_hook_is_firing@Base 1:0.99.1 + pa_hook_slot_free@Base 1:0.99.1 + pa_init_remap@Base 1:0.99.1 + pa_interleave@Base 1:0.99.1 + pa_load_sym@Base 1:0.99.1 + pa_memblockq_sink_input_new@Base 1:0.99.1 + pa_memblockq_sink_input_set_queue@Base 1:0.99.1 + pa_memchunk_dump_to_file@Base 1:0.99.1 + pa_memchunk_sine@Base 1:0.99.1 + pa_mix@Base 1:0.99.1 + pa_modargs_free@Base 1:0.99.1 + pa_modargs_get_channel_map@Base 1:0.99.1 + pa_modargs_get_proplist@Base 1:0.99.1 + pa_modargs_get_sample_spec@Base 1:0.99.1 + pa_modargs_get_sample_spec_and_channel_map@Base 1:0.99.1 + pa_modargs_get_value@Base 1:0.99.1 + pa_modargs_get_value_boolean@Base 1:0.99.1 + pa_modargs_get_value_s32@Base 1:0.99.1 + pa_modargs_get_value_u32@Base 1:0.99.1 + pa_modargs_iterate@Base 1:0.99.1 + pa_modargs_new@Base 1:0.99.1 + pa_modinfo_free@Base 1:0.99.1 + pa_modinfo_get_by_handle@Base 1:0.99.1 + pa_modinfo_get_by_name@Base 1:0.99.1 + pa_module_get_n_used@Base 1:0.99.1 + pa_module_list_to_string@Base 1:0.99.1 + pa_module_load@Base 1:0.99.1 + pa_module_unload@Base 1:0.99.1 + pa_module_unload_all@Base 1:0.99.1 + pa_module_unload_by_index@Base 1:0.99.1 + pa_module_unload_request@Base 1:0.99.1 + pa_module_unload_request_by_index@Base 1:0.99.1 + pa_module_update_proplist@Base 1:0.99.1 + pa_msgobject_check_type@Base 1:0.99.1 + pa_msgobject_new_internal@Base 1:0.99.1 + pa_msgobject_type_id@Base 1:0.99.1 + pa_namereg_get@Base 1:0.99.1 + pa_namereg_get_default_sink@Base 1:0.99.1 + pa_namereg_get_default_source@Base 1:0.99.1 + pa_namereg_is_valid_name@Base 1:0.99.1 + pa_namereg_is_valid_name_or_wildcard@Base 1:0.99.1 + pa_namereg_make_valid_name@Base 1:0.99.1 + pa_namereg_register@Base 1:0.99.1 + pa_namereg_set_default_sink@Base 1:0.99.1 + pa_namereg_set_default_source@Base 1:0.99.1 + pa_namereg_unregister@Base 1:0.99.1 + pa_object_check_type@Base 1:0.99.1 + pa_object_new_internal@Base 1:0.99.1 + pa_object_ref@Base 1:0.99.1 + pa_object_type_id@Base 1:0.99.1 + pa_object_unref@Base 1:0.99.1 + pa_parse_resample_method@Base 1:0.99.1 + pa_play_file@Base 1:0.99.1 + pa_play_memblockq@Base 1:0.99.1 + pa_play_memchunk@Base 1:0.99.1 + pa_remap_func_init_mmx@Base 1:0.99.1 + pa_remap_func_init_sse@Base 1:0.99.1 + pa_resample_method_supported@Base 1:0.99.1 + pa_resample_method_to_string@Base 1:0.99.1 + pa_resampler_free@Base 1:0.99.1 + pa_resampler_get_method@Base 1:0.99.1 + pa_resampler_input_channel_map@Base 1:0.99.1 + pa_resampler_input_sample_spec@Base 1:0.99.1 + pa_resampler_max_block_size@Base 1:0.99.1 + pa_resampler_new@Base 1:0.99.1 + pa_resampler_output_channel_map@Base 1:0.99.1 + pa_resampler_output_sample_spec@Base 1:0.99.1 + pa_resampler_request@Base 1:0.99.1 + pa_resampler_reset@Base 1:0.99.1 + pa_resampler_result@Base 1:0.99.1 + pa_resampler_run@Base 1:0.99.1 + pa_resampler_set_input_rate@Base 1:0.99.1 + pa_resampler_set_output_rate@Base 1:0.99.1 + pa_rtpoll_free@Base 1:0.99.1 + pa_rtpoll_item_free@Base 1:0.99.1 + pa_rtpoll_item_get_pollfd@Base 1:0.99.1 + pa_rtpoll_item_get_userdata@Base 1:0.99.1 + pa_rtpoll_item_new@Base 1:0.99.1 + pa_rtpoll_item_new_asyncmsgq_read@Base 1:0.99.1 + pa_rtpoll_item_new_asyncmsgq_write@Base 1:0.99.1 + pa_rtpoll_item_new_fdsem@Base 1:0.99.1 + pa_rtpoll_item_set_after_callback@Base 1:0.99.1 + pa_rtpoll_item_set_before_callback@Base 1:0.99.1 + pa_rtpoll_item_set_userdata@Base 1:0.99.1 + pa_rtpoll_item_set_work_callback@Base 1:0.99.1 + pa_rtpoll_new@Base 1:0.99.1 + pa_rtpoll_quit@Base 1:0.99.1 + pa_rtpoll_run@Base 1:0.99.1 + pa_rtpoll_set_timer_absolute@Base 1:0.99.1 + pa_rtpoll_set_timer_disabled@Base 1:0.99.1 + pa_rtpoll_set_timer_relative@Base 1:0.99.1 + pa_rtpoll_timer_elapsed@Base 1:0.99.1 + pa_sample_clamp@Base 1:0.99.1 + pa_scache_add_directory_lazy@Base 1:0.99.1 + pa_scache_add_file@Base 1:0.99.1 + pa_scache_add_file_lazy@Base 1:0.99.1 + pa_scache_add_item@Base 1:0.99.1 + pa_scache_free_all@Base 1:0.99.1 + pa_scache_get_id_by_name@Base 1:0.99.1 + pa_scache_get_name_by_id@Base 1:0.99.1 + pa_scache_list_to_string@Base 1:0.99.1 + pa_scache_play_item@Base 1:0.99.1 + pa_scache_play_item_by_name@Base 1:0.99.1 + pa_scache_remove_item@Base 1:0.99.1 + pa_scache_total_size@Base 1:0.99.1 + pa_scache_unload_unused@Base 1:0.99.1 + pa_sconv_s16be_from_float32ne@Base 1:0.99.1 + pa_sconv_s16be_from_float32re@Base 1:0.99.1 + pa_sconv_s16be_to_float32ne@Base 1:0.99.1 + pa_sconv_s16be_to_float32re@Base 1:0.99.1 + pa_sconv_s16le_from_float32ne@Base 1:0.99.1 + pa_sconv_s16le_from_float32re@Base 1:0.99.1 + pa_sconv_s16le_to_float32ne@Base 1:0.99.1 + pa_sconv_s16le_to_float32re@Base 1:0.99.1 + pa_sconv_s24_32be_from_float32ne@Base 1:0.99.1 + pa_sconv_s24_32be_from_float32re@Base 1:0.99.1 + pa_sconv_s24_32be_from_s16ne@Base 1:0.99.1 + pa_sconv_s24_32be_from_s16re@Base 1:0.99.1 + pa_sconv_s24_32be_to_float32ne@Base 1:0.99.1 + pa_sconv_s24_32be_to_float32re@Base 1:0.99.1 + pa_sconv_s24_32be_to_s16ne@Base 1:0.99.1 + pa_sconv_s24_32be_to_s16re@Base 1:0.99.1 + pa_sconv_s24_32le_from_float32ne@Base 1:0.99.1 + pa_sconv_s24_32le_from_float32re@Base 1:0.99.1 + pa_sconv_s24_32le_from_s16ne@Base 1:0.99.1 + pa_sconv_s24_32le_from_s16re@Base 1:0.99.1 + pa_sconv_s24_32le_to_float32ne@Base 1:0.99.1 + pa_sconv_s24_32le_to_float32re@Base 1:0.99.1 + pa_sconv_s24_32le_to_s16ne@Base 1:0.99.1 + pa_sconv_s24_32le_to_s16re@Base 1:0.99.1 + pa_sconv_s24be_from_float32ne@Base 1:0.99.1 + pa_sconv_s24be_from_float32re@Base 1:0.99.1 + pa_sconv_s24be_from_s16ne@Base 1:0.99.1 + pa_sconv_s24be_from_s16re@Base 1:0.99.1 + pa_sconv_s24be_to_float32ne@Base 1:0.99.1 + pa_sconv_s24be_to_float32re@Base 1:0.99.1 + pa_sconv_s24be_to_s16ne@Base 1:0.99.1 + pa_sconv_s24be_to_s16re@Base 1:0.99.1 + pa_sconv_s24le_from_float32ne@Base 1:0.99.1 + pa_sconv_s24le_from_float32re@Base 1:0.99.1 + pa_sconv_s24le_from_s16ne@Base 1:0.99.1 + pa_sconv_s24le_from_s16re@Base 1:0.99.1 + pa_sconv_s24le_to_float32ne@Base 1:0.99.1 + pa_sconv_s24le_to_float32re@Base 1:0.99.1 + pa_sconv_s24le_to_s16ne@Base 1:0.99.1 + pa_sconv_s24le_to_s16re@Base 1:0.99.1 + pa_sconv_s32be_from_float32ne@Base 1:0.99.1 + pa_sconv_s32be_from_float32re@Base 1:0.99.1 + pa_sconv_s32be_from_s16ne@Base 1:0.99.1 + pa_sconv_s32be_from_s16re@Base 1:0.99.1 + pa_sconv_s32be_to_float32ne@Base 1:0.99.1 + pa_sconv_s32be_to_float32re@Base 1:0.99.1 + pa_sconv_s32be_to_s16ne@Base 1:0.99.1 + pa_sconv_s32be_to_s16re@Base 1:0.99.1 + pa_sconv_s32le_from_float32ne@Base 1:0.99.1 + pa_sconv_s32le_from_float32re@Base 1:0.99.1 + pa_sconv_s32le_from_s16ne@Base 1:0.99.1 + pa_sconv_s32le_from_s16re@Base 1:0.99.1 + pa_sconv_s32le_to_float32ne@Base 1:0.99.1 + pa_sconv_s32le_to_float32re@Base 1:0.99.1 + pa_sconv_s32le_to_s16ne@Base 1:0.99.1 + pa_sconv_s32le_to_s16re@Base 1:0.99.1 + pa_set_convert_from_float32ne_function@Base 1:0.99.1 + pa_set_convert_from_s16ne_function@Base 1:0.99.1 + pa_set_convert_to_float32ne_function@Base 1:0.99.1 + pa_set_convert_to_s16ne_function@Base 1:0.99.1 + pa_set_init_remap_func@Base 1:0.99.1 + pa_set_volume_func@Base 1:0.99.1 + pa_shared_dump@Base 1:0.99.1 + pa_shared_get@Base 1:0.99.1 + pa_shared_remove@Base 1:0.99.1 + pa_shared_replace@Base 1:0.99.1 + pa_shared_set@Base 1:0.99.1 + pa_shm_attach_ro@Base 1:0.99.1 + pa_shm_cleanup@Base 1:0.99.1 + pa_shm_create_rw@Base 1:0.99.1 + pa_shm_free@Base 1:0.99.1 + pa_shm_punch@Base 1:0.99.1 + pa_silence_cache_done@Base 1:0.99.1 + pa_silence_cache_init@Base 1:0.99.1 + pa_silence_memblock@Base 1:0.99.1 + pa_silence_memchunk@Base 1:0.99.1 + pa_silence_memchunk_get@Base 1:0.99.1 + pa_silence_memory@Base 1:0.99.1 + pa_sink_attach@Base 1:0.99.1 + pa_sink_attach_within_thread@Base 1:0.99.1 + pa_sink_check_format@Base 1:0.99.1 + pa_sink_check_formats@Base 1:0.99.1 + pa_sink_check_suspend@Base 1:0.99.1 + pa_sink_check_type@Base 1:0.99.1 + pa_sink_detach@Base 1:0.99.1 + pa_sink_detach_within_thread@Base 1:0.99.1 + pa_sink_enable_decibel_volume@Base 1:0.99.1 + pa_sink_flat_volume_enabled@Base 1:0.99.1 + pa_sink_get_fixed_latency@Base 1:0.99.1 + pa_sink_get_formats@Base 1:0.99.1 + pa_sink_get_latency@Base 1:0.99.1 + pa_sink_get_latency_range@Base 1:0.99.1 + pa_sink_get_latency_within_thread@Base 1:0.99.1 + pa_sink_get_max_request@Base 1:0.99.1 + pa_sink_get_max_rewind@Base 1:0.99.1 + pa_sink_get_mute@Base 1:0.99.1 + pa_sink_get_requested_latency@Base 1:0.99.1 + pa_sink_get_requested_latency_within_thread@Base 1:0.99.1 + pa_sink_get_volume@Base 1:0.99.1 + pa_sink_input_check_type@Base 1:0.99.1 + pa_sink_input_cork@Base 1:0.99.1 + pa_sink_input_drop@Base 1:0.99.1 + pa_sink_input_fail_move@Base 1:0.99.1 + pa_sink_input_finish_move@Base 1:0.99.1 + pa_sink_input_get_latency@Base 1:0.99.1 + pa_sink_input_get_max_request@Base 1:0.99.1 + pa_sink_input_get_max_rewind@Base 1:0.99.1 + pa_sink_input_get_mute@Base 1:0.99.1 + pa_sink_input_get_requested_latency@Base 1:0.99.1 + pa_sink_input_get_resample_method@Base 1:0.99.1 + pa_sink_input_get_silence@Base 1:0.99.1 + pa_sink_input_get_state@Base 1:0.99.1 + pa_sink_input_get_volume@Base 1:0.99.1 + pa_sink_input_is_passthrough@Base 1:0.99.1 + pa_sink_input_is_volume_readable@Base 1:0.99.1 + pa_sink_input_kill@Base 1:0.99.1 + pa_sink_input_list_to_string@Base 1:0.99.1 + pa_sink_input_may_move@Base 1:0.99.1 + pa_sink_input_may_move_to@Base 1:0.99.1 + pa_sink_input_move_to@Base 1:0.99.1 + pa_sink_input_new@Base 1:0.99.1 + pa_sink_input_new_data_apply_volume_factor@Base 1:0.99.1 + pa_sink_input_new_data_apply_volume_factor_sink@Base 1:0.99.1 + pa_sink_input_new_data_done@Base 1:0.99.1 + pa_sink_input_new_data_init@Base 1:0.99.1 + pa_sink_input_new_data_is_passthrough@Base 1:0.99.1 + pa_sink_input_new_data_set_channel_map@Base 1:0.99.1 + pa_sink_input_new_data_set_formats@Base 1:0.99.1 + pa_sink_input_new_data_set_muted@Base 1:0.99.1 + pa_sink_input_new_data_set_sample_spec@Base 1:0.99.1 + pa_sink_input_new_data_set_sink@Base 1:0.99.1 + pa_sink_input_new_data_set_volume@Base 1:0.99.1 + pa_sink_input_peek@Base 1:0.99.1 + pa_sink_input_process_msg@Base 1:0.99.1 + pa_sink_input_process_rewind@Base 1:0.99.1 + pa_sink_input_put@Base 1:0.99.1 + pa_sink_input_request_rewind@Base 1:0.99.1 + pa_sink_input_safe_to_remove@Base 1:0.99.1 + pa_sink_input_send_event@Base 1:0.99.1 + pa_sink_input_set_mute@Base 1:0.99.1 + pa_sink_input_set_name@Base 1:0.99.1 + pa_sink_input_set_rate@Base 1:0.99.1 + pa_sink_input_set_requested_latency@Base 1:0.99.1 + pa_sink_input_set_requested_latency_within_thread@Base 1:0.99.1 + pa_sink_input_set_state_within_thread@Base 1:0.99.1 + pa_sink_input_set_volume@Base 1:0.99.1 + pa_sink_input_start_move@Base 1:0.99.1 + pa_sink_input_type_id@Base 1:0.99.1 + pa_sink_input_unlink@Base 1:0.99.1 + pa_sink_input_update_max_request@Base 1:0.99.1 + pa_sink_input_update_max_rewind@Base 1:0.99.1 + pa_sink_input_update_proplist@Base 1:0.99.1 + pa_sink_invalidate_requested_latency@Base 1:0.99.1 + pa_sink_is_passthrough@Base 1:0.99.1 + pa_sink_linked_by@Base 1:0.99.1 + pa_sink_list_to_string@Base 1:0.99.1 + pa_sink_move_all_fail@Base 1:0.99.1 + pa_sink_move_all_finish@Base 1:0.99.1 + pa_sink_move_all_start@Base 1:0.99.1 + pa_sink_mute_changed@Base 1:0.99.1 + pa_sink_new@Base 1:0.99.1 + pa_sink_new_data_done@Base 1:0.99.1 + pa_sink_new_data_init@Base 1:0.99.1 + pa_sink_new_data_set_channel_map@Base 1:0.99.1 + pa_sink_new_data_set_muted@Base 1:0.99.1 + pa_sink_new_data_set_name@Base 1:0.99.1 + pa_sink_new_data_set_port@Base 1:0.99.1 + pa_sink_new_data_set_sample_spec@Base 1:0.99.1 + pa_sink_new_data_set_volume@Base 1:0.99.1 + pa_sink_process_msg@Base 1:0.99.1 + pa_sink_process_rewind@Base 1:0.99.1 + pa_sink_put@Base 1:0.99.1 + pa_sink_render@Base 1:0.99.1 + pa_sink_render_full@Base 1:0.99.1 + pa_sink_render_into@Base 1:0.99.1 + pa_sink_render_into_full@Base 1:0.99.1 + pa_sink_request_rewind@Base 1:0.99.1 + pa_sink_set_asyncmsgq@Base 1:0.99.1 + pa_sink_set_description@Base 1:0.99.1 + pa_sink_set_fixed_latency@Base 1:0.99.1 + pa_sink_set_fixed_latency_within_thread@Base 1:0.99.1 + pa_sink_set_get_mute_callback@Base 1:0.99.1 + pa_sink_set_get_volume_callback@Base 1:0.99.1 + pa_sink_set_latency_range@Base 1:0.99.1 + pa_sink_set_latency_range_within_thread@Base 1:0.99.1 + pa_sink_set_max_request@Base 1:0.99.1 + pa_sink_set_max_request_within_thread@Base 1:0.99.1 + pa_sink_set_max_rewind@Base 1:0.99.1 + pa_sink_set_max_rewind_within_thread@Base 1:0.99.1 + pa_sink_set_mute@Base 1:0.99.1 + pa_sink_set_port@Base 1:0.99.1 + pa_sink_set_rtpoll@Base 1:0.99.1 + pa_sink_set_set_mute_callback@Base 1:0.99.1 + pa_sink_set_set_volume_callback@Base 1:0.99.1 + pa_sink_set_soft_volume@Base 1:0.99.1 + pa_sink_set_volume@Base 1:0.99.1 + pa_sink_set_write_volume_callback@Base 1:0.99.1 + pa_sink_suspend@Base 1:0.99.1 + pa_sink_suspend_all@Base 1:0.99.1 + pa_sink_type_id@Base 1:0.99.1 + pa_sink_unlink@Base 1:0.99.1 + pa_sink_update_flags@Base 1:0.99.1 + pa_sink_update_proplist@Base 1:0.99.1 + pa_sink_update_status@Base 1:0.99.1 + pa_sink_update_volume_and_mute@Base 1:0.99.1 + pa_sink_used_by@Base 1:0.99.1 + pa_sink_volume_change_apply@Base 1:0.99.1 + pa_sink_volume_changed@Base 1:0.99.1 + pa_smoother_fix_now@Base 1:0.99.1 + pa_smoother_free@Base 1:0.99.1 + pa_smoother_get@Base 1:0.99.1 + pa_smoother_new@Base 1:0.99.1 + pa_smoother_pause@Base 1:0.99.1 + pa_smoother_put@Base 1:0.99.1 + pa_smoother_reset@Base 1:0.99.1 + pa_smoother_resume@Base 1:0.99.1 + pa_smoother_set_time_offset@Base 1:0.99.1 + pa_smoother_translate@Base 1:0.99.1 + pa_sound_file_load@Base 1:0.99.1 + pa_sound_file_too_big_to_cache@Base 1:0.99.1 + pa_source_attach@Base 1:0.99.1 + pa_source_attach_within_thread@Base 1:0.99.1 + pa_source_check_format@Base 1:0.99.1 + pa_source_check_formats@Base 1:0.99.1 + pa_source_check_suspend@Base 1:0.99.1 + pa_source_check_type@Base 1:0.99.1 + pa_source_detach@Base 1:0.99.1 + pa_source_detach_within_thread@Base 1:0.99.1 + pa_source_enable_decibel_volume@Base 1:0.99.1 + pa_source_flat_volume_enabled@Base 1:0.99.1 + pa_source_get_fixed_latency@Base 1:0.99.1 + pa_source_get_formats@Base 1:0.99.1 + pa_source_get_latency@Base 1:0.99.1 + pa_source_get_latency_range@Base 1:0.99.1 + pa_source_get_latency_within_thread@Base 1:0.99.1 + pa_source_get_max_rewind@Base 1:0.99.1 + pa_source_get_mute@Base 1:0.99.1 + pa_source_get_requested_latency@Base 1:0.99.1 + pa_source_get_requested_latency_within_thread@Base 1:0.99.1 + pa_source_get_volume@Base 1:0.99.1 + pa_source_invalidate_requested_latency@Base 1:0.99.1 + pa_source_is_passthrough@Base 1:0.99.1 + pa_source_linked_by@Base 1:0.99.1 + pa_source_list_to_string@Base 1:0.99.1 + pa_source_move_all_fail@Base 1:0.99.1 + pa_source_move_all_finish@Base 1:0.99.1 + pa_source_move_all_start@Base 1:0.99.1 + pa_source_mute_changed@Base 1:0.99.1 + pa_source_new@Base 1:0.99.1 + pa_source_new_data_done@Base 1:0.99.1 + pa_source_new_data_init@Base 1:0.99.1 + pa_source_new_data_set_channel_map@Base 1:0.99.1 + pa_source_new_data_set_muted@Base 1:0.99.1 + pa_source_new_data_set_name@Base 1:0.99.1 + pa_source_new_data_set_port@Base 1:0.99.1 + pa_source_new_data_set_sample_spec@Base 1:0.99.1 + pa_source_new_data_set_volume@Base 1:0.99.1 + pa_source_output_check_type@Base 1:0.99.1 + pa_source_output_cork@Base 1:0.99.1 + pa_source_output_fail_move@Base 1:0.99.1 + pa_source_output_finish_move@Base 1:0.99.1 + pa_source_output_get_latency@Base 1:0.99.1 + pa_source_output_get_max_rewind@Base 1:0.99.1 + pa_source_output_get_mute@Base 1:0.99.1 + pa_source_output_get_requested_latency@Base 1:0.99.1 + pa_source_output_get_resample_method@Base 1:0.99.1 + pa_source_output_get_volume@Base 1:0.99.1 + pa_source_output_is_passthrough@Base 1:0.99.1 + pa_source_output_is_volume_readable@Base 1:0.99.1 + pa_source_output_kill@Base 1:0.99.1 + pa_source_output_list_to_string@Base 1:0.99.1 + pa_source_output_may_move@Base 1:0.99.1 + pa_source_output_may_move_to@Base 1:0.99.1 + pa_source_output_move_to@Base 1:0.99.1 + pa_source_output_new@Base 1:0.99.1 + pa_source_output_new_data_apply_volume_factor@Base 1:0.99.1 + pa_source_output_new_data_apply_volume_factor_source@Base 1:0.99.1 + pa_source_output_new_data_done@Base 1:0.99.1 + pa_source_output_new_data_init@Base 1:0.99.1 + pa_source_output_new_data_is_passthrough@Base 1:0.99.1 + pa_source_output_new_data_set_channel_map@Base 1:0.99.1 + pa_source_output_new_data_set_formats@Base 1:0.99.1 + pa_source_output_new_data_set_muted@Base 1:0.99.1 + pa_source_output_new_data_set_sample_spec@Base 1:0.99.1 + pa_source_output_new_data_set_source@Base 1:0.99.1 + pa_source_output_new_data_set_volume@Base 1:0.99.1 + pa_source_output_process_msg@Base 1:0.99.1 + pa_source_output_process_rewind@Base 1:0.99.1 + pa_source_output_push@Base 1:0.99.1 + pa_source_output_put@Base 1:0.99.1 + pa_source_output_send_event@Base 1:0.99.1 + pa_source_output_set_mute@Base 1:0.99.1 + pa_source_output_set_name@Base 1:0.99.1 + pa_source_output_set_rate@Base 1:0.99.1 + pa_source_output_set_requested_latency@Base 1:0.99.1 + pa_source_output_set_requested_latency_within_thread@Base 1:0.99.1 + pa_source_output_set_state_within_thread@Base 1:0.99.1 + pa_source_output_set_volume@Base 1:0.99.1 + pa_source_output_start_move@Base 1:0.99.1 + pa_source_output_type_id@Base 1:0.99.1 + pa_source_output_unlink@Base 1:0.99.1 + pa_source_output_update_max_rewind@Base 1:0.99.1 + pa_source_output_update_proplist@Base 1:0.99.1 + pa_source_post@Base 1:0.99.1 + pa_source_post_direct@Base 1:0.99.1 + pa_source_process_msg@Base 1:0.99.1 + pa_source_process_rewind@Base 1:0.99.1 + pa_source_put@Base 1:0.99.1 + pa_source_set_asyncmsgq@Base 1:0.99.1 + pa_source_set_description@Base 1:0.99.1 + pa_source_set_fixed_latency@Base 1:0.99.1 + pa_source_set_fixed_latency_within_thread@Base 1:0.99.1 + pa_source_set_get_mute_callback@Base 1:0.99.1 + pa_source_set_get_volume_callback@Base 1:0.99.1 + pa_source_set_latency_range@Base 1:0.99.1 + pa_source_set_latency_range_within_thread@Base 1:0.99.1 + pa_source_set_max_rewind@Base 1:0.99.1 + pa_source_set_max_rewind_within_thread@Base 1:0.99.1 + pa_source_set_mute@Base 1:0.99.1 + pa_source_set_port@Base 1:0.99.1 + pa_source_set_rtpoll@Base 1:0.99.1 + pa_source_set_set_mute_callback@Base 1:0.99.1 + pa_source_set_set_volume_callback@Base 1:0.99.1 + pa_source_set_soft_volume@Base 1:0.99.1 + pa_source_set_volume@Base 1:0.99.1 + pa_source_set_write_volume_callback@Base 1:0.99.1 + pa_source_suspend@Base 1:0.99.1 + pa_source_suspend_all@Base 1:0.99.1 + pa_source_sync_suspend@Base 1:0.99.1 + pa_source_type_id@Base 1:0.99.1 + pa_source_unlink@Base 1:0.99.1 + pa_source_update_flags@Base 1:0.99.1 + pa_source_update_proplist@Base 1:0.99.1 + pa_source_update_status@Base 1:0.99.1 + pa_source_update_volume_and_mute@Base 1:0.99.1 + pa_source_used_by@Base 1:0.99.1 + pa_source_volume_change_apply@Base 1:0.99.1 + pa_source_volume_changed@Base 1:0.99.1 + pa_start_child_for_read@Base 1:0.99.1 + pa_stdio_acquire@Base 1:0.99.1 + pa_stdio_release@Base 1:0.99.1 + pa_subscription_free@Base 1:0.99.1 + pa_subscription_free_all@Base 1:0.99.1 + pa_subscription_new@Base 1:0.99.1 + pa_subscription_post@Base 1:0.99.1 + pa_thread_mq_done@Base 1:0.99.1 + pa_thread_mq_get@Base 1:0.99.1 + pa_thread_mq_init@Base 1:0.99.1 + pa_thread_mq_install@Base 1:0.99.1 + pa_usec_to_bytes_round_up@Base 1:0.99.1 + pa_volume_func_init_arm@Base 1:0.99.1 + pa_volume_func_init_mmx@Base 1:0.99.1 + pa_volume_func_init_sse@Base 1:0.99.1 + pa_volume_memchunk@Base 1:0.99.1 + pa_x11_client_free@Base 1:0.99.1 + pa_x11_client_new@Base 1:0.99.1 + pa_x11_wrapper_get@Base 1:0.99.1 + pa_x11_wrapper_get_display@Base 1:0.99.1 + pa_x11_wrapper_get_xcb_connection@Base 1:0.99.1 + pa_x11_wrapper_kill@Base 1:0.99.1 + pa_x11_wrapper_ref@Base 1:0.99.1 + pa_x11_wrapper_unref@Base 1:0.99.1 + st_13linear2alaw@Base 1:0.99.1 + st_14linear2ulaw@Base 1:0.99.1 + st_alaw2linear16@Base 1:0.99.1 + st_ulaw2linear16@Base 1:0.99.1 +libpulsedsp.so libpulse-glib-mainloop0 #MINVER# + __open64_2@Base 1:0.99.1 + __open_2@Base 1:0.99.1 + __xstat64@Base 1:0.99.1 + __xstat@Base 1:0.99.1 + access@Base 1:0.99.1 + close@Base 1:0.99.1 + fclose@Base 1:0.99.1 + fopen64@Base 1:0.99.1 + fopen@Base 1:0.99.1 + ioctl@Base 1:0.99.1 + open64@Base 1:0.99.1 + open@Base 1:0.99.1 + stat64@Base 1:0.99.1 + stat@Base 1:0.99.1 --- pulseaudio-0.99.1.orig/debian/README.Debian +++ pulseaudio-0.99.1/debian/README.Debian @@ -0,0 +1,38 @@ +pulseaudio for Debian (and Ubuntu) +---------------------------------- + +The pulseaudio executable is installed suid root. In the near future, the +current Suggests for rtkit may be promoted, as upstream developers +strongly recommend that latter approach instead. + +The original intent of its suid status was to allow running with realtime +priority (now handled by rtkit). After grabbing the realtime capability, +pulseaudio drops all other root privileges. Historically, only users in +the pulse-rt group were granted realtime privileges. + +PLEASE NOTE: PulseAudio's default configuration uses high quality sample +rate conversion that may be overly CPU intensive. If PulseAudio's CPU usage +is unacceptable on your hardware, please change the resample-method option +in /etc/pulse/daemon.conf to either src-linear or trivial. See daemon.conf +for more details. + + -- Daniel T Chen Fri, 17 Dec 2010 20:14:50 -0500 + +based on work by + + -- CJ van den Berg , Mon, 28 Aug 2006 00:31:10 +0200 + + +In Ubuntu 9.10 and later releases, the default resampling option has been +set to speex-float-1. Also note that per-user session daemon invocation is +used (see comments in /etc/default/pulseaudio). If you wish to prevent per- +user session daemons from being invoked, remember to edit +/etc/pulse/client.conf (or create ~/.pulse/client.conf) and ensure that +"autospawn = no" is present and uncommented. + +In Ubuntu 10.04, CJ's caveat above regarding suid root is no longer +applicable thanks to a Linux 2.6.32 base and the use of RtKit. + +Please use "ubuntu-bug pulseaudio" to file defect reports. + + -- Daniel T Chen , Mon, 23 Nov 2009 07:57:30 -0500 --- pulseaudio-0.99.1.orig/debian/pulseaudio-module-bluetooth.install +++ pulseaudio-0.99.1/debian/pulseaudio-module-bluetooth.install @@ -0,0 +1,7 @@ +usr/lib/pulse-*/modules/module-bluetooth-proximity.so +usr/lib/pulse-*/modules/module-bluetooth-device.so +usr/lib/pulse-*/modules/module-bluetooth-discover.so +usr/lib/pulse-*/modules/libbluetooth-ipc.so +usr/lib/pulse-*/modules/libbluetooth-sbc.so +usr/lib/pulse-*/modules/libbluetooth-util.so +usr/lib/pulseaudio/pulse/proximity-helper --- pulseaudio-0.99.1.orig/debian/libpulse0.symbols +++ pulseaudio-0.99.1/debian/libpulse0.symbols @@ -0,0 +1,1629 @@ +libpulse-mainloop-glib.so.0 libpulse0 #MINVER# + PULSE_0@PULSE_0 1:0.99.1 + pa_glib_mainloop_free@PULSE_0 1:0.99.1 + pa_glib_mainloop_get_api@PULSE_0 1:0.99.1 + pa_glib_mainloop_new@PULSE_0 1:0.99.1 +libpulse-simple.so.0 libpulse0 #MINVER# + PULSE_0@PULSE_0 1:0.99.1 + pa_simple_drain@PULSE_0 1:0.99.1 + pa_simple_flush@PULSE_0 1:0.99.1 + pa_simple_free@PULSE_0 1:0.99.1 + pa_simple_get_latency@PULSE_0 1:0.99.1 + pa_simple_new@PULSE_0 1:0.99.1 + pa_simple_read@PULSE_0 1:0.99.1 + pa_simple_write@PULSE_0 1:0.99.1 +libpulse.so.0 libpulse0 #MINVER# + PULSE_0@PULSE_0 1:0.99.1 + pa_ascii_filter@PULSE_0 1:0.99.1 + pa_ascii_valid@PULSE_0 1:0.99.1 + pa_bytes_per_second@PULSE_0 1:0.99.1 + pa_bytes_snprint@PULSE_0 1:0.99.1 + pa_bytes_to_usec@PULSE_0 1:0.99.1 + pa_channel_map_can_balance@PULSE_0 1:0.99.1 + pa_channel_map_can_fade@PULSE_0 1:0.99.1 + pa_channel_map_compatible@PULSE_0 1:0.99.1 + pa_channel_map_equal@PULSE_0 1:0.99.1 + pa_channel_map_has_position@PULSE_0 1:0.99.1 + pa_channel_map_init@PULSE_0 1:0.99.1 + pa_channel_map_init_auto@PULSE_0 1:0.99.1 + pa_channel_map_init_extend@PULSE_0 1:0.99.1 + pa_channel_map_init_mono@PULSE_0 1:0.99.1 + pa_channel_map_init_stereo@PULSE_0 1:0.99.1 + pa_channel_map_mask@PULSE_0 1:0.99.1 + pa_channel_map_parse@PULSE_0 1:0.99.1 + pa_channel_map_snprint@PULSE_0 1:0.99.1 + pa_channel_map_superset@PULSE_0 1:0.99.1 + pa_channel_map_to_name@PULSE_0 1:0.99.1 + pa_channel_map_to_pretty_name@PULSE_0 1:0.99.1 + pa_channel_map_valid@PULSE_0 1:0.99.1 + pa_channel_position_from_string@PULSE_0 1:0.99.1 + pa_channel_position_to_pretty_string@PULSE_0 1:0.99.1 + pa_channel_position_to_string@PULSE_0 1:0.99.1 + pa_context_add_autoload@PULSE_0 1:0.99.1 + pa_context_connect@PULSE_0 1:0.99.1 + pa_context_disconnect@PULSE_0 1:0.99.1 + pa_context_drain@PULSE_0 1:0.99.1 + pa_context_errno@PULSE_0 1:0.99.1 + pa_context_exit_daemon@PULSE_0 1:0.99.1 + pa_context_get_autoload_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_autoload_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_autoload_info_list@PULSE_0 1:0.99.1 + pa_context_get_card_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_card_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_card_info_list@PULSE_0 1:0.99.1 + pa_context_get_client_info@PULSE_0 1:0.99.1 + pa_context_get_client_info_list@PULSE_0 1:0.99.1 + pa_context_get_index@PULSE_0 1:0.99.1 + pa_context_get_module_info@PULSE_0 1:0.99.1 + pa_context_get_module_info_list@PULSE_0 1:0.99.1 + pa_context_get_protocol_version@PULSE_0 1:0.99.1 + pa_context_get_sample_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_sample_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_sample_info_list@PULSE_0 1:0.99.1 + pa_context_get_server@PULSE_0 1:0.99.1 + pa_context_get_server_info@PULSE_0 1:0.99.1 + pa_context_get_server_protocol_version@PULSE_0 1:0.99.1 + pa_context_get_sink_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_sink_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_sink_info_list@PULSE_0 1:0.99.1 + pa_context_get_sink_input_info@PULSE_0 1:0.99.1 + pa_context_get_sink_input_info_list@PULSE_0 1:0.99.1 + pa_context_get_source_info_by_index@PULSE_0 1:0.99.1 + pa_context_get_source_info_by_name@PULSE_0 1:0.99.1 + pa_context_get_source_info_list@PULSE_0 1:0.99.1 + pa_context_get_source_output_info@PULSE_0 1:0.99.1 + pa_context_get_source_output_info_list@PULSE_0 1:0.99.1 + pa_context_get_state@PULSE_0 1:0.99.1 + pa_context_get_tile_size@PULSE_0 1:0.99.1 + pa_context_is_local@PULSE_0 1:0.99.1 + pa_context_is_pending@PULSE_0 1:0.99.1 + pa_context_kill_client@PULSE_0 1:0.99.1 + pa_context_kill_sink_input@PULSE_0 1:0.99.1 + pa_context_kill_source_output@PULSE_0 1:0.99.1 + pa_context_load_module@PULSE_0 1:0.99.1 + pa_context_move_sink_input_by_index@PULSE_0 1:0.99.1 + pa_context_move_sink_input_by_name@PULSE_0 1:0.99.1 + pa_context_move_source_output_by_index@PULSE_0 1:0.99.1 + pa_context_move_source_output_by_name@PULSE_0 1:0.99.1 + pa_context_new@PULSE_0 1:0.99.1 + pa_context_new_with_proplist@PULSE_0 1:0.99.1 + pa_context_play_sample@PULSE_0 1:0.99.1 + pa_context_play_sample_with_proplist@PULSE_0 1:0.99.1 + pa_context_proplist_remove@PULSE_0 1:0.99.1 + pa_context_proplist_update@PULSE_0 1:0.99.1 + pa_context_ref@PULSE_0 1:0.99.1 + pa_context_remove_autoload_by_index@PULSE_0 1:0.99.1 + pa_context_remove_autoload_by_name@PULSE_0 1:0.99.1 + pa_context_remove_sample@PULSE_0 1:0.99.1 + pa_context_rttime_new@PULSE_0 1:0.99.1 + pa_context_rttime_restart@PULSE_0 1:0.99.1 + pa_context_set_card_profile_by_index@PULSE_0 1:0.99.1 + pa_context_set_card_profile_by_name@PULSE_0 1:0.99.1 + pa_context_set_default_sink@PULSE_0 1:0.99.1 + pa_context_set_default_source@PULSE_0 1:0.99.1 + pa_context_set_event_callback@PULSE_0 1:0.99.1 + pa_context_set_name@PULSE_0 1:0.99.1 + pa_context_set_sink_input_mute@PULSE_0 1:0.99.1 + pa_context_set_sink_input_volume@PULSE_0 1:0.99.1 + pa_context_set_sink_mute_by_index@PULSE_0 1:0.99.1 + pa_context_set_sink_mute_by_name@PULSE_0 1:0.99.1 + pa_context_set_sink_port_by_index@PULSE_0 1:0.99.1 + pa_context_set_sink_port_by_name@PULSE_0 1:0.99.1 + pa_context_set_sink_volume_by_index@PULSE_0 1:0.99.1 + pa_context_set_sink_volume_by_name@PULSE_0 1:0.99.1 + pa_context_set_source_mute_by_index@PULSE_0 1:0.99.1 + pa_context_set_source_mute_by_name@PULSE_0 1:0.99.1 + pa_context_set_source_output_mute@PULSE_0 1:0.99.1 + pa_context_set_source_output_volume@PULSE_0 1:0.99.1 + pa_context_set_source_port_by_index@PULSE_0 1:0.99.1 + pa_context_set_source_port_by_name@PULSE_0 1:0.99.1 + pa_context_set_source_volume_by_index@PULSE_0 1:0.99.1 + pa_context_set_source_volume_by_name@PULSE_0 1:0.99.1 + pa_context_set_state_callback@PULSE_0 1:0.99.1 + pa_context_set_subscribe_callback@PULSE_0 1:0.99.1 + pa_context_stat@PULSE_0 1:0.99.1 + pa_context_subscribe@PULSE_0 1:0.99.1 + pa_context_suspend_sink_by_index@PULSE_0 1:0.99.1 + pa_context_suspend_sink_by_name@PULSE_0 1:0.99.1 + pa_context_suspend_source_by_index@PULSE_0 1:0.99.1 + pa_context_suspend_source_by_name@PULSE_0 1:0.99.1 + pa_context_unload_module@PULSE_0 1:0.99.1 + pa_context_unref@PULSE_0 1:0.99.1 + pa_cvolume_avg@PULSE_0 1:0.99.1 + pa_cvolume_avg_mask@PULSE_0 1:0.99.1 + pa_cvolume_channels_equal_to@PULSE_0 1:0.99.1 + pa_cvolume_compatible@PULSE_0 1:0.99.1 + pa_cvolume_compatible_with_channel_map@PULSE_0 1:0.99.1 + pa_cvolume_dec@PULSE_0 1:0.99.1 + pa_cvolume_equal@PULSE_0 1:0.99.1 + pa_cvolume_get_balance@PULSE_0 1:0.99.1 + pa_cvolume_get_fade@PULSE_0 1:0.99.1 + pa_cvolume_get_position@PULSE_0 1:0.99.1 + pa_cvolume_inc@PULSE_0 1:0.99.1 + pa_cvolume_inc_clamp@PULSE_0 1:0.99.1 + pa_cvolume_init@PULSE_0 1:0.99.1 + pa_cvolume_max@PULSE_0 1:0.99.1 + pa_cvolume_max_mask@PULSE_0 1:0.99.1 + pa_cvolume_merge@PULSE_0 1:0.99.1 + pa_cvolume_min@PULSE_0 1:0.99.1 + pa_cvolume_min_mask@PULSE_0 1:0.99.1 + pa_cvolume_remap@PULSE_0 1:0.99.1 + pa_cvolume_scale@PULSE_0 1:0.99.1 + pa_cvolume_scale_mask@PULSE_0 1:0.99.1 + pa_cvolume_set@PULSE_0 1:0.99.1 + pa_cvolume_set_balance@PULSE_0 1:0.99.1 + pa_cvolume_set_fade@PULSE_0 1:0.99.1 + pa_cvolume_set_position@PULSE_0 1:0.99.1 + pa_cvolume_snprint@PULSE_0 1:0.99.1 + pa_cvolume_valid@PULSE_0 1:0.99.1 + pa_ext_device_manager_delete@PULSE_0 1:0.99.1 + pa_ext_device_manager_enable_role_device_priority_routing@PULSE_0 1:0.99.1 + pa_ext_device_manager_read@PULSE_0 1:0.99.1 + pa_ext_device_manager_reorder_devices_for_role@PULSE_0 1:0.99.1 + pa_ext_device_manager_set_device_description@PULSE_0 1:0.99.1 + pa_ext_device_manager_set_subscribe_cb@PULSE_0 1:0.99.1 + pa_ext_device_manager_subscribe@PULSE_0 1:0.99.1 + pa_ext_device_manager_test@PULSE_0 1:0.99.1 + pa_ext_device_restore_read_sink_formats@PULSE_0 1:0.99.1 + pa_ext_device_restore_read_sink_formats_all@PULSE_0 1:0.99.1 + pa_ext_device_restore_save_sink_formats@PULSE_0 1:0.99.1 + pa_ext_device_restore_subscribe@PULSE_0 1:0.99.1 + pa_ext_device_restore_test@PULSE_0 1:0.99.1 + pa_ext_stream_restore_delete@PULSE_0 1:0.99.1 + pa_ext_stream_restore_read@PULSE_0 1:0.99.1 + pa_ext_stream_restore_set_subscribe_cb@PULSE_0 1:0.99.1 + pa_ext_stream_restore_subscribe@PULSE_0 1:0.99.1 + pa_ext_stream_restore_test@PULSE_0 1:0.99.1 + pa_ext_stream_restore_write@PULSE_0 1:0.99.1 + pa_frame_size@PULSE_0 1:0.99.1 + pa_get_binary_name@PULSE_0 1:0.99.1 + pa_get_fqdn@PULSE_0 1:0.99.1 + pa_get_home_dir@PULSE_0 1:0.99.1 + pa_get_host_name@PULSE_0 1:0.99.1 + pa_get_library_version@PULSE_0 1:0.99.1 + pa_get_user_name@PULSE_0 1:0.99.1 + pa_gettimeofday@PULSE_0 1:0.99.1 + pa_locale_to_utf8@PULSE_0 1:0.99.1 + pa_mainloop_api_once@PULSE_0 1:0.99.1 + pa_mainloop_dispatch@PULSE_0 1:0.99.1 + pa_mainloop_free@PULSE_0 1:0.99.1 + pa_mainloop_get_api@PULSE_0 1:0.99.1 + pa_mainloop_get_retval@PULSE_0 1:0.99.1 + pa_mainloop_iterate@PULSE_0 1:0.99.1 + pa_mainloop_new@PULSE_0 1:0.99.1 + pa_mainloop_poll@PULSE_0 1:0.99.1 + pa_mainloop_prepare@PULSE_0 1:0.99.1 + pa_mainloop_quit@PULSE_0 1:0.99.1 + pa_mainloop_run@PULSE_0 1:0.99.1 + pa_mainloop_set_poll_func@PULSE_0 1:0.99.1 + pa_mainloop_wakeup@PULSE_0 1:0.99.1 + pa_msleep@PULSE_0 1:0.99.1 + pa_operation_cancel@PULSE_0 1:0.99.1 + pa_operation_get_state@PULSE_0 1:0.99.1 + pa_operation_ref@PULSE_0 1:0.99.1 + pa_operation_unref@PULSE_0 1:0.99.1 + pa_parse_sample_format@PULSE_0 1:0.99.1 + pa_path_get_filename@PULSE_0 1:0.99.1 + pa_proplist_clear@PULSE_0 1:0.99.1 + pa_proplist_contains@PULSE_0 1:0.99.1 + pa_proplist_copy@PULSE_0 1:0.99.1 + pa_proplist_equal@PULSE_0 1:0.99.1 + pa_proplist_free@PULSE_0 1:0.99.1 + pa_proplist_from_string@PULSE_0 1:0.99.1 + pa_proplist_get@PULSE_0 1:0.99.1 + pa_proplist_gets@PULSE_0 1:0.99.1 + pa_proplist_isempty@PULSE_0 1:0.99.1 + pa_proplist_iterate@PULSE_0 1:0.99.1 + pa_proplist_new@PULSE_0 1:0.99.1 + pa_proplist_set@PULSE_0 1:0.99.1 + pa_proplist_setf@PULSE_0 1:0.99.1 + pa_proplist_setp@PULSE_0 1:0.99.1 + pa_proplist_sets@PULSE_0 1:0.99.1 + pa_proplist_size@PULSE_0 1:0.99.1 + pa_proplist_to_string@PULSE_0 1:0.99.1 + pa_proplist_to_string_sep@PULSE_0 1:0.99.1 + pa_proplist_unset@PULSE_0 1:0.99.1 + pa_proplist_unset_many@PULSE_0 1:0.99.1 + pa_proplist_update@PULSE_0 1:0.99.1 + pa_rtclock_now@PULSE_0 1:0.99.1 + pa_sample_format_is_be@PULSE_0 1:0.99.1 + pa_sample_format_is_le@PULSE_0 1:0.99.1 + pa_sample_format_to_string@PULSE_0 1:0.99.1 + pa_sample_size@PULSE_0 1:0.99.1 + pa_sample_size_of_format@PULSE_0 1:0.99.1 + pa_sample_spec_equal@PULSE_0 1:0.99.1 + pa_sample_spec_init@PULSE_0 1:0.99.1 + pa_sample_spec_snprint@PULSE_0 1:0.99.1 + pa_sample_spec_valid@PULSE_0 1:0.99.1 + pa_signal_done@PULSE_0 1:0.99.1 + pa_signal_free@PULSE_0 1:0.99.1 + pa_signal_init@PULSE_0 1:0.99.1 + pa_signal_new@PULSE_0 1:0.99.1 + pa_signal_set_destroy@PULSE_0 1:0.99.1 + pa_stream_begin_write@PULSE_0 1:0.99.1 + pa_stream_cancel_write@PULSE_0 1:0.99.1 + pa_stream_connect_playback@PULSE_0 1:0.99.1 + pa_stream_connect_record@PULSE_0 1:0.99.1 + pa_stream_connect_upload@PULSE_0 1:0.99.1 + pa_stream_cork@PULSE_0 1:0.99.1 + pa_stream_disconnect@PULSE_0 1:0.99.1 + pa_stream_drain@PULSE_0 1:0.99.1 + pa_stream_drop@PULSE_0 1:0.99.1 + pa_stream_finish_upload@PULSE_0 1:0.99.1 + pa_stream_flush@PULSE_0 1:0.99.1 + pa_stream_get_buffer_attr@PULSE_0 1:0.99.1 + pa_stream_get_channel_map@PULSE_0 1:0.99.1 + pa_stream_get_context@PULSE_0 1:0.99.1 + pa_stream_get_device_index@PULSE_0 1:0.99.1 + pa_stream_get_device_name@PULSE_0 1:0.99.1 + pa_stream_get_format_info@PULSE_0 1:0.99.1 + pa_stream_get_index@PULSE_0 1:0.99.1 + pa_stream_get_latency@PULSE_0 1:0.99.1 + pa_stream_get_monitor_stream@PULSE_0 1:0.99.1 + pa_stream_get_sample_spec@PULSE_0 1:0.99.1 + pa_stream_get_state@PULSE_0 1:0.99.1 + pa_stream_get_time@PULSE_0 1:0.99.1 + pa_stream_get_timing_info@PULSE_0 1:0.99.1 + pa_stream_get_underflow_index@PULSE_0 1:0.99.1 + pa_stream_is_corked@PULSE_0 1:0.99.1 + pa_stream_is_suspended@PULSE_0 1:0.99.1 + pa_stream_new@PULSE_0 1:0.99.1 + pa_stream_new_extended@PULSE_0 1:0.99.1 + pa_stream_new_with_proplist@PULSE_0 1:0.99.1 + pa_stream_peek@PULSE_0 1:0.99.1 + pa_stream_prebuf@PULSE_0 1:0.99.1 + pa_stream_proplist_remove@PULSE_0 1:0.99.1 + pa_stream_proplist_update@PULSE_0 1:0.99.1 + pa_stream_readable_size@PULSE_0 1:0.99.1 + pa_stream_ref@PULSE_0 1:0.99.1 + pa_stream_set_buffer_attr@PULSE_0 1:0.99.1 + pa_stream_set_buffer_attr_callback@PULSE_0 1:0.99.1 + pa_stream_set_event_callback@PULSE_0 1:0.99.1 + pa_stream_set_latency_update_callback@PULSE_0 1:0.99.1 + pa_stream_set_monitor_stream@PULSE_0 1:0.99.1 + pa_stream_set_moved_callback@PULSE_0 1:0.99.1 + pa_stream_set_name@PULSE_0 1:0.99.1 + pa_stream_set_overflow_callback@PULSE_0 1:0.99.1 + pa_stream_set_read_callback@PULSE_0 1:0.99.1 + pa_stream_set_started_callback@PULSE_0 1:0.99.1 + pa_stream_set_state_callback@PULSE_0 1:0.99.1 + pa_stream_set_suspended_callback@PULSE_0 1:0.99.1 + pa_stream_set_underflow_callback@PULSE_0 1:0.99.1 + pa_stream_set_write_callback@PULSE_0 1:0.99.1 + pa_stream_trigger@PULSE_0 1:0.99.1 + pa_stream_unref@PULSE_0 1:0.99.1 + pa_stream_update_sample_rate@PULSE_0 1:0.99.1 + pa_stream_update_timing_info@PULSE_0 1:0.99.1 + pa_stream_writable_size@PULSE_0 1:0.99.1 + pa_stream_write@PULSE_0 1:0.99.1 + pa_strerror@PULSE_0 1:0.99.1 + pa_sw_cvolume_divide@PULSE_0 1:0.99.1 + pa_sw_cvolume_divide_scalar@PULSE_0 1:0.99.1 + pa_sw_cvolume_multiply@PULSE_0 1:0.99.1 + pa_sw_cvolume_multiply_scalar@PULSE_0 1:0.99.1 + pa_sw_cvolume_snprint_dB@PULSE_0 1:0.99.1 + pa_sw_volume_divide@PULSE_0 1:0.99.1 + pa_sw_volume_from_dB@PULSE_0 1:0.99.1 + pa_sw_volume_from_linear@PULSE_0 1:0.99.1 + pa_sw_volume_multiply@PULSE_0 1:0.99.1 + pa_sw_volume_snprint_dB@PULSE_0 1:0.99.1 + pa_sw_volume_to_dB@PULSE_0 1:0.99.1 + pa_sw_volume_to_linear@PULSE_0 1:0.99.1 + pa_threaded_mainloop_accept@PULSE_0 1:0.99.1 + pa_threaded_mainloop_free@PULSE_0 1:0.99.1 + pa_threaded_mainloop_get_api@PULSE_0 1:0.99.1 + pa_threaded_mainloop_get_retval@PULSE_0 1:0.99.1 + pa_threaded_mainloop_in_thread@PULSE_0 1:0.99.1 + pa_threaded_mainloop_lock@PULSE_0 1:0.99.1 + pa_threaded_mainloop_new@PULSE_0 1:0.99.1 + pa_threaded_mainloop_signal@PULSE_0 1:0.99.1 + pa_threaded_mainloop_start@PULSE_0 1:0.99.1 + pa_threaded_mainloop_stop@PULSE_0 1:0.99.1 + pa_threaded_mainloop_unlock@PULSE_0 1:0.99.1 + pa_threaded_mainloop_wait@PULSE_0 1:0.99.1 + pa_timeval_add@PULSE_0 1:0.99.1 + pa_timeval_age@PULSE_0 1:0.99.1 + pa_timeval_cmp@PULSE_0 1:0.99.1 + pa_timeval_diff@PULSE_0 1:0.99.1 + pa_timeval_load@PULSE_0 1:0.99.1 + pa_timeval_store@PULSE_0 1:0.99.1 + pa_timeval_sub@PULSE_0 1:0.99.1 + pa_usec_to_bytes@PULSE_0 1:0.99.1 + pa_utf8_filter@PULSE_0 1:0.99.1 + pa_utf8_to_locale@PULSE_0 1:0.99.1 + pa_utf8_valid@PULSE_0 1:0.99.1 + pa_volume_snprint@PULSE_0 1:0.99.1 + pa_xfree@PULSE_0 1:0.99.1 + pa_xmalloc0@PULSE_0 1:0.99.1 + pa_xmalloc@PULSE_0 1:0.99.1 + pa_xmemdup@PULSE_0 1:0.99.1 + pa_xrealloc@PULSE_0 1:0.99.1 + pa_xstrdup@PULSE_0 1:0.99.1 + pa_xstrndup@PULSE_0 1:0.99.1 +libpulsecommon-0.99.so libpulse0 #MINVER# + pa_accept_cloexec@Base 1:0.99.1 + pa_ascii_filter@Base 1:0.99.1 + pa_ascii_valid@Base 1:0.99.1 + pa_atod@Base 1:0.99.1 + pa_atoi@Base 1:0.99.1 + pa_atol@Base 1:0.99.1 + pa_atou@Base 1:0.99.1 + pa_aupdate_free@Base 1:0.99.1 + pa_aupdate_new@Base 1:0.99.1 + pa_aupdate_read_begin@Base 1:0.99.1 + pa_aupdate_read_end@Base 1:0.99.1 + pa_aupdate_write_begin@Base 1:0.99.1 + pa_aupdate_write_end@Base 1:0.99.1 + pa_aupdate_write_swap@Base 1:0.99.1 + pa_authkey_load@Base 1:0.99.1 + pa_authkey_load_auto@Base 1:0.99.1 + pa_authkey_save@Base 1:0.99.1 + pa_autospawn_lock_acquire@Base 1:0.99.1 + pa_autospawn_lock_done@Base 1:0.99.1 + pa_autospawn_lock_init@Base 1:0.99.1 + pa_autospawn_lock_release@Base 1:0.99.1 + pa_bitset_equals@Base 1:0.99.1 + pa_bitset_get@Base 1:0.99.1 + pa_bitset_set@Base 1:0.99.1 + pa_bytes_per_second@Base 1:0.99.1 + pa_bytes_snprint@Base 1:0.99.1 + pa_bytes_to_usec@Base 1:0.99.1 + pa_channel_map_can_balance@Base 1:0.99.1 + pa_channel_map_can_fade@Base 1:0.99.1 + pa_channel_map_compatible@Base 1:0.99.1 + pa_channel_map_equal@Base 1:0.99.1 + pa_channel_map_has_position@Base 1:0.99.1 + pa_channel_map_init@Base 1:0.99.1 + pa_channel_map_init_auto@Base 1:0.99.1 + pa_channel_map_init_extend@Base 1:0.99.1 + pa_channel_map_init_mono@Base 1:0.99.1 + pa_channel_map_init_stereo@Base 1:0.99.1 + pa_channel_map_mask@Base 1:0.99.1 + pa_channel_map_parse@Base 1:0.99.1 + pa_channel_map_snprint@Base 1:0.99.1 + pa_channel_map_superset@Base 1:0.99.1 + pa_channel_map_to_name@Base 1:0.99.1 + pa_channel_map_to_pretty_name@Base 1:0.99.1 + pa_channel_map_valid@Base 1:0.99.1 + pa_channel_position_from_string@Base 1:0.99.1 + pa_channel_position_to_pretty_string@Base 1:0.99.1 + pa_channel_position_to_string@Base 1:0.99.1 + pa_check_in_group@Base 1:0.99.1 + pa_check_signal_is_blocked@Base 1:0.99.1 + pa_client_conf_env@Base 1:0.99.1 + pa_client_conf_free@Base 1:0.99.1 + pa_client_conf_from_x11@Base 1:0.99.1 + pa_client_conf_load@Base 1:0.99.1 + pa_client_conf_load_cookie@Base 1:0.99.1 + pa_client_conf_new@Base 1:0.99.1 + pa_close@Base 1:0.99.1 + pa_close_all@Base 1:0.99.1 + pa_close_allv@Base 1:0.99.1 + pa_close_pipe@Base 1:0.99.1 + pa_cond_free@Base 1:0.99.1 + pa_cond_new@Base 1:0.99.1 + pa_cond_signal@Base 1:0.99.1 + pa_cond_wait@Base 1:0.99.1 + pa_config_parse@Base 1:0.99.1 + pa_config_parse_bool@Base 1:0.99.1 + pa_config_parse_int@Base 1:0.99.1 + pa_config_parse_not_bool@Base 1:0.99.1 + pa_config_parse_size@Base 1:0.99.1 + pa_config_parse_string@Base 1:0.99.1 + pa_config_parse_unsigned@Base 1:0.99.1 + pa_cstrerror@Base 1:0.99.1 + pa_dbus_add_matches@Base 1:0.99.1 + pa_dbus_append_basic_array@Base 1:0.99.1 + pa_dbus_append_basic_array_variant@Base 1:0.99.1 + pa_dbus_append_basic_array_variant_dict_entry@Base 1:0.99.1 + pa_dbus_append_basic_variant@Base 1:0.99.1 + pa_dbus_append_basic_variant_dict_entry@Base 1:0.99.1 + pa_dbus_append_proplist@Base 1:0.99.1 + pa_dbus_append_proplist_variant@Base 1:0.99.1 + pa_dbus_append_proplist_variant_dict_entry@Base 1:0.99.1 + pa_dbus_free_pending_list@Base 1:0.99.1 + pa_dbus_get_proplist_arg@Base 1:0.99.1 + pa_dbus_pending_free@Base 1:0.99.1 + pa_dbus_pending_new@Base 1:0.99.1 + pa_dbus_remove_matches@Base 1:0.99.1 + pa_dbus_send_basic_array_variant_reply@Base 1:0.99.1 + pa_dbus_send_basic_value_reply@Base 1:0.99.1 + pa_dbus_send_basic_variant_reply@Base 1:0.99.1 + pa_dbus_send_empty_reply@Base 1:0.99.1 + pa_dbus_send_error@Base 1:0.99.1 + pa_dbus_send_proplist_variant_reply@Base 1:0.99.1 + pa_dbus_sync_pending_list@Base 1:0.99.1 + pa_dbus_wrap_connection_free@Base 1:0.99.1 + pa_dbus_wrap_connection_get@Base 1:0.99.1 + pa_dbus_wrap_connection_new@Base 1:0.99.1 + pa_dbus_wrap_connection_new_from_existing@Base 1:0.99.1 + pa_detect_fork@Base 1:0.99.1 + pa_disable_sigpipe@Base 1:0.99.1 + pa_dynarray_append@Base 1:0.99.1 + pa_dynarray_free@Base 1:0.99.1 + pa_dynarray_get@Base 1:0.99.1 + pa_dynarray_new@Base 1:0.99.1 + pa_dynarray_put@Base 1:0.99.1 + pa_dynarray_size@Base 1:0.99.1 + pa_encoding_to_string@Base 1:0.99.1 + pa_endswith@Base 1:0.99.1 + pa_escape@Base 1:0.99.1 + pa_find_config_file@Base 1:0.99.1 + pa_flist_free@Base 1:0.99.1 + pa_flist_new@Base 1:0.99.1 + pa_flist_new_with_name@Base 1:0.99.1 + pa_flist_pop@Base 1:0.99.1 + pa_flist_push@Base 1:0.99.1 + pa_fopen_cloexec@Base 1:0.99.1 + pa_format_info_copy@Base 1:0.99.1 + pa_format_info_free2@Base 1:0.99.1 + pa_format_info_free@Base 1:0.99.1 + pa_format_info_from_sample_spec@Base 1:0.99.1 + pa_format_info_get_prop_int@Base 1:0.99.1 + pa_format_info_get_prop_string@Base 1:0.99.1 + pa_format_info_is_compatible@Base 1:0.99.1 + pa_format_info_is_pcm@Base 1:0.99.1 + pa_format_info_new@Base 1:0.99.1 + pa_format_info_set_channel_map@Base 1:0.99.1 + pa_format_info_set_channels@Base 1:0.99.1 + pa_format_info_set_prop_int@Base 1:0.99.1 + pa_format_info_set_prop_int_array@Base 1:0.99.1 + pa_format_info_set_prop_int_range@Base 1:0.99.1 + pa_format_info_set_prop_string@Base 1:0.99.1 + pa_format_info_set_prop_string_array@Base 1:0.99.1 + pa_format_info_set_rate@Base 1:0.99.1 + pa_format_info_set_sample_format@Base 1:0.99.1 + pa_format_info_snprint@Base 1:0.99.1 + pa_format_info_to_sample_spec@Base 1:0.99.1 + pa_format_info_to_sample_spec_fake@Base 1:0.99.1 + pa_format_info_valid@Base 1:0.99.1 + pa_frame_size@Base 1:0.99.1 + pa_gcd@Base 1:0.99.1 + pa_get_binary_name@Base 1:0.99.1 + pa_get_binary_name_malloc@Base 1:0.99.1 + pa_get_fqdn@Base 1:0.99.1 + pa_get_gid_of_group@Base 1:0.99.1 + pa_get_home_dir@Base 1:0.99.1 + pa_get_home_dir_malloc@Base 1:0.99.1 + pa_get_host_name@Base 1:0.99.1 + pa_get_host_name_malloc@Base 1:0.99.1 + pa_get_runtime_dir@Base 1:0.99.1 + pa_get_state_dir@Base 1:0.99.1 + pa_get_temp_dir@Base 1:0.99.1 + pa_get_user_name@Base 1:0.99.1 + pa_get_user_name_malloc@Base 1:0.99.1 + pa_getcwd@Base 1:0.99.1 + pa_getgrgid_free@Base 1:0.99.1 + pa_getgrgid_malloc@Base 1:0.99.1 + pa_getgrnam_free@Base 1:0.99.1 + pa_getgrnam_malloc@Base 1:0.99.1 + pa_getpwnam_free@Base 1:0.99.1 + pa_getpwnam_malloc@Base 1:0.99.1 + pa_getpwuid_free@Base 1:0.99.1 + pa_getpwuid_malloc@Base 1:0.99.1 + pa_gettimeofday@Base 1:0.99.1 + pa_hashmap_first@Base 1:0.99.1 + pa_hashmap_free@Base 1:0.99.1 + pa_hashmap_get@Base 1:0.99.1 + pa_hashmap_isempty@Base 1:0.99.1 + pa_hashmap_iterate@Base 1:0.99.1 + pa_hashmap_iterate_backwards@Base 1:0.99.1 + pa_hashmap_last@Base 1:0.99.1 + pa_hashmap_new@Base 1:0.99.1 + pa_hashmap_put@Base 1:0.99.1 + pa_hashmap_remove@Base 1:0.99.1 + pa_hashmap_size@Base 1:0.99.1 + pa_hashmap_steal_first@Base 1:0.99.1 + pa_hexstr@Base 1:0.99.1 + pa_idxset_copy@Base 1:0.99.1 + pa_idxset_first@Base 1:0.99.1 + pa_idxset_free@Base 1:0.99.1 + pa_idxset_get_by_data@Base 1:0.99.1 + pa_idxset_get_by_index@Base 1:0.99.1 + pa_idxset_isempty@Base 1:0.99.1 + pa_idxset_iterate@Base 1:0.99.1 + pa_idxset_new@Base 1:0.99.1 + pa_idxset_next@Base 1:0.99.1 + pa_idxset_put@Base 1:0.99.1 + pa_idxset_remove_by_data@Base 1:0.99.1 + pa_idxset_remove_by_index@Base 1:0.99.1 + pa_idxset_rrobin@Base 1:0.99.1 + pa_idxset_size@Base 1:0.99.1 + pa_idxset_steal_first@Base 1:0.99.1 + pa_idxset_string_compare_func@Base 1:0.99.1 + pa_idxset_string_hash_func@Base 1:0.99.1 + pa_idxset_trivial_compare_func@Base 1:0.99.1 + pa_idxset_trivial_hash_func@Base 1:0.99.1 + pa_in_system_mode@Base 1:0.99.1 + pa_init_i18n@Base 1:0.99.1 + pa_init_proplist@Base 1:0.99.1 + pa_iochannel_creds_enable@Base 1:0.99.1 + pa_iochannel_creds_supported@Base 1:0.99.1 + pa_iochannel_free@Base 1:0.99.1 + pa_iochannel_get_mainloop_api@Base 1:0.99.1 + pa_iochannel_get_recv_fd@Base 1:0.99.1 + pa_iochannel_get_send_fd@Base 1:0.99.1 + pa_iochannel_is_hungup@Base 1:0.99.1 + pa_iochannel_is_readable@Base 1:0.99.1 + pa_iochannel_is_writable@Base 1:0.99.1 + pa_iochannel_new@Base 1:0.99.1 + pa_iochannel_read@Base 1:0.99.1 + pa_iochannel_read_with_creds@Base 1:0.99.1 + pa_iochannel_set_callback@Base 1:0.99.1 + pa_iochannel_set_noclose@Base 1:0.99.1 + pa_iochannel_socket_is_local@Base 1:0.99.1 + pa_iochannel_socket_peer_to_string@Base 1:0.99.1 + pa_iochannel_socket_set_rcvbuf@Base 1:0.99.1 + pa_iochannel_socket_set_sndbuf@Base 1:0.99.1 + pa_iochannel_write@Base 1:0.99.1 + pa_iochannel_write_with_creds@Base 1:0.99.1 + pa_ioline_close@Base 1:0.99.1 + pa_ioline_defer_close@Base 1:0.99.1 + pa_ioline_detach_iochannel@Base 1:0.99.1 + pa_ioline_is_drained@Base 1:0.99.1 + pa_ioline_new@Base 1:0.99.1 + pa_ioline_printf@Base 1:0.99.1 + pa_ioline_puts@Base 1:0.99.1 + pa_ioline_ref@Base 1:0.99.1 + pa_ioline_set_callback@Base 1:0.99.1 + pa_ioline_set_drain_callback@Base 1:0.99.1 + pa_ioline_unref@Base 1:0.99.1 + pa_ip_acl_check@Base 1:0.99.1 + pa_ip_acl_free@Base 1:0.99.1 + pa_ip_acl_new@Base 1:0.99.1 + pa_is_ip_address@Base 1:0.99.1 + pa_is_path_absolute@Base 1:0.99.1 + pa_locale_to_utf8@Base 1:0.99.1 + pa_lock_fd@Base 1:0.99.1 + pa_lock_lockfile@Base 1:0.99.1 + pa_log_level@Base 1:0.99.1 + pa_log_level_meta@Base 1:0.99.1 + pa_log_levelv@Base 1:0.99.1 + pa_log_levelv_meta@Base 1:0.99.1 + pa_log_ratelimit@Base 1:0.99.1 + pa_log_set_fd@Base 1:0.99.1 + pa_log_set_flags@Base 1:0.99.1 + pa_log_set_ident@Base 1:0.99.1 + pa_log_set_level@Base 1:0.99.1 + pa_log_set_show_backtrace@Base 1:0.99.1 + pa_log_set_skip_backtrace@Base 1:0.99.1 + pa_log_set_target@Base 1:0.99.1 + pa_loop_read@Base 1:0.99.1 + pa_loop_write@Base 1:0.99.1 + pa_machine_id@Base 1:0.99.1 + pa_make_fd_cloexec@Base 1:0.99.1 + pa_make_fd_nonblock@Base 1:0.99.1 + pa_make_path_absolute@Base 1:0.99.1 + pa_make_realtime@Base 1:0.99.1 + pa_make_secure_dir@Base 1:0.99.1 + pa_make_secure_parent_dir@Base 1:0.99.1 + pa_make_socket_low_delay@Base 1:0.99.1 + pa_make_tcp_socket_low_delay@Base 1:0.99.1 + pa_make_udp_socket_low_delay@Base 1:0.99.1 + pa_match@Base 1:0.99.1 + pa_maybe_prefix_path@Base 1:0.99.1 + pa_mcalign_csize@Base 1:0.99.1 + pa_mcalign_flush@Base 1:0.99.1 + pa_mcalign_free@Base 1:0.99.1 + pa_mcalign_new@Base 1:0.99.1 + pa_mcalign_pop@Base 1:0.99.1 + pa_mcalign_push@Base 1:0.99.1 + pa_memblock_acquire@Base 1:0.99.1 + pa_memblock_get_length@Base 1:0.99.1 + pa_memblock_get_pool@Base 1:0.99.1 + pa_memblock_is_read_only@Base 1:0.99.1 + pa_memblock_is_silence@Base 1:0.99.1 + pa_memblock_new@Base 1:0.99.1 + pa_memblock_new_fixed@Base 1:0.99.1 + pa_memblock_new_pool@Base 1:0.99.1 + pa_memblock_new_user@Base 1:0.99.1 + pa_memblock_ref@Base 1:0.99.1 + pa_memblock_ref_is_one@Base 1:0.99.1 + pa_memblock_release@Base 1:0.99.1 + pa_memblock_set_is_silence@Base 1:0.99.1 + pa_memblock_unref@Base 1:0.99.1 + pa_memblock_unref_fixed@Base 1:0.99.1 + pa_memblock_will_need@Base 1:0.99.1 + pa_memblockq_apply_attr@Base 1:0.99.1 + pa_memblockq_drop@Base 1:0.99.1 + pa_memblockq_flush_read@Base 1:0.99.1 + pa_memblockq_flush_write@Base 1:0.99.1 + pa_memblockq_free@Base 1:0.99.1 + pa_memblockq_get_attr@Base 1:0.99.1 + pa_memblockq_get_base@Base 1:0.99.1 + pa_memblockq_get_length@Base 1:0.99.1 + pa_memblockq_get_maxlength@Base 1:0.99.1 + pa_memblockq_get_maxrewind@Base 1:0.99.1 + pa_memblockq_get_minreq@Base 1:0.99.1 + pa_memblockq_get_nblocks@Base 1:0.99.1 + pa_memblockq_get_prebuf@Base 1:0.99.1 + pa_memblockq_get_read_index@Base 1:0.99.1 + pa_memblockq_get_tlength@Base 1:0.99.1 + pa_memblockq_get_write_index@Base 1:0.99.1 + pa_memblockq_is_empty@Base 1:0.99.1 + pa_memblockq_is_readable@Base 1:0.99.1 + pa_memblockq_missing@Base 1:0.99.1 + pa_memblockq_new@Base 1:0.99.1 + pa_memblockq_peek@Base 1:0.99.1 + pa_memblockq_peek_fixed_size@Base 1:0.99.1 + pa_memblockq_pop_missing@Base 1:0.99.1 + pa_memblockq_prebuf_active@Base 1:0.99.1 + pa_memblockq_prebuf_disable@Base 1:0.99.1 + pa_memblockq_prebuf_force@Base 1:0.99.1 + pa_memblockq_push@Base 1:0.99.1 + pa_memblockq_push_align@Base 1:0.99.1 + pa_memblockq_rewind@Base 1:0.99.1 + pa_memblockq_seek@Base 1:0.99.1 + pa_memblockq_set_maxlength@Base 1:0.99.1 + pa_memblockq_set_maxrewind@Base 1:0.99.1 + pa_memblockq_set_minreq@Base 1:0.99.1 + pa_memblockq_set_prebuf@Base 1:0.99.1 + pa_memblockq_set_silence@Base 1:0.99.1 + pa_memblockq_set_tlength@Base 1:0.99.1 + pa_memblockq_silence@Base 1:0.99.1 + pa_memblockq_splice@Base 1:0.99.1 + pa_memblockq_willneed@Base 1:0.99.1 + pa_memchunk_isset@Base 1:0.99.1 + pa_memchunk_make_writable@Base 1:0.99.1 + pa_memchunk_memcpy@Base 1:0.99.1 + pa_memchunk_reset@Base 1:0.99.1 + pa_memchunk_will_need@Base 1:0.99.1 + pa_memexport_free@Base 1:0.99.1 + pa_memexport_new@Base 1:0.99.1 + pa_memexport_process_release@Base 1:0.99.1 + pa_memexport_put@Base 1:0.99.1 + pa_memimport_free@Base 1:0.99.1 + pa_memimport_get@Base 1:0.99.1 + pa_memimport_new@Base 1:0.99.1 + pa_memimport_process_revoke@Base 1:0.99.1 + pa_mempool_block_size_max@Base 1:0.99.1 + pa_mempool_free@Base 1:0.99.1 + pa_mempool_get_shm_id@Base 1:0.99.1 + pa_mempool_get_stat@Base 1:0.99.1 + pa_mempool_is_shared@Base 1:0.99.1 + pa_mempool_new@Base 1:0.99.1 + pa_mempool_vacuum@Base 1:0.99.1 + pa_memtrap_add@Base 1:0.99.1 + pa_memtrap_install@Base 1:0.99.1 + pa_memtrap_is_good@Base 1:0.99.1 + pa_memtrap_remove@Base 1:0.99.1 + pa_memtrap_update@Base 1:0.99.1 + pa_msleep@Base 1:0.99.1 + pa_mutex_free@Base 1:0.99.1 + pa_mutex_lock@Base 1:0.99.1 + pa_mutex_new@Base 1:0.99.1 + pa_mutex_try_lock@Base 1:0.99.1 + pa_mutex_unlock@Base 1:0.99.1 + pa_ncpus@Base 1:0.99.1 + pa_nullify_stdfds@Base 1:0.99.1 + pa_once_begin@Base 1:0.99.1 + pa_once_end@Base 1:0.99.1 + pa_open_cloexec@Base 1:0.99.1 + pa_open_config_file@Base 1:0.99.1 + pa_own_uid_in_group@Base 1:0.99.1 + pa_packet_new@Base 1:0.99.1 + pa_packet_new_dynamic@Base 1:0.99.1 + pa_packet_ref@Base 1:0.99.1 + pa_packet_unref@Base 1:0.99.1 + pa_parent_dir@Base 1:0.99.1 + pa_parse_address@Base 1:0.99.1 + pa_parse_boolean@Base 1:0.99.1 + pa_parse_sample_format@Base 1:0.99.1 + pa_parsehex@Base 1:0.99.1 + pa_path_get_filename@Base 1:0.99.1 + pa_pdispatch_creds@Base 1:0.99.1 + pa_pdispatch_is_pending@Base 1:0.99.1 + pa_pdispatch_new@Base 1:0.99.1 + pa_pdispatch_ref@Base 1:0.99.1 + pa_pdispatch_register_reply@Base 1:0.99.1 + pa_pdispatch_run@Base 1:0.99.1 + pa_pdispatch_set_drain_callback@Base 1:0.99.1 + pa_pdispatch_unref@Base 1:0.99.1 + pa_pdispatch_unregister_reply@Base 1:0.99.1 + pa_pid_file_check_running@Base 1:0.99.1 + pa_pid_file_create@Base 1:0.99.1 + pa_pid_file_kill@Base 1:0.99.1 + pa_pid_file_remove@Base 1:0.99.1 + pa_pipe_buf@Base 1:0.99.1 + pa_pipe_cloexec@Base 1:0.99.1 + pa_prioq_free@Base 1:0.99.1 + pa_prioq_isempty@Base 1:0.99.1 + pa_prioq_new@Base 1:0.99.1 + pa_prioq_peek@Base 1:0.99.1 + pa_prioq_pop@Base 1:0.99.1 + pa_prioq_put@Base 1:0.99.1 + pa_prioq_remove@Base 1:0.99.1 + pa_prioq_reshuffle@Base 1:0.99.1 + pa_prioq_size@Base 1:0.99.1 + pa_proplist_clear@Base 1:0.99.1 + pa_proplist_contains@Base 1:0.99.1 + pa_proplist_copy@Base 1:0.99.1 + pa_proplist_equal@Base 1:0.99.1 + pa_proplist_free@Base 1:0.99.1 + pa_proplist_from_string@Base 1:0.99.1 + pa_proplist_get@Base 1:0.99.1 + pa_proplist_gets@Base 1:0.99.1 + pa_proplist_isempty@Base 1:0.99.1 + pa_proplist_iterate@Base 1:0.99.1 + pa_proplist_new@Base 1:0.99.1 + pa_proplist_set@Base 1:0.99.1 + pa_proplist_setf@Base 1:0.99.1 + pa_proplist_setp@Base 1:0.99.1 + pa_proplist_sets@Base 1:0.99.1 + pa_proplist_size@Base 1:0.99.1 + pa_proplist_to_string@Base 1:0.99.1 + pa_proplist_to_string_sep@Base 1:0.99.1 + pa_proplist_unset@Base 1:0.99.1 + pa_proplist_unset_many@Base 1:0.99.1 + pa_proplist_update@Base 1:0.99.1 + pa_pstream_enable_shm@Base 1:0.99.1 + pa_pstream_get_shm@Base 1:0.99.1 + pa_pstream_is_pending@Base 1:0.99.1 + pa_pstream_new@Base 1:0.99.1 + pa_pstream_ref@Base 1:0.99.1 + pa_pstream_send_error@Base 1:0.99.1 + pa_pstream_send_memblock@Base 1:0.99.1 + pa_pstream_send_packet@Base 1:0.99.1 + pa_pstream_send_release@Base 1:0.99.1 + pa_pstream_send_revoke@Base 1:0.99.1 + pa_pstream_send_simple_ack@Base 1:0.99.1 + pa_pstream_send_tagstruct_with_creds@Base 1:0.99.1 + pa_pstream_set_die_callback@Base 1:0.99.1 + pa_pstream_set_drain_callback@Base 1:0.99.1 + pa_pstream_set_recieve_memblock_callback@Base 1:0.99.1 + pa_pstream_set_recieve_packet_callback@Base 1:0.99.1 + pa_pstream_set_release_callback@Base 1:0.99.1 + pa_pstream_set_revoke_callback@Base 1:0.99.1 + pa_pstream_unlink@Base 1:0.99.1 + pa_pstream_unref@Base 1:0.99.1 + pa_queue_free@Base 1:0.99.1 + pa_queue_isempty@Base 1:0.99.1 + pa_queue_new@Base 1:0.99.1 + pa_queue_pop@Base 1:0.99.1 + pa_queue_push@Base 1:0.99.1 + pa_raise_priority@Base 1:0.99.1 + pa_random@Base 1:0.99.1 + pa_random_seed@Base 1:0.99.1 + pa_ratelimit_test@Base 1:0.99.1 + pa_read@Base 1:0.99.1 + pa_read_line_from_file@Base 1:0.99.1 + pa_readlink@Base 1:0.99.1 + pa_realpath@Base 1:0.99.1 + pa_reduce@Base 1:0.99.1 + pa_replace@Base 1:0.99.1 + pa_reset_personality@Base 1:0.99.1 + pa_reset_priority@Base 1:0.99.1 + pa_reset_sigs@Base 1:0.99.1 + pa_reset_sigsv@Base 1:0.99.1 + pa_rtclock_age@Base 1:0.99.1 + pa_rtclock_from_wallclock@Base 1:0.99.1 + pa_rtclock_get@Base 1:0.99.1 + pa_rtclock_hrtimer@Base 1:0.99.1 + pa_rtclock_hrtimer_enable@Base 1:0.99.1 + pa_rtclock_now@Base 1:0.99.1 + pa_run_once@Base 1:0.99.1 + pa_running_in_vm@Base 1:0.99.1 + pa_runtime_path@Base 1:0.99.1 + pa_sample_format_is_be@Base 1:0.99.1 + pa_sample_format_is_le@Base 1:0.99.1 + pa_sample_format_to_string@Base 1:0.99.1 + pa_sample_size@Base 1:0.99.1 + pa_sample_size_of_format@Base 1:0.99.1 + pa_sample_spec_equal@Base 1:0.99.1 + pa_sample_spec_init@Base 1:0.99.1 + pa_sample_spec_snprint@Base 1:0.99.1 + pa_sample_spec_valid@Base 1:0.99.1 + pa_semaphore_free@Base 1:0.99.1 + pa_semaphore_new@Base 1:0.99.1 + pa_semaphore_post@Base 1:0.99.1 + pa_semaphore_wait@Base 1:0.99.1 + pa_session_id@Base 1:0.99.1 + pa_set_env@Base 1:0.99.1 + pa_set_env_and_record@Base 1:0.99.1 + pa_shm_attach_ro@Base 1:0.99.1 + pa_shm_cleanup@Base 1:0.99.1 + pa_shm_create_rw@Base 1:0.99.1 + pa_shm_free@Base 1:0.99.1 + pa_shm_punch@Base 1:0.99.1 + pa_sig2str@Base 1:0.99.1 + pa_smoother_fix_now@Base 1:0.99.1 + pa_smoother_free@Base 1:0.99.1 + pa_smoother_get@Base 1:0.99.1 + pa_smoother_new@Base 1:0.99.1 + pa_smoother_pause@Base 1:0.99.1 + pa_smoother_put@Base 1:0.99.1 + pa_smoother_reset@Base 1:0.99.1 + pa_smoother_resume@Base 1:0.99.1 + pa_smoother_set_time_offset@Base 1:0.99.1 + pa_smoother_translate@Base 1:0.99.1 + pa_sndfile_dump_formats@Base 1:0.99.1 + pa_sndfile_format_from_string@Base 1:0.99.1 + pa_sndfile_init_proplist@Base 1:0.99.1 + pa_sndfile_read_channel_map@Base 1:0.99.1 + pa_sndfile_read_sample_spec@Base 1:0.99.1 + pa_sndfile_readf_function@Base 1:0.99.1 + pa_sndfile_write_channel_map@Base 1:0.99.1 + pa_sndfile_write_sample_spec@Base 1:0.99.1 + pa_sndfile_writef_function@Base 1:0.99.1 + pa_snprintf@Base 1:0.99.1 + pa_socket_address_is_local@Base 1:0.99.1 + pa_socket_client_is_local@Base 1:0.99.1 + pa_socket_client_new_ipv4@Base 1:0.99.1 + pa_socket_client_new_ipv6@Base 1:0.99.1 + pa_socket_client_new_sockaddr@Base 1:0.99.1 + pa_socket_client_new_string@Base 1:0.99.1 + pa_socket_client_new_unix@Base 1:0.99.1 + pa_socket_client_ref@Base 1:0.99.1 + pa_socket_client_set_callback@Base 1:0.99.1 + pa_socket_client_unref@Base 1:0.99.1 + pa_socket_cloexec@Base 1:0.99.1 + pa_socket_is_local@Base 1:0.99.1 + pa_socket_peer_to_string@Base 1:0.99.1 + pa_socket_server_get_address@Base 1:0.99.1 + pa_socket_server_new@Base 1:0.99.1 + pa_socket_server_new_ipv4@Base 1:0.99.1 + pa_socket_server_new_ipv4_any@Base 1:0.99.1 + pa_socket_server_new_ipv4_loopback@Base 1:0.99.1 + pa_socket_server_new_ipv4_string@Base 1:0.99.1 + pa_socket_server_new_ipv6@Base 1:0.99.1 + pa_socket_server_new_ipv6_any@Base 1:0.99.1 + pa_socket_server_new_ipv6_loopback@Base 1:0.99.1 + pa_socket_server_new_ipv6_string@Base 1:0.99.1 + pa_socket_server_new_unix@Base 1:0.99.1 + pa_socket_server_ref@Base 1:0.99.1 + pa_socket_server_set_callback@Base 1:0.99.1 + pa_socket_server_unref@Base 1:0.99.1 + pa_socket_set_rcvbuf@Base 1:0.99.1 + pa_socket_set_sndbuf@Base 1:0.99.1 + pa_split@Base 1:0.99.1 + pa_split_spaces@Base 1:0.99.1 + pa_split_spaces_strv@Base 1:0.99.1 + pa_sprintf_malloc@Base 1:0.99.1 + pa_startswith@Base 1:0.99.1 + pa_state_path@Base 1:0.99.1 + pa_static_mutex_get@Base 1:0.99.1 + pa_static_semaphore_get@Base 1:0.99.1 + pa_strbuf_free@Base 1:0.99.1 + pa_strbuf_isempty@Base 1:0.99.1 + pa_strbuf_new@Base 1:0.99.1 + pa_strbuf_printf@Base 1:0.99.1 + pa_strbuf_putc@Base 1:0.99.1 + pa_strbuf_puts@Base 1:0.99.1 + pa_strbuf_putsn@Base 1:0.99.1 + pa_strbuf_tostring@Base 1:0.99.1 + pa_strbuf_tostring_free@Base 1:0.99.1 + pa_strip@Base 1:0.99.1 + pa_strip_nl@Base 1:0.99.1 + pa_strlcpy@Base 1:0.99.1 + pa_strlist_data@Base 1:0.99.1 + pa_strlist_free@Base 1:0.99.1 + pa_strlist_next@Base 1:0.99.1 + pa_strlist_parse@Base 1:0.99.1 + pa_strlist_pop@Base 1:0.99.1 + pa_strlist_prepend@Base 1:0.99.1 + pa_strlist_remove@Base 1:0.99.1 + pa_strlist_reverse@Base 1:0.99.1 + pa_strlist_tostring@Base 1:0.99.1 + pa_tagstruct_data@Base 1:0.99.1 + pa_tagstruct_eof@Base 1:0.99.1 + pa_tagstruct_free@Base 1:0.99.1 + pa_tagstruct_free_data@Base 1:0.99.1 + pa_tagstruct_get@Base 1:0.99.1 + pa_tagstruct_get_arbitrary@Base 1:0.99.1 + pa_tagstruct_get_boolean@Base 1:0.99.1 + pa_tagstruct_get_channel_map@Base 1:0.99.1 + pa_tagstruct_get_cvolume@Base 1:0.99.1 + pa_tagstruct_get_format_info@Base 1:0.99.1 + pa_tagstruct_get_proplist@Base 1:0.99.1 + pa_tagstruct_get_sample_spec@Base 1:0.99.1 + pa_tagstruct_get_timeval@Base 1:0.99.1 + pa_tagstruct_get_usec@Base 1:0.99.1 + pa_tagstruct_get_volume@Base 1:0.99.1 + pa_tagstruct_gets64@Base 1:0.99.1 + pa_tagstruct_gets@Base 1:0.99.1 + pa_tagstruct_getu32@Base 1:0.99.1 + pa_tagstruct_getu64@Base 1:0.99.1 + pa_tagstruct_getu8@Base 1:0.99.1 + pa_tagstruct_new@Base 1:0.99.1 + pa_tagstruct_put@Base 1:0.99.1 + pa_tagstruct_put_arbitrary@Base 1:0.99.1 + pa_tagstruct_put_boolean@Base 1:0.99.1 + pa_tagstruct_put_channel_map@Base 1:0.99.1 + pa_tagstruct_put_cvolume@Base 1:0.99.1 + pa_tagstruct_put_format_info@Base 1:0.99.1 + pa_tagstruct_put_proplist@Base 1:0.99.1 + pa_tagstruct_put_sample_spec@Base 1:0.99.1 + pa_tagstruct_put_timeval@Base 1:0.99.1 + pa_tagstruct_put_usec@Base 1:0.99.1 + pa_tagstruct_put_volume@Base 1:0.99.1 + pa_tagstruct_puts64@Base 1:0.99.1 + pa_tagstruct_puts@Base 1:0.99.1 + pa_tagstruct_putu32@Base 1:0.99.1 + pa_tagstruct_putu64@Base 1:0.99.1 + pa_tagstruct_putu8@Base 1:0.99.1 + pa_thread_free@Base 1:0.99.1 + pa_thread_get_data@Base 1:0.99.1 + pa_thread_get_name@Base 1:0.99.1 + pa_thread_is_running@Base 1:0.99.1 + pa_thread_join@Base 1:0.99.1 + pa_thread_new@Base 1:0.99.1 + pa_thread_self@Base 1:0.99.1 + pa_thread_set_data@Base 1:0.99.1 + pa_thread_set_name@Base 1:0.99.1 + pa_thread_yield@Base 1:0.99.1 + pa_timespec_load@Base 1:0.99.1 + pa_timespec_store@Base 1:0.99.1 + pa_timeval_add@Base 1:0.99.1 + pa_timeval_age@Base 1:0.99.1 + pa_timeval_cmp@Base 1:0.99.1 + pa_timeval_diff@Base 1:0.99.1 + pa_timeval_load@Base 1:0.99.1 + pa_timeval_rtstore@Base 1:0.99.1 + pa_timeval_store@Base 1:0.99.1 + pa_timeval_sub@Base 1:0.99.1 + pa_tls_free@Base 1:0.99.1 + pa_tls_get@Base 1:0.99.1 + pa_tls_new@Base 1:0.99.1 + pa_tls_set@Base 1:0.99.1 + pa_tokenizer_free@Base 1:0.99.1 + pa_tokenizer_get@Base 1:0.99.1 + pa_tokenizer_new@Base 1:0.99.1 + pa_truncate_utf8@Base 1:0.99.1 + pa_uid_in_group@Base 1:0.99.1 + pa_uname_string@Base 1:0.99.1 + pa_unblock_sigs@Base 1:0.99.1 + pa_unblock_sigsv@Base 1:0.99.1 + pa_unescape@Base 1:0.99.1 + pa_unix_socket_is_stale@Base 1:0.99.1 + pa_unix_socket_remove_stale@Base 1:0.99.1 + pa_unlock_lockfile@Base 1:0.99.1 + pa_unset_env_recorded@Base 1:0.99.1 + pa_usec_to_bytes@Base 1:0.99.1 + pa_utf8_filter@Base 1:0.99.1 + pa_utf8_to_locale@Base 1:0.99.1 + pa_utf8_valid@Base 1:0.99.1 + pa_vsnprintf@Base 1:0.99.1 + pa_vsprintf_malloc@Base 1:0.99.1 + pa_will_need@Base 1:0.99.1 + pa_write@Base 1:0.99.1 + pa_x11_del_prop@Base 1:0.99.1 + pa_x11_get_prop@Base 1:0.99.1 + pa_x11_set_prop@Base 1:0.99.1 + pa_xfree@Base 1:0.99.1 + pa_xfreev@Base 1:0.99.1 + pa_xmalloc0@Base 1:0.99.1 + pa_xmalloc@Base 1:0.99.1 + pa_xmemdup@Base 1:0.99.1 + pa_xrealloc@Base 1:0.99.1 + pa_xstrdup@Base 1:0.99.1 + pa_xstrndup@Base 1:0.99.1 + pretty_table@Base 1:0.99.1 + rtkit_make_high_priority@Base 1:0.99.1 + rtkit_make_realtime@Base 1:0.99.1 + table@Base 1:0.99.1 +libpulsecore-0.99.so libpulse0 #MINVER# + av_build_filter@Base 1:0.99.1 + av_resample@Base 1:0.99.1 + av_resample_close@Base 1:0.99.1 + av_resample_compensate@Base 1:0.99.1 + av_resample_init@Base 1:0.99.1 + pa_asyncmsgq_dispatch@Base 1:0.99.1 + pa_asyncmsgq_dispatching@Base 1:0.99.1 + pa_asyncmsgq_done@Base 1:0.99.1 + pa_asyncmsgq_flush@Base 1:0.99.1 + pa_asyncmsgq_get@Base 1:0.99.1 + pa_asyncmsgq_new@Base 1:0.99.1 + pa_asyncmsgq_post@Base 1:0.99.1 + pa_asyncmsgq_process_one@Base 1:0.99.1 + pa_asyncmsgq_read_after_poll@Base 1:0.99.1 + pa_asyncmsgq_read_before_poll@Base 1:0.99.1 + pa_asyncmsgq_read_fd@Base 1:0.99.1 + pa_asyncmsgq_ref@Base 1:0.99.1 + pa_asyncmsgq_send@Base 1:0.99.1 + pa_asyncmsgq_unref@Base 1:0.99.1 + pa_asyncmsgq_wait_for@Base 1:0.99.1 + pa_asyncmsgq_write_after_poll@Base 1:0.99.1 + pa_asyncmsgq_write_before_poll@Base 1:0.99.1 + pa_asyncmsgq_write_fd@Base 1:0.99.1 + pa_asyncq_free@Base 1:0.99.1 + pa_asyncq_new@Base 1:0.99.1 + pa_asyncq_pop@Base 1:0.99.1 + pa_asyncq_post@Base 1:0.99.1 + pa_asyncq_push@Base 1:0.99.1 + pa_asyncq_read_after_poll@Base 1:0.99.1 + pa_asyncq_read_before_poll@Base 1:0.99.1 + pa_asyncq_read_fd@Base 1:0.99.1 + pa_asyncq_write_after_poll@Base 1:0.99.1 + pa_asyncq_write_before_poll@Base 1:0.99.1 + pa_asyncq_write_fd@Base 1:0.99.1 + pa_auth_cookie_get@Base 1:0.99.1 + pa_auth_cookie_read@Base 1:0.99.1 + pa_auth_cookie_ref@Base 1:0.99.1 + pa_auth_cookie_unref@Base 1:0.99.1 + pa_bytes_to_usec_round_up@Base 1:0.99.1 + pa_card_free@Base 1:0.99.1 + pa_card_list_to_string@Base 1:0.99.1 + pa_card_new@Base 1:0.99.1 + pa_card_new_data_done@Base 1:0.99.1 + pa_card_new_data_init@Base 1:0.99.1 + pa_card_new_data_set_name@Base 1:0.99.1 + pa_card_new_data_set_profile@Base 1:0.99.1 + pa_card_profile_free@Base 1:0.99.1 + pa_card_profile_new@Base 1:0.99.1 + pa_card_set_profile@Base 1:0.99.1 + pa_card_suspend@Base 1:0.99.1 + pa_cli_command_execute@Base 1:0.99.1 + pa_cli_command_execute_file@Base 1:0.99.1 + pa_cli_command_execute_file_stream@Base 1:0.99.1 + pa_cli_command_execute_line@Base 1:0.99.1 + pa_cli_command_execute_line_stateful@Base 1:0.99.1 + pa_client_free@Base 1:0.99.1 + pa_client_kill@Base 1:0.99.1 + pa_client_list_to_string@Base 1:0.99.1 + pa_client_new@Base 1:0.99.1 + pa_client_new_data_done@Base 1:0.99.1 + pa_client_new_data_init@Base 1:0.99.1 + pa_client_send_event@Base 1:0.99.1 + pa_client_set_name@Base 1:0.99.1 + pa_client_update_proplist@Base 1:0.99.1 + pa_convert_func_init_sse@Base 1:0.99.1 + pa_convert_size@Base 1:0.99.1 + pa_core_check_idle@Base 1:0.99.1 + pa_core_check_type@Base 1:0.99.1 + pa_core_exit@Base 1:0.99.1 + pa_core_maybe_vacuum@Base 1:0.99.1 + pa_core_new@Base 1:0.99.1 + pa_core_rttime_new@Base 1:0.99.1 + pa_core_rttime_restart@Base 1:0.99.1 + pa_core_type_id@Base 1:0.99.1 + pa_cpu_init_arm@Base 1:0.99.1 + pa_cpu_init_orc@Base 1:0.99.1 + pa_cpu_init_x86@Base 1:0.99.1 + pa_database_clear@Base 1:0.99.1 + pa_database_close@Base 1:0.99.1 + pa_database_first@Base 1:0.99.1 + pa_database_get@Base 1:0.99.1 + pa_database_next@Base 1:0.99.1 + pa_database_open@Base 1:0.99.1 + pa_database_set@Base 1:0.99.1 + pa_database_size@Base 1:0.99.1 + pa_database_sync@Base 1:0.99.1 + pa_database_unset@Base 1:0.99.1 + pa_datum_free@Base 1:0.99.1 + pa_dbus_bus_get@Base 1:0.99.1 + pa_dbus_connection_get@Base 1:0.99.1 + pa_dbus_connection_ref@Base 1:0.99.1 + pa_dbus_connection_unref@Base 1:0.99.1 + pa_dbus_protocol_add_interface@Base 1:0.99.1 + pa_dbus_protocol_add_signal_listener@Base 1:0.99.1 + pa_dbus_protocol_get@Base 1:0.99.1 + pa_dbus_protocol_get_client@Base 1:0.99.1 + pa_dbus_protocol_get_extensions@Base 1:0.99.1 + pa_dbus_protocol_hook_connect@Base 1:0.99.1 + pa_dbus_protocol_ref@Base 1:0.99.1 + pa_dbus_protocol_register_connection@Base 1:0.99.1 + pa_dbus_protocol_register_extension@Base 1:0.99.1 + pa_dbus_protocol_remove_interface@Base 1:0.99.1 + pa_dbus_protocol_remove_signal_listener@Base 1:0.99.1 + pa_dbus_protocol_send_signal@Base 1:0.99.1 + pa_dbus_protocol_unref@Base 1:0.99.1 + pa_dbus_protocol_unregister_connection@Base 1:0.99.1 + pa_dbus_protocol_unregister_extension@Base 1:0.99.1 + pa_deinterleave@Base 1:0.99.1 + pa_device_init_description@Base 1:0.99.1 + pa_device_init_icon@Base 1:0.99.1 + pa_device_init_intended_roles@Base 1:0.99.1 + pa_device_init_priority@Base 1:0.99.1 + pa_device_port_free@Base 1:0.99.1 + pa_device_port_new@Base 1:0.99.1 + pa_fdsem_after_poll@Base 1:0.99.1 + pa_fdsem_before_poll@Base 1:0.99.1 + pa_fdsem_free@Base 1:0.99.1 + pa_fdsem_get@Base 1:0.99.1 + pa_fdsem_new@Base 1:0.99.1 + pa_fdsem_new_shm@Base 1:0.99.1 + pa_fdsem_open_shm@Base 1:0.99.1 + pa_fdsem_post@Base 1:0.99.1 + pa_fdsem_try@Base 1:0.99.1 + pa_fdsem_wait@Base 1:0.99.1 + pa_frame_align@Base 1:0.99.1 + pa_frame_aligned@Base 1:0.99.1 + pa_full_status_string@Base 1:0.99.1 + pa_get_convert_from_float32ne_function@Base 1:0.99.1 + pa_get_convert_from_s16ne_function@Base 1:0.99.1 + pa_get_convert_to_float32ne_function@Base 1:0.99.1 + pa_get_convert_to_s16ne_function@Base 1:0.99.1 + pa_get_dbus_address_from_server_type@Base 1:0.99.1 + pa_get_init_remap_func@Base 1:0.99.1 + pa_get_volume_func@Base 1:0.99.1 + pa_hook_connect@Base 1:0.99.1 + pa_hook_done@Base 1:0.99.1 + pa_hook_fire@Base 1:0.99.1 + pa_hook_init@Base 1:0.99.1 + pa_hook_is_firing@Base 1:0.99.1 + pa_hook_slot_free@Base 1:0.99.1 + pa_init_remap@Base 1:0.99.1 + pa_interleave@Base 1:0.99.1 + pa_load_sym@Base 1:0.99.1 + pa_memblockq_sink_input_new@Base 1:0.99.1 + pa_memblockq_sink_input_set_queue@Base 1:0.99.1 + pa_memchunk_dump_to_file@Base 1:0.99.1 + pa_memchunk_sine@Base 1:0.99.1 + pa_mix@Base 1:0.99.1 + pa_modargs_free@Base 1:0.99.1 + pa_modargs_get_channel_map@Base 1:0.99.1 + pa_modargs_get_proplist@Base 1:0.99.1 + pa_modargs_get_sample_spec@Base 1:0.99.1 + pa_modargs_get_sample_spec_and_channel_map@Base 1:0.99.1 + pa_modargs_get_value@Base 1:0.99.1 + pa_modargs_get_value_boolean@Base 1:0.99.1 + pa_modargs_get_value_s32@Base 1:0.99.1 + pa_modargs_get_value_u32@Base 1:0.99.1 + pa_modargs_iterate@Base 1:0.99.1 + pa_modargs_new@Base 1:0.99.1 + pa_modinfo_free@Base 1:0.99.1 + pa_modinfo_get_by_handle@Base 1:0.99.1 + pa_modinfo_get_by_name@Base 1:0.99.1 + pa_module_get_n_used@Base 1:0.99.1 + pa_module_list_to_string@Base 1:0.99.1 + pa_module_load@Base 1:0.99.1 + pa_module_unload@Base 1:0.99.1 + pa_module_unload_all@Base 1:0.99.1 + pa_module_unload_by_index@Base 1:0.99.1 + pa_module_unload_request@Base 1:0.99.1 + pa_module_unload_request_by_index@Base 1:0.99.1 + pa_module_update_proplist@Base 1:0.99.1 + pa_msgobject_check_type@Base 1:0.99.1 + pa_msgobject_new_internal@Base 1:0.99.1 + pa_msgobject_type_id@Base 1:0.99.1 + pa_namereg_get@Base 1:0.99.1 + pa_namereg_get_default_sink@Base 1:0.99.1 + pa_namereg_get_default_source@Base 1:0.99.1 + pa_namereg_is_valid_name@Base 1:0.99.1 + pa_namereg_is_valid_name_or_wildcard@Base 1:0.99.1 + pa_namereg_make_valid_name@Base 1:0.99.1 + pa_namereg_register@Base 1:0.99.1 + pa_namereg_set_default_sink@Base 1:0.99.1 + pa_namereg_set_default_source@Base 1:0.99.1 + pa_namereg_unregister@Base 1:0.99.1 + pa_object_check_type@Base 1:0.99.1 + pa_object_new_internal@Base 1:0.99.1 + pa_object_ref@Base 1:0.99.1 + pa_object_type_id@Base 1:0.99.1 + pa_object_unref@Base 1:0.99.1 + pa_parse_resample_method@Base 1:0.99.1 + pa_play_file@Base 1:0.99.1 + pa_play_memblockq@Base 1:0.99.1 + pa_play_memchunk@Base 1:0.99.1 + pa_remap_func_init_mmx@Base 1:0.99.1 + pa_remap_func_init_sse@Base 1:0.99.1 + pa_resample_method_supported@Base 1:0.99.1 + pa_resample_method_to_string@Base 1:0.99.1 + pa_resampler_free@Base 1:0.99.1 + pa_resampler_get_method@Base 1:0.99.1 + pa_resampler_input_channel_map@Base 1:0.99.1 + pa_resampler_input_sample_spec@Base 1:0.99.1 + pa_resampler_max_block_size@Base 1:0.99.1 + pa_resampler_new@Base 1:0.99.1 + pa_resampler_output_channel_map@Base 1:0.99.1 + pa_resampler_output_sample_spec@Base 1:0.99.1 + pa_resampler_request@Base 1:0.99.1 + pa_resampler_reset@Base 1:0.99.1 + pa_resampler_result@Base 1:0.99.1 + pa_resampler_run@Base 1:0.99.1 + pa_resampler_set_input_rate@Base 1:0.99.1 + pa_resampler_set_output_rate@Base 1:0.99.1 + pa_rtpoll_free@Base 1:0.99.1 + pa_rtpoll_item_free@Base 1:0.99.1 + pa_rtpoll_item_get_pollfd@Base 1:0.99.1 + pa_rtpoll_item_get_userdata@Base 1:0.99.1 + pa_rtpoll_item_new@Base 1:0.99.1 + pa_rtpoll_item_new_asyncmsgq_read@Base 1:0.99.1 + pa_rtpoll_item_new_asyncmsgq_write@Base 1:0.99.1 + pa_rtpoll_item_new_fdsem@Base 1:0.99.1 + pa_rtpoll_item_set_after_callback@Base 1:0.99.1 + pa_rtpoll_item_set_before_callback@Base 1:0.99.1 + pa_rtpoll_item_set_userdata@Base 1:0.99.1 + pa_rtpoll_item_set_work_callback@Base 1:0.99.1 + pa_rtpoll_new@Base 1:0.99.1 + pa_rtpoll_quit@Base 1:0.99.1 + pa_rtpoll_run@Base 1:0.99.1 + pa_rtpoll_set_timer_absolute@Base 1:0.99.1 + pa_rtpoll_set_timer_disabled@Base 1:0.99.1 + pa_rtpoll_set_timer_relative@Base 1:0.99.1 + pa_rtpoll_timer_elapsed@Base 1:0.99.1 + pa_sample_clamp@Base 1:0.99.1 + pa_scache_add_directory_lazy@Base 1:0.99.1 + pa_scache_add_file@Base 1:0.99.1 + pa_scache_add_file_lazy@Base 1:0.99.1 + pa_scache_add_item@Base 1:0.99.1 + pa_scache_free_all@Base 1:0.99.1 + pa_scache_get_id_by_name@Base 1:0.99.1 + pa_scache_get_name_by_id@Base 1:0.99.1 + pa_scache_list_to_string@Base 1:0.99.1 + pa_scache_play_item@Base 1:0.99.1 + pa_scache_play_item_by_name@Base 1:0.99.1 + pa_scache_remove_item@Base 1:0.99.1 + pa_scache_total_size@Base 1:0.99.1 + pa_scache_unload_unused@Base 1:0.99.1 + pa_sconv_s16be_from_float32ne@Base 1:0.99.1 + pa_sconv_s16be_from_float32re@Base 1:0.99.1 + pa_sconv_s16be_to_float32ne@Base 1:0.99.1 + pa_sconv_s16be_to_float32re@Base 1:0.99.1 + pa_sconv_s16le_from_float32ne@Base 1:0.99.1 + pa_sconv_s16le_from_float32re@Base 1:0.99.1 + pa_sconv_s16le_to_float32ne@Base 1:0.99.1 + pa_sconv_s16le_to_float32re@Base 1:0.99.1 + pa_sconv_s24_32be_from_float32ne@Base 1:0.99.1 + pa_sconv_s24_32be_from_float32re@Base 1:0.99.1 + pa_sconv_s24_32be_from_s16ne@Base 1:0.99.1 + pa_sconv_s24_32be_from_s16re@Base 1:0.99.1 + pa_sconv_s24_32be_to_float32ne@Base 1:0.99.1 + pa_sconv_s24_32be_to_float32re@Base 1:0.99.1 + pa_sconv_s24_32be_to_s16ne@Base 1:0.99.1 + pa_sconv_s24_32be_to_s16re@Base 1:0.99.1 + pa_sconv_s24_32le_from_float32ne@Base 1:0.99.1 + pa_sconv_s24_32le_from_float32re@Base 1:0.99.1 + pa_sconv_s24_32le_from_s16ne@Base 1:0.99.1 + pa_sconv_s24_32le_from_s16re@Base 1:0.99.1 + pa_sconv_s24_32le_to_float32ne@Base 1:0.99.1 + pa_sconv_s24_32le_to_float32re@Base 1:0.99.1 + pa_sconv_s24_32le_to_s16ne@Base 1:0.99.1 + pa_sconv_s24_32le_to_s16re@Base 1:0.99.1 + pa_sconv_s24be_from_float32ne@Base 1:0.99.1 + pa_sconv_s24be_from_float32re@Base 1:0.99.1 + pa_sconv_s24be_from_s16ne@Base 1:0.99.1 + pa_sconv_s24be_from_s16re@Base 1:0.99.1 + pa_sconv_s24be_to_float32ne@Base 1:0.99.1 + pa_sconv_s24be_to_float32re@Base 1:0.99.1 + pa_sconv_s24be_to_s16ne@Base 1:0.99.1 + pa_sconv_s24be_to_s16re@Base 1:0.99.1 + pa_sconv_s24le_from_float32ne@Base 1:0.99.1 + pa_sconv_s24le_from_float32re@Base 1:0.99.1 + pa_sconv_s24le_from_s16ne@Base 1:0.99.1 + pa_sconv_s24le_from_s16re@Base 1:0.99.1 + pa_sconv_s24le_to_float32ne@Base 1:0.99.1 + pa_sconv_s24le_to_float32re@Base 1:0.99.1 + pa_sconv_s24le_to_s16ne@Base 1:0.99.1 + pa_sconv_s24le_to_s16re@Base 1:0.99.1 + pa_sconv_s32be_from_float32ne@Base 1:0.99.1 + pa_sconv_s32be_from_float32re@Base 1:0.99.1 + pa_sconv_s32be_from_s16ne@Base 1:0.99.1 + pa_sconv_s32be_from_s16re@Base 1:0.99.1 + pa_sconv_s32be_to_float32ne@Base 1:0.99.1 + pa_sconv_s32be_to_float32re@Base 1:0.99.1 + pa_sconv_s32be_to_s16ne@Base 1:0.99.1 + pa_sconv_s32be_to_s16re@Base 1:0.99.1 + pa_sconv_s32le_from_float32ne@Base 1:0.99.1 + pa_sconv_s32le_from_float32re@Base 1:0.99.1 + pa_sconv_s32le_from_s16ne@Base 1:0.99.1 + pa_sconv_s32le_from_s16re@Base 1:0.99.1 + pa_sconv_s32le_to_float32ne@Base 1:0.99.1 + pa_sconv_s32le_to_float32re@Base 1:0.99.1 + pa_sconv_s32le_to_s16ne@Base 1:0.99.1 + pa_sconv_s32le_to_s16re@Base 1:0.99.1 + pa_set_convert_from_float32ne_function@Base 1:0.99.1 + pa_set_convert_from_s16ne_function@Base 1:0.99.1 + pa_set_convert_to_float32ne_function@Base 1:0.99.1 + pa_set_convert_to_s16ne_function@Base 1:0.99.1 + pa_set_init_remap_func@Base 1:0.99.1 + pa_set_volume_func@Base 1:0.99.1 + pa_shared_dump@Base 1:0.99.1 + pa_shared_get@Base 1:0.99.1 + pa_shared_remove@Base 1:0.99.1 + pa_shared_replace@Base 1:0.99.1 + pa_shared_set@Base 1:0.99.1 + pa_shm_attach_ro@Base 1:0.99.1 + pa_shm_cleanup@Base 1:0.99.1 + pa_shm_create_rw@Base 1:0.99.1 + pa_shm_free@Base 1:0.99.1 + pa_shm_punch@Base 1:0.99.1 + pa_silence_cache_done@Base 1:0.99.1 + pa_silence_cache_init@Base 1:0.99.1 + pa_silence_memblock@Base 1:0.99.1 + pa_silence_memchunk@Base 1:0.99.1 + pa_silence_memchunk_get@Base 1:0.99.1 + pa_silence_memory@Base 1:0.99.1 + pa_sink_attach@Base 1:0.99.1 + pa_sink_attach_within_thread@Base 1:0.99.1 + pa_sink_check_format@Base 1:0.99.1 + pa_sink_check_formats@Base 1:0.99.1 + pa_sink_check_suspend@Base 1:0.99.1 + pa_sink_check_type@Base 1:0.99.1 + pa_sink_detach@Base 1:0.99.1 + pa_sink_detach_within_thread@Base 1:0.99.1 + pa_sink_enable_decibel_volume@Base 1:0.99.1 + pa_sink_flat_volume_enabled@Base 1:0.99.1 + pa_sink_get_fixed_latency@Base 1:0.99.1 + pa_sink_get_formats@Base 1:0.99.1 + pa_sink_get_latency@Base 1:0.99.1 + pa_sink_get_latency_range@Base 1:0.99.1 + pa_sink_get_latency_within_thread@Base 1:0.99.1 + pa_sink_get_max_request@Base 1:0.99.1 + pa_sink_get_max_rewind@Base 1:0.99.1 + pa_sink_get_mute@Base 1:0.99.1 + pa_sink_get_requested_latency@Base 1:0.99.1 + pa_sink_get_requested_latency_within_thread@Base 1:0.99.1 + pa_sink_get_volume@Base 1:0.99.1 + pa_sink_input_check_type@Base 1:0.99.1 + pa_sink_input_cork@Base 1:0.99.1 + pa_sink_input_drop@Base 1:0.99.1 + pa_sink_input_fail_move@Base 1:0.99.1 + pa_sink_input_finish_move@Base 1:0.99.1 + pa_sink_input_get_latency@Base 1:0.99.1 + pa_sink_input_get_max_request@Base 1:0.99.1 + pa_sink_input_get_max_rewind@Base 1:0.99.1 + pa_sink_input_get_mute@Base 1:0.99.1 + pa_sink_input_get_requested_latency@Base 1:0.99.1 + pa_sink_input_get_resample_method@Base 1:0.99.1 + pa_sink_input_get_silence@Base 1:0.99.1 + pa_sink_input_get_state@Base 1:0.99.1 + pa_sink_input_get_volume@Base 1:0.99.1 + pa_sink_input_is_passthrough@Base 1:0.99.1 + pa_sink_input_is_volume_readable@Base 1:0.99.1 + pa_sink_input_kill@Base 1:0.99.1 + pa_sink_input_list_to_string@Base 1:0.99.1 + pa_sink_input_may_move@Base 1:0.99.1 + pa_sink_input_may_move_to@Base 1:0.99.1 + pa_sink_input_move_to@Base 1:0.99.1 + pa_sink_input_new@Base 1:0.99.1 + pa_sink_input_new_data_apply_volume_factor@Base 1:0.99.1 + pa_sink_input_new_data_apply_volume_factor_sink@Base 1:0.99.1 + pa_sink_input_new_data_done@Base 1:0.99.1 + pa_sink_input_new_data_init@Base 1:0.99.1 + pa_sink_input_new_data_is_passthrough@Base 1:0.99.1 + pa_sink_input_new_data_set_channel_map@Base 1:0.99.1 + pa_sink_input_new_data_set_formats@Base 1:0.99.1 + pa_sink_input_new_data_set_muted@Base 1:0.99.1 + pa_sink_input_new_data_set_sample_spec@Base 1:0.99.1 + pa_sink_input_new_data_set_sink@Base 1:0.99.1 + pa_sink_input_new_data_set_volume@Base 1:0.99.1 + pa_sink_input_peek@Base 1:0.99.1 + pa_sink_input_process_msg@Base 1:0.99.1 + pa_sink_input_process_rewind@Base 1:0.99.1 + pa_sink_input_put@Base 1:0.99.1 + pa_sink_input_request_rewind@Base 1:0.99.1 + pa_sink_input_safe_to_remove@Base 1:0.99.1 + pa_sink_input_send_event@Base 1:0.99.1 + pa_sink_input_set_mute@Base 1:0.99.1 + pa_sink_input_set_name@Base 1:0.99.1 + pa_sink_input_set_rate@Base 1:0.99.1 + pa_sink_input_set_requested_latency@Base 1:0.99.1 + pa_sink_input_set_requested_latency_within_thread@Base 1:0.99.1 + pa_sink_input_set_state_within_thread@Base 1:0.99.1 + pa_sink_input_set_volume@Base 1:0.99.1 + pa_sink_input_start_move@Base 1:0.99.1 + pa_sink_input_type_id@Base 1:0.99.1 + pa_sink_input_unlink@Base 1:0.99.1 + pa_sink_input_update_max_request@Base 1:0.99.1 + pa_sink_input_update_max_rewind@Base 1:0.99.1 + pa_sink_input_update_proplist@Base 1:0.99.1 + pa_sink_invalidate_requested_latency@Base 1:0.99.1 + pa_sink_is_passthrough@Base 1:0.99.1 + pa_sink_linked_by@Base 1:0.99.1 + pa_sink_list_to_string@Base 1:0.99.1 + pa_sink_move_all_fail@Base 1:0.99.1 + pa_sink_move_all_finish@Base 1:0.99.1 + pa_sink_move_all_start@Base 1:0.99.1 + pa_sink_mute_changed@Base 1:0.99.1 + pa_sink_new@Base 1:0.99.1 + pa_sink_new_data_done@Base 1:0.99.1 + pa_sink_new_data_init@Base 1:0.99.1 + pa_sink_new_data_set_channel_map@Base 1:0.99.1 + pa_sink_new_data_set_muted@Base 1:0.99.1 + pa_sink_new_data_set_name@Base 1:0.99.1 + pa_sink_new_data_set_port@Base 1:0.99.1 + pa_sink_new_data_set_sample_spec@Base 1:0.99.1 + pa_sink_new_data_set_volume@Base 1:0.99.1 + pa_sink_process_msg@Base 1:0.99.1 + pa_sink_process_rewind@Base 1:0.99.1 + pa_sink_put@Base 1:0.99.1 + pa_sink_render@Base 1:0.99.1 + pa_sink_render_full@Base 1:0.99.1 + pa_sink_render_into@Base 1:0.99.1 + pa_sink_render_into_full@Base 1:0.99.1 + pa_sink_request_rewind@Base 1:0.99.1 + pa_sink_set_asyncmsgq@Base 1:0.99.1 + pa_sink_set_description@Base 1:0.99.1 + pa_sink_set_fixed_latency@Base 1:0.99.1 + pa_sink_set_fixed_latency_within_thread@Base 1:0.99.1 + pa_sink_set_get_mute_callback@Base 1:0.99.1 + pa_sink_set_get_volume_callback@Base 1:0.99.1 + pa_sink_set_latency_range@Base 1:0.99.1 + pa_sink_set_latency_range_within_thread@Base 1:0.99.1 + pa_sink_set_max_request@Base 1:0.99.1 + pa_sink_set_max_request_within_thread@Base 1:0.99.1 + pa_sink_set_max_rewind@Base 1:0.99.1 + pa_sink_set_max_rewind_within_thread@Base 1:0.99.1 + pa_sink_set_mute@Base 1:0.99.1 + pa_sink_set_port@Base 1:0.99.1 + pa_sink_set_rtpoll@Base 1:0.99.1 + pa_sink_set_set_mute_callback@Base 1:0.99.1 + pa_sink_set_set_volume_callback@Base 1:0.99.1 + pa_sink_set_soft_volume@Base 1:0.99.1 + pa_sink_set_volume@Base 1:0.99.1 + pa_sink_set_write_volume_callback@Base 1:0.99.1 + pa_sink_suspend@Base 1:0.99.1 + pa_sink_suspend_all@Base 1:0.99.1 + pa_sink_type_id@Base 1:0.99.1 + pa_sink_unlink@Base 1:0.99.1 + pa_sink_update_flags@Base 1:0.99.1 + pa_sink_update_proplist@Base 1:0.99.1 + pa_sink_update_status@Base 1:0.99.1 + pa_sink_update_volume_and_mute@Base 1:0.99.1 + pa_sink_used_by@Base 1:0.99.1 + pa_sink_volume_change_apply@Base 1:0.99.1 + pa_sink_volume_changed@Base 1:0.99.1 + pa_smoother_fix_now@Base 1:0.99.1 + pa_smoother_free@Base 1:0.99.1 + pa_smoother_get@Base 1:0.99.1 + pa_smoother_new@Base 1:0.99.1 + pa_smoother_pause@Base 1:0.99.1 + pa_smoother_put@Base 1:0.99.1 + pa_smoother_reset@Base 1:0.99.1 + pa_smoother_resume@Base 1:0.99.1 + pa_smoother_set_time_offset@Base 1:0.99.1 + pa_smoother_translate@Base 1:0.99.1 + pa_sound_file_load@Base 1:0.99.1 + pa_sound_file_too_big_to_cache@Base 1:0.99.1 + pa_source_attach@Base 1:0.99.1 + pa_source_attach_within_thread@Base 1:0.99.1 + pa_source_check_format@Base 1:0.99.1 + pa_source_check_formats@Base 1:0.99.1 + pa_source_check_suspend@Base 1:0.99.1 + pa_source_check_type@Base 1:0.99.1 + pa_source_detach@Base 1:0.99.1 + pa_source_detach_within_thread@Base 1:0.99.1 + pa_source_enable_decibel_volume@Base 1:0.99.1 + pa_source_flat_volume_enabled@Base 1:0.99.1 + pa_source_get_fixed_latency@Base 1:0.99.1 + pa_source_get_formats@Base 1:0.99.1 + pa_source_get_latency@Base 1:0.99.1 + pa_source_get_latency_range@Base 1:0.99.1 + pa_source_get_latency_within_thread@Base 1:0.99.1 + pa_source_get_max_rewind@Base 1:0.99.1 + pa_source_get_mute@Base 1:0.99.1 + pa_source_get_requested_latency@Base 1:0.99.1 + pa_source_get_requested_latency_within_thread@Base 1:0.99.1 + pa_source_get_volume@Base 1:0.99.1 + pa_source_invalidate_requested_latency@Base 1:0.99.1 + pa_source_is_passthrough@Base 1:0.99.1 + pa_source_linked_by@Base 1:0.99.1 + pa_source_list_to_string@Base 1:0.99.1 + pa_source_move_all_fail@Base 1:0.99.1 + pa_source_move_all_finish@Base 1:0.99.1 + pa_source_move_all_start@Base 1:0.99.1 + pa_source_mute_changed@Base 1:0.99.1 + pa_source_new@Base 1:0.99.1 + pa_source_new_data_done@Base 1:0.99.1 + pa_source_new_data_init@Base 1:0.99.1 + pa_source_new_data_set_channel_map@Base 1:0.99.1 + pa_source_new_data_set_muted@Base 1:0.99.1 + pa_source_new_data_set_name@Base 1:0.99.1 + pa_source_new_data_set_port@Base 1:0.99.1 + pa_source_new_data_set_sample_spec@Base 1:0.99.1 + pa_source_new_data_set_volume@Base 1:0.99.1 + pa_source_output_check_type@Base 1:0.99.1 + pa_source_output_cork@Base 1:0.99.1 + pa_source_output_fail_move@Base 1:0.99.1 + pa_source_output_finish_move@Base 1:0.99.1 + pa_source_output_get_latency@Base 1:0.99.1 + pa_source_output_get_max_rewind@Base 1:0.99.1 + pa_source_output_get_mute@Base 1:0.99.1 + pa_source_output_get_requested_latency@Base 1:0.99.1 + pa_source_output_get_resample_method@Base 1:0.99.1 + pa_source_output_get_volume@Base 1:0.99.1 + pa_source_output_is_passthrough@Base 1:0.99.1 + pa_source_output_is_volume_readable@Base 1:0.99.1 + pa_source_output_kill@Base 1:0.99.1 + pa_source_output_list_to_string@Base 1:0.99.1 + pa_source_output_may_move@Base 1:0.99.1 + pa_source_output_may_move_to@Base 1:0.99.1 + pa_source_output_move_to@Base 1:0.99.1 + pa_source_output_new@Base 1:0.99.1 + pa_source_output_new_data_apply_volume_factor@Base 1:0.99.1 + pa_source_output_new_data_apply_volume_factor_source@Base 1:0.99.1 + pa_source_output_new_data_done@Base 1:0.99.1 + pa_source_output_new_data_init@Base 1:0.99.1 + pa_source_output_new_data_is_passthrough@Base 1:0.99.1 + pa_source_output_new_data_set_channel_map@Base 1:0.99.1 + pa_source_output_new_data_set_formats@Base 1:0.99.1 + pa_source_output_new_data_set_muted@Base 1:0.99.1 + pa_source_output_new_data_set_sample_spec@Base 1:0.99.1 + pa_source_output_new_data_set_source@Base 1:0.99.1 + pa_source_output_new_data_set_volume@Base 1:0.99.1 + pa_source_output_process_msg@Base 1:0.99.1 + pa_source_output_process_rewind@Base 1:0.99.1 + pa_source_output_push@Base 1:0.99.1 + pa_source_output_put@Base 1:0.99.1 + pa_source_output_send_event@Base 1:0.99.1 + pa_source_output_set_mute@Base 1:0.99.1 + pa_source_output_set_name@Base 1:0.99.1 + pa_source_output_set_rate@Base 1:0.99.1 + pa_source_output_set_requested_latency@Base 1:0.99.1 + pa_source_output_set_requested_latency_within_thread@Base 1:0.99.1 + pa_source_output_set_state_within_thread@Base 1:0.99.1 + pa_source_output_set_volume@Base 1:0.99.1 + pa_source_output_start_move@Base 1:0.99.1 + pa_source_output_type_id@Base 1:0.99.1 + pa_source_output_unlink@Base 1:0.99.1 + pa_source_output_update_max_rewind@Base 1:0.99.1 + pa_source_output_update_proplist@Base 1:0.99.1 + pa_source_post@Base 1:0.99.1 + pa_source_post_direct@Base 1:0.99.1 + pa_source_process_msg@Base 1:0.99.1 + pa_source_process_rewind@Base 1:0.99.1 + pa_source_put@Base 1:0.99.1 + pa_source_set_asyncmsgq@Base 1:0.99.1 + pa_source_set_description@Base 1:0.99.1 + pa_source_set_fixed_latency@Base 1:0.99.1 + pa_source_set_fixed_latency_within_thread@Base 1:0.99.1 + pa_source_set_get_mute_callback@Base 1:0.99.1 + pa_source_set_get_volume_callback@Base 1:0.99.1 + pa_source_set_latency_range@Base 1:0.99.1 + pa_source_set_latency_range_within_thread@Base 1:0.99.1 + pa_source_set_max_rewind@Base 1:0.99.1 + pa_source_set_max_rewind_within_thread@Base 1:0.99.1 + pa_source_set_mute@Base 1:0.99.1 + pa_source_set_port@Base 1:0.99.1 + pa_source_set_rtpoll@Base 1:0.99.1 + pa_source_set_set_mute_callback@Base 1:0.99.1 + pa_source_set_set_volume_callback@Base 1:0.99.1 + pa_source_set_soft_volume@Base 1:0.99.1 + pa_source_set_volume@Base 1:0.99.1 + pa_source_set_write_volume_callback@Base 1:0.99.1 + pa_source_suspend@Base 1:0.99.1 + pa_source_suspend_all@Base 1:0.99.1 + pa_source_sync_suspend@Base 1:0.99.1 + pa_source_type_id@Base 1:0.99.1 + pa_source_unlink@Base 1:0.99.1 + pa_source_update_flags@Base 1:0.99.1 + pa_source_update_proplist@Base 1:0.99.1 + pa_source_update_status@Base 1:0.99.1 + pa_source_update_volume_and_mute@Base 1:0.99.1 + pa_source_used_by@Base 1:0.99.1 + pa_source_volume_change_apply@Base 1:0.99.1 + pa_source_volume_changed@Base 1:0.99.1 + pa_start_child_for_read@Base 1:0.99.1 + pa_stdio_acquire@Base 1:0.99.1 + pa_stdio_release@Base 1:0.99.1 + pa_subscription_free@Base 1:0.99.1 + pa_subscription_free_all@Base 1:0.99.1 + pa_subscription_new@Base 1:0.99.1 + pa_subscription_post@Base 1:0.99.1 + pa_thread_mq_done@Base 1:0.99.1 + pa_thread_mq_get@Base 1:0.99.1 + pa_thread_mq_init@Base 1:0.99.1 + pa_thread_mq_install@Base 1:0.99.1 + pa_usec_to_bytes_round_up@Base 1:0.99.1 + pa_volume_func_init_arm@Base 1:0.99.1 + pa_volume_func_init_mmx@Base 1:0.99.1 + pa_volume_func_init_sse@Base 1:0.99.1 + pa_volume_memchunk@Base 1:0.99.1 + pa_x11_client_free@Base 1:0.99.1 + pa_x11_client_new@Base 1:0.99.1 + pa_x11_wrapper_get@Base 1:0.99.1 + pa_x11_wrapper_get_display@Base 1:0.99.1 + pa_x11_wrapper_get_xcb_connection@Base 1:0.99.1 + pa_x11_wrapper_kill@Base 1:0.99.1 + pa_x11_wrapper_ref@Base 1:0.99.1 + pa_x11_wrapper_unref@Base 1:0.99.1 + st_13linear2alaw@Base 1:0.99.1 + st_14linear2ulaw@Base 1:0.99.1 + st_alaw2linear16@Base 1:0.99.1 + st_ulaw2linear16@Base 1:0.99.1 +libpulsedsp.so libpulse0 #MINVER# + __open64_2@Base 1:0.99.1 + __open_2@Base 1:0.99.1 + __xstat64@Base 1:0.99.1 + __xstat@Base 1:0.99.1 + access@Base 1:0.99.1 + close@Base 1:0.99.1 + fclose@Base 1:0.99.1 + fopen64@Base 1:0.99.1 + fopen@Base 1:0.99.1 + ioctl@Base 1:0.99.1 + open64@Base 1:0.99.1 + open@Base 1:0.99.1 + stat64@Base 1:0.99.1 + stat@Base 1:0.99.1 --- pulseaudio-0.99.1.orig/debian/pulseaudio-utils.manpages +++ pulseaudio-0.99.1/debian/pulseaudio-utils.manpages @@ -0,0 +1,7 @@ +debian/tmp/usr/share/man/man1/pacat.1 +debian/tmp/usr/share/man/man1/pacmd.1 +debian/tmp/usr/share/man/man1/pactl.1 +debian/tmp/usr/share/man/man1/padsp.1 +debian/tmp/usr/share/man/man1/paplay.1 +debian/tmp/usr/share/man/man1/pasuspender.1 +debian/tmp/usr/share/man/man1/pax11publish.1 --- pulseaudio-0.99.1.orig/debian/pulseaudio-esound-compat.manpages +++ pulseaudio-0.99.1/debian/pulseaudio-esound-compat.manpages @@ -0,0 +1 @@ +debian/tmp/usr/share/man/man1/esdcompat.1 --- pulseaudio-0.99.1.orig/debian/copyright +++ pulseaudio-0.99.1/debian/copyright @@ -0,0 +1,541 @@ +This package was debianized by CJ van den Berg on +Thu, 10 Aug 2006 15:59:43 +0200. + +It was downloaded from . + + Upstream Authors + ================ + + Lennart Poettering + Pierre Ossman , + through his employer Cendio + +Files: * +Copyright: + Copyright (C) 2004-2009 Lennart Poettering + Copyright (C) 2006-2007 Pierre Ossman for Cendio AB +License: LGPL-2.1+ + The upstream license clarifies pretty well that the sources of pulseaudio are + LGPL (please see LGPL license grant below), but that some parts will be + effectively GPL since they rely on GPL libraries, quoting the upstream + LICENSE: + + """All PulseAudio source files are licensed under the GNU Lesser General + Public License. (see file LGPL for details) + + However, the server side links to the GPL-only library 'libsamplerate' + which practically downgrades the license of the server part to GPL (see + file GPL for details), exercising section 3 of the LGPL. + + Hence you should treat the client library ('libpulse') of PulseAudio as + being LGPL licensed and the server part ('libpulsecore') as being GPL + licensed. Since the PulseAudio daemon and the modules link to + 'libpulsecore' they are of course also GPL licensed. + + -- Lennart Poettering, April 20th, 2006.""" + + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: src/pulsecore/g711.c +Copyright: + Copyright (C) Sun Microsystems, Inc +License: + This source code is a product of Sun Microsystems, Inc. and is provided + for unrestricted use. Users may copy or modify this source code without + charge. + + SUN SOURCE CODE IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING + THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR + PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. + + Sun source code is provided with no support and without any obligation on + the part of Sun Microsystems, Inc. to assist in its use, correction, + modification or enhancement. + + SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE + INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS SOFTWARE + OR ANY PART THEREOF. + + In no event will Sun Microsystems, Inc. be liable for any lost revenue + or profits or other special, indirect and consequential damages, even if + Sun has been advised of the possibility of such damages. + +Files: src/pulsecore/g711.h +Copyright: + Copyright (C) 2001 Chris Bagwell +Licence: + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose and without fee is hereby granted, provided + that the above copyright notice appear in all copies and that both that + copyright notice and this permission notice appear in supporting + documentation. This software is provided "as is" without express or + implied warranty. + +Files: src/pulsecore/poll.* +Copyright: + Copyright 2006 Pierre Ossman for Cendio AB + Copyright (C)1994,96,97,98,99,2000,2001,2004 Free Software Foundation, Inc. +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/pulse/utf8.c +Copyright: + Copyright (C) 1999 Tom Tromey + Copyright (C) 2000 Red Hat, Inc. +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/bluetooth/ipc.*, src/modules/bluetooth/rtp.* +Copyright: + Copyright (C) 2004-2009 Marcel Holtmann +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/bluetooth/module-bluetooth-{device,discover}.c, + src/modules/bluetooth/bluetooth-util.* +Copyright: + Copyright (C) 2008-2009 Joao Paulo Rechi Vita +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2. + +File: src/modules/bluetooth/proximity-helper.c +Copyright: + Copyright (C) 2000-2001 Qualcomm Incorporated + Copyright (C) 2002-2003 Maxim Krasnyansky + Copyright (C) 2002-2007 Marcel Holtmann +License: GPL-2+ + On Debian systems, the complete text of the GPL-2 can be found in + /usr/share/common-licenses/GPL-2. + +Files: src/modules/bluetooth/sbc* +Copyright: + Copyright (C) 2004-2009 Marcel Holtmann + Copyright (C) 2004-2005 Henryk Ploetz + Copyright (C) 2005-2006 Brad Midgley +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/echo-cancel/adrian*.* +Copyright: + Copyright (C) DFS Deutsche Flugsicherung (2004). All Rights Reserved. +License: + You are allowed to use this source code in any open source or closed + source software you want. You are allowed to use the algorithms for a + hardware solution. You are allowed to modify the source code. + You are not allowed to remove the name of the author from this memo or + from the source code files. You are not allowed to monopolize the + source code or the algorithms behind the source code as your + intellectual property. This source code is free of royalty and comes + with no warranty. + +File: src/modules/echo-cancel/echo-cancel.h +Copyright: + Copyright 2010 Arun Raghavan +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: src/modules/echo-cancel/module-echo-cancel.c +Copyright: + Copyright 2010 Wim Taymans +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: src/modules/echo-cancel/speex.c +Copyright: + Copyright 2010 Wim Taymans + Contributor: Arun Raghavan +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/module-device-manager.* +Copyright: + Copyright 2006-2008 Lennart Poettering + Copyright (C) 2009 Colin Guthrie +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/pulsecore/dbus-*.*, src/modules/module-hal-detect.c +Copyright: + Copyright 2006 Lennart Poettering + Copyright 2006 Shams E. King +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: src/modules/ladspa.h +Copyright: + Copyright (C) 2000-2002 Richard W.E. Furse, Paul Barton-Davis, Stefan + Westerfeld. +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/module-always-sink.c, src/modules/rtp/rtsp_client.* +Copyright: + Copyright (C) 2008 Colin Guthrie +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/module-detect.c +Copyright: + Copyright 2006 Lennart Poettering + Copyright 2006 Pierre Ossman for Cendio AB + Copyright 2006 Diego Petteno +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/roap/*roap*, src/modules/rtp/headerlist.* +Copyright: + Copyright 2005-2007 Lennart Poettering + Copyright (C) 2008 Colin Guthrie +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/roap/base64.* +Copyright: + Copyright (C) 2008 Colin Guthrie + Copyright (C) Kungliga Tekniska Hogskolan +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/module-device-manager.c +Copyright: + Copyright 2006-2008 Lennart Poettering + Copyright 2009 Colin Guthrie +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/module-solaris.c +Copyright: + Copyright 2006 Lennart Poettering + Copyright 2006-2007 Pierre Ossman for Cendio AB + Copyright 2009 Finn Thain +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/modules/reserve.* +Copyright: + Copyright 2009 (C) Lennart Poettering +License: + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation files + (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +Files: src/pulsecore/atomic.h +Copyright: + Copyright (C) 2006-2008 Lennart Poettering + Copyright (C) 2008 Nokia Corporation +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: src/pulsecore/core-util.c +Copyright: + Copyright (C) 2004-2006 Lennart Poettering + Copyright (C) 2004 Joe Marcus Clarke + Copyright (C) 2006-2007 Pierre Ossman for Cendio AB +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: src/pulse/ext-device-manager.* +Copyright: + Copyright (C) 2008 Lennart Poettering + Copyright (C) 2009 Colin Guthrie +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: src/pulsecore/ffmpeg/avcodec.h +Copyright: + Copyright (c) 2001 Fabrice Bellard +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: src/pulsecore/ffmpeg/resample2.c +Copyright: + Copyright (c) 2004 Michael Niedermayer +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: src/pulsecore/socket-util.c +Copyright: + Copyright (C) 2004-2006 Lennart Poettering + Copyright (C) 2004 Joe Marcus Clarke + Copyright (C) 2006-2007 Pierre Ossman for Cendio AB +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: man/xmltoman +Copyright: + Copyright (C) 2000-2002 Oliver Kurth + Copyright (C) 2003 Lennart Poettering +License: LGPL-2+ + On Debian systems, the complete text of the LGPL-2 can be found in + /usr/share/common-licenses/LGPL-2. + +File: po/ca.po +Copyright: + Copyright (C) 2008 Xavier Conde Rueda + Copyright (C) 2009 Agustí Grau , 2009. + Copyright (C) Judith Pintó Subirada + Copyright (C) 2009 Josep Torné Llavall + +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/cs.po +Copyright: + Copyright (C) 2008,2009 Petr Kovar +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/de.po +Copyright: + Copyright (C) 2008,2009 Fabian Affolter + Copyright (C) 2008,2009 Micha Pietsch +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/de_CH.po +Copyright: + Copyright (C) 2008, 2009 Fabian Affolter + Copyright (C) 2008, 2009 Micha Pietsch +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/el.po +Copyright: + Copyright (C) 2008 Dimitris Glezos + Copyright (C) 2009 Thalia Papoutsaki +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/es.po +Copyright: + Copyright (C) 2009 Domingo Becker + Copyright (C) 2008 Hector Daniel Cabrera + Copyright (C) 2009 Fernando Gonzalez Blanco +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/fi.po +Copyright: + Copyright (C) 2009 Timo Jyrinki + Copyright (C) 2009 Ville-Pekka Vainio +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/fr.po +Copyright: + Copyright (C) 2008 Robert-Andre Mauchin + Copyright (C) 2008 Michael Ughetto + Copyright (C) 2008 Pablo Martin-Gomez + Copyright (C) 2009 Corentin Perard +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/gu.po +Copyright: + Copyright (C) 2009 Sweta Kothari +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/hi.po +Copyright: + Copyright (C) 2009 Rajesh Ranjan +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/it.po +Copyright: + Copyright (C) 2008,2009 Luca Ferretti + Copyright (C) 2009 Milo Casagrande + Copyright (C) 2009 ario_santagiuliana + Copyright (C) 2009 Milo Casagrande + +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/ja.po +Copyright: + Copyright (C) 2009 Hyu_gabaru Ryu_ichi +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/kn.po +Copyright: + Copyright (C) 2009 Shankar Prasad +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/mr.po +Copyright: + Copyright (C) 2009 Sandeep Shedmake + Copyright (C) 2009 Sandeep Shedmake +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/nl.po +Copyright: + Copyright (C) 2009 Geert Warrink + Copyright (C) 2009 Reinout van Schouwen +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/or.po +Copyright: + Copyright (C) 2009 Manoj Kumar Giri +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/pa.po +Copyright: + Copyright (C) 2009 Amanpreet Singh Alam + Copyright (C) 2009 Jaswinder Singh + Copyright (C) 2009 A S Alam +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/pl.po +Copyright: + Copyright (C) 2008 Piotr Drag +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/pt_BR.po +Copyright: + Copyright (C) 2008 Fabian Affolter +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/sr.po, po/sr@latin.po +Copyright: + Copyright (C) 2009 Igor Miletic (Игор Милетић) , 2009. + Copyright (C) 2009 Miloš Komarčević , 2009. +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/sv.po +Copyright: + Copyright (C) 2008 Daniel Nylander +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/ta.po +Copyright: + Copyright (C) 2009 I. Felix +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/te.po +Copyright: + Copyright (C) 2009 Krishna Babu K +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/uk.po +Copyright: + Copyright (C) 2009 Yuri Chornoivan +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +File: po/zh_CN.po +Copyright: + Copyright (C) 2008 闫丰刚 (sainry) +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + +Files: debian/* +Copyright: + Copyright 2006-2009 Sjoerd Simons + Copyright 2006-2008 CJ van den Berg +License: GPL-2+ + On Debian systems, the complete text of the GPL-2 can be found in + /usr/share/common-licenses/GPL-2. + +Files: src/pulsecore/cpu-*, src/pulsecore/remap*, + src/pulsecore/svolume_{arm,mmx,sse}.c +Copyright: + Copyright 2004-2006 Lennart Poettering + Copyright 2009 Wim Taymans +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + + +Files: src/pulsecore/sconv_sse.c +Copyright: + Copyright 2004-2006 Lennart Poettering + Copyright 2006 Pierre Ossman for Cendio AB +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. + + +Files: src/pulsecore/usergroup.* +Copyright: + Copyright 2009 Ted Percival +License: LGPL-2.1+ + On Debian systems, the complete text of the LGPL-2.1 can be found in + /usr/share/common-licenses/LGPL-2.1. --- pulseaudio-0.99.1.orig/debian/01PulseAudio +++ pulseaudio-0.99.1/debian/01PulseAudio @@ -0,0 +1,98 @@ +#! /bin/sh + +. "${PM_FUNCTIONS}" + +test_pulse_system() { + getent passwd pulse | awk -F: '{print $3}' +} + +get_pulse_users() { + PULSE_SYSTEM_USER=$(test_pulse_system) + if [ -z "${PULSE_SYSTEM_USER}" ]; then + ps -C pulseaudio -o uid= | tr -d ' ' + else + ps -C pulseaudio -o uid= | tr -d ' ' | sed s/${PULSE_SYSTEM_USER}// + fi +} + +# $1 = sink|source +# $2 = username +save_pulse_state() { + su "${2}" -c -- "pacmd list-${1}s" | \ + sed -n "s/^[[:space:]*]*//; /\(index\|mute\)/p" | \ + (index=""; + while read field value; do + if [ ${field%:} = "index" ]; then + index=${value} + else + savestate pulse:"${2}":${1}${index} ${value} + fi + done) +} + +# $1 = sink|source +# $2 = username +restore_pulse_state() { + su "${2}" -c -- "pacmd list-${1}s" | \ + sed -n "s/^[[:space:]*]*index: //p" | \ + while read index; do + if state_exists pulse:"${2}":${1}${index}; then + su "${2}" -c -- "pacmd \ + set-${1}-mute \ + ${index} \ + $(restorestate pulse:"${2}":${1}${index})" + fi + done +} + +# $1 = sink|source +# $2 = username +mute_pulse() { + su "${2}" -c -- "pacmd list-${1}s" | \ + sed -n "s/^[[:space:]*]*//; /\(index\|mute\)/p" | \ + (index=""; + while read field value; do + if [ ${field%:} = "index" ]; then + index=${value} + su "${2}" -c -- "pacmd \ + set-${1}-mute ${index} yes" + fi + done) +} + +suspend_pulse() { + for i in $(get_pulse_users); do + THIS_USER="$(getent passwd ${i} | cut -f1 -d:)" + save_pulse_state sink "${THIS_USER}" + save_pulse_state source "${THIS_USER}" + su "${THIS_USER}" -c -- 'pacmd suspend true' > /dev/null 2>&1 + done + for i in $(get_pulse_users); do + THIS_USER="$(getent passwd ${i} | cut -f1 -d:)" + if su "${THIS_USER}" -c -- 'ck-list-sessions | grep "active = TRUE"' > /dev/null 2>&1; then + mute_pulse sink "${THIS_USER}" + mute_pulse source "${THIS_USER}" + break + fi + done +} + +resume_pulse() { + for i in $(get_pulse_users); do + THIS_USER="$(getent passwd ${i} | cut -f1 -d:)" + restore_pulse_state sink "${THIS_USER}" + restore_pulse_state source "${THIS_USER}" + su "${THIS_USER}" -c -- 'pacmd suspend false' > /dev/null 2>&1 + done +} + +case $1 in + hibernate|suspend) + suspend_pulse + ;; + thaw|resume) + resume_pulse + ;; + *) exit $NA + ;; +esac --- pulseaudio-0.99.1.orig/debian/libpulse0.install +++ pulseaudio-0.99.1/debian/libpulse0.install @@ -0,0 +1,4 @@ +etc/pulse/client.conf +usr/lib/*/libpulse.so.* +usr/lib/*/libpulse-simple.so.* +usr/lib/*/libpulsecommon-*.so --- pulseaudio-0.99.1.orig/debian/libpulse-dev.install +++ pulseaudio-0.99.1/debian/libpulse-dev.install @@ -0,0 +1,6 @@ +usr/lib/*/libpulse.so +usr/lib/*/libpulse-simple.so +usr/lib/*/libpulse-mainloop-glib.so +usr/lib/*/pkgconfig/* +usr/include/pulse/* +usr/share/vala/vapi --- pulseaudio-0.99.1.orig/debian/libpulse-dev.examples +++ pulseaudio-0.99.1/debian/libpulse-dev.examples @@ -0,0 +1,2 @@ +src/tests/pacat-simple.c +src/tests/parec-simple.c --- pulseaudio-0.99.1.orig/debian/pulse-alsa.conf +++ pulseaudio-0.99.1/debian/pulse-alsa.conf @@ -0,0 +1,34 @@ +# This file is referred to by /usr/share/alsa/pulse.conf to set pulseaudio as +# the default output plugin for applications using alsa when PulseAudio is +# running. + +pcm.!default { + type pulse + hint { + show { + @func refer + name defaults.namehint.basic + } + description "Playback/recording through the PulseAudio sound server" + } +} + +ctl.!default { + type pulse +} + +pcm.pulse { + type pulse + hint { + show { + @func refer + name defaults.namehint.basic + } + description "Playback/recording through the PulseAudio sound server" + } +} + +ctl.pulse { + type pulse +} + --- pulseaudio-0.99.1.orig/debian/pulseaudio-module-jack.install +++ pulseaudio-0.99.1/debian/pulseaudio-module-jack.install @@ -0,0 +1,3 @@ +usr/lib/pulse-*/modules/module-jack-sink.so +usr/lib/pulse-*/modules/module-jack-source.so +usr/lib/pulse-*/modules/module-jackdbus-detect.so --- pulseaudio-0.99.1.orig/debian/pulseaudio.shlibs +++ pulseaudio-0.99.1/debian/pulseaudio.shlibs @@ -0,0 +1 @@ +libpulsecore 0.99 pulseaudio --- pulseaudio-0.99.1.orig/debian/pulse.conf +++ pulseaudio-0.99.1/debian/pulse.conf @@ -0,0 +1,18 @@ +# PulseAudio alsa plugin configuration file to set the pulseaudio plugin as +# default output for applications using alsa when pulseaudio is running. +hook_func.pulse_load_if_running { + lib "libasound_module_conf_pulse.so" + func "conf_pulse_hook_load_if_running" +} + +@hooks [ + { + func pulse_load_if_running + files [ + "/usr/share/alsa/pulse-alsa.conf" + "/etc/asound.conf" + "~/.asoundrc" + ] + errors false + } +] --- pulseaudio-0.99.1.orig/debian/pulseaudio-utils.install +++ pulseaudio-0.99.1/debian/pulseaudio-utils.install @@ -0,0 +1,12 @@ +usr/bin/pacat +usr/bin/pacmd +usr/bin/pactl +usr/bin/paplay +usr/bin/pamon +usr/bin/parec +usr/bin/parecord +usr/bin/padsp +usr/bin/pax11publish +usr/bin/pasuspender +usr/lib/*/libpulsedsp.so usr/lib +usr/share/lintian/overrides/pulseaudio-utils --- pulseaudio-0.99.1.orig/debian/watch +++ pulseaudio-0.99.1/debian/watch @@ -0,0 +1,8 @@ +# Control file for uscan +# Run the "uscan" command to check for upstream updates and more. +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +http://0pointer.de/lennart/projects/pulseaudio/ pulseaudio-(.*)\.tar\.gz --- pulseaudio-0.99.1.orig/debian/patches/0013-Load-RAOP-Zeroconf-by-default.patch +++ pulseaudio-0.99.1/debian/patches/0013-Load-RAOP-Zeroconf-by-default.patch @@ -0,0 +1,25 @@ +Index: pulseaudio-0.99.1/src/daemon/default.pa.in +=================================================================== +--- pulseaudio-0.99.1.orig/src/daemon/default.pa.in 2011-08-03 12:10:49.000000000 +0200 ++++ pulseaudio-0.99.1/src/daemon/default.pa.in 2011-08-03 12:14:37.471235263 +0200 +@@ -112,6 +112,20 @@ + #load-module module-zeroconf-publish + ])dnl + ++### If the zeroconf/RAOP package is installed, load the module automatically. ++### TODO: Upstream thinks this should be done using gconf/paprefs instead. ++.ifexists module-zeroconf-discover@PA_SOEXT@ ++.nofail ++load-module module-zeroconf-discover ++.fail ++.endif ++.ifexists module-raop-discover@PA_SOEXT@ ++.nofail ++load-module module-raop-discover ++.fail ++.endif ++ ++ + ifelse(@OS_IS_WIN32@, 0, [dnl + ### Load the RTP receiver module (also configured via paprefs, see above) + #load-module module-rtp-recv --- pulseaudio-0.99.1.orig/debian/patches/0002-add-padsp-wrapper-check.patch +++ pulseaudio-0.99.1/debian/patches/0002-add-padsp-wrapper-check.patch @@ -0,0 +1,21 @@ +Index: pulseaudio-0.9.14/src/utils/padsp +=================================================================== +--- pulseaudio-0.9.14.orig/src/utils/padsp 2009-01-21 18:14:59.000000000 -0500 ++++ pulseaudio-0.9.14/src/utils/padsp 2009-01-21 18:24:06.000000000 -0500 +@@ -75,10 +75,12 @@ + + shift $(( $OPTIND - 1 )) + +-if [ x"$LD_PRELOAD" = x ] ; then +- LD_PRELOAD="libpulsedsp.so" +-else +- LD_PRELOAD="$LD_PRELOAD libpulsedsp.so" ++if `pgrep -f /usr/bin/pulseaudio 1>/dev/null` ; then ++ if [ x"$LD_PRELOAD" = x ] ; then ++ LD_PRELOAD="libpulsedsp.so" ++ else ++ LD_PRELOAD="$LD_PRELOAD libpulsedsp.so" ++ fi + fi + + export LD_PRELOAD --- pulseaudio-0.99.1.orig/debian/patches/0007-handle-Master-Front.patch +++ pulseaudio-0.99.1/debian/patches/0007-handle-Master-Front.patch @@ -0,0 +1,83 @@ +Index: pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output-headphones-2.conf +=================================================================== +--- pulseaudio-0.9.20.orig/src/modules/alsa/mixer/paths/analog-output-headphones-2.conf 2009-11-12 19:26:22.000000000 -0500 ++++ pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output-headphones-2.conf 2009-11-12 19:26:38.000000000 -0500 +@@ -33,6 +33,12 @@ + override-map.1 = all + override-map.2 = all-left,all-right + ++[Element Master Front] ++switch = mute ++volume = merge ++override-map.1 = all ++override-map.2 = front-left,front-right ++ + [Element Master Mono] + switch = off + volume = off +Index: pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output-headphones.conf +=================================================================== +--- pulseaudio-0.9.20.orig/src/modules/alsa/mixer/paths/analog-output-headphones.conf 2009-11-12 19:26:22.000000000 -0500 ++++ pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output-headphones.conf 2009-11-12 19:26:38.000000000 -0500 +@@ -33,6 +33,12 @@ + override-map.1 = all + override-map.2 = all-left,all-right + ++[Element Master Front] ++switch = mute ++volume = merge ++override-map.1 = all ++override-map.2 = front-left,front-right ++ + [Element Master Mono] + switch = off + volume = off +Index: pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output-mono.conf +=================================================================== +--- pulseaudio-0.9.20.orig/src/modules/alsa/mixer/paths/analog-output-mono.conf 2009-11-12 19:26:22.000000000 -0500 ++++ pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output-mono.conf 2009-11-12 19:26:38.000000000 -0500 +@@ -31,6 +31,10 @@ + switch = off + volume = off + ++[Element Master Front] ++switch = off ++volume = off ++ + [Element Master Mono] + required = any + switch = mute +Index: pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output-speaker.conf +=================================================================== +--- pulseaudio-0.9.20.orig/src/modules/alsa/mixer/paths/analog-output-speaker.conf 2009-11-12 19:26:22.000000000 -0500 ++++ pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output-speaker.conf 2009-11-12 19:26:38.000000000 -0500 +@@ -33,6 +33,12 @@ + override-map.1 = all + override-map.2 = all-left,all-right + ++[Element Master Front] ++switch = mute ++volume = merge ++override-map.1 = all ++override-map.2 = front-left,front-right ++ + [Element Master Mono] + switch = off + volume = off +Index: pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output.conf +=================================================================== +--- pulseaudio-0.9.20.orig/src/modules/alsa/mixer/paths/analog-output.conf 2009-11-12 19:26:22.000000000 -0500 ++++ pulseaudio-0.9.20/src/modules/alsa/mixer/paths/analog-output.conf 2009-11-12 19:26:38.000000000 -0500 +@@ -34,6 +34,12 @@ + override-map.1 = all + override-map.2 = all-left,all-right + ++[Element Master Front] ++switch = mute ++volume = merge ++override-map.1 = all ++override-map.2 = front-left,front-right ++ + [Element Master Mono] + switch = off + volume = off --- pulseaudio-0.99.1.orig/debian/patches/0012-JACK-Load-module-jackdbus-detect-in-default.pa.patch +++ pulseaudio-0.99.1/debian/patches/0012-JACK-Load-module-jackdbus-detect-in-default.pa.patch @@ -0,0 +1,26 @@ +From e5a6af86fa3463b186db528c259ad76d97d7110f Mon Sep 17 00:00:00 2001 +From: David Henningsson +Date: Tue, 30 Nov 2010 22:11:48 +0100 +Subject: [PATCH 2/2] JACK: Load module-jackdbus-detect in default.pa + +Signed-off-by: David Henningsson +--- + src/daemon/default.pa.in | 5 +++++ + 1 files changed, 5 insertions(+), 0 deletions(-) + +Index: pulseaudio-0.99.1/src/daemon/default.pa.in +=================================================================== +--- pulseaudio-0.99.1.orig/src/daemon/default.pa.in 2011-08-03 11:56:16.000000000 +0200 ++++ pulseaudio-0.99.1/src/daemon/default.pa.in 2011-08-03 11:58:45.081237445 +0200 +@@ -79,6 +79,11 @@ + load-module module-detect + .endif + ++### Automatically connect sink and source if JACK server is present ++.ifexists module-jackdbus-detect@PA_SOEXT@ ++load-module module-jackdbus-detect ++.endif ++ + ifelse(@HAVE_BLUEZ@, 1, [dnl + ### Automatically load driver modules for Bluetooth hardware + .ifexists module-bluetooth-discover@PA_SOEXT@ --- pulseaudio-0.99.1.orig/debian/patches/0006-load-module-x11-bell.patch +++ pulseaudio-0.99.1/debian/patches/0006-load-module-x11-bell.patch @@ -0,0 +1,33 @@ +Index: pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/daemon/start-pulseaudio-x11.in +=================================================================== +--- pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478.orig/src/daemon/start-pulseaudio-x11.in 2010-01-17 18:54:19.000000000 -0500 ++++ pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/daemon/start-pulseaudio-x11.in 2010-06-07 23:56:08.123227001 -0400 +@@ -21,11 +21,10 @@ + + [ -z "$PULSE_SERVER" ] + +-@PA_BINARY@ --start "$@" +- + if [ x"$DISPLAY" != x ] ; then + + @PACTL_BINARY@ load-module module-x11-publish "display=$DISPLAY" > /dev/null ++ @PACTL_BINARY@ load-module module-x11-bell "display=$DISPLAY" "sample=bell.ogg" > /dev/null + @PACTL_BINARY@ load-module module-x11-cork-request "display=$DISPLAY" > /dev/null + + if [ x"$SESSION_MANAGER" != x ] ; then +Index: pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/daemon/start-pulseaudio-kde.in +=================================================================== +--- pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478.orig/src/daemon/start-pulseaudio-kde.in 2010-06-07 23:56:56.123227001 -0400 ++++ pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/daemon/start-pulseaudio-kde.in 2010-06-07 23:57:21.503227002 -0400 +@@ -21,10 +21,9 @@ + + [ -z "$PULSE_SERVER" ] + +-@PA_BINARY@ --start "$@" +- + if [ x"$DISPLAY" != x ] ; then + + @PACTL_BINARY@ load-module module-device-manager "do_routing=1" > /dev/null ++ @PACTL_BINARY@ load-module module-x11-bell "display=$DISPLAY" "sample=bell.ogg" > /dev/null + + fi --- pulseaudio-0.99.1.orig/debian/patches/0601-Introduce-available-concept-for-ports-and-communicat.patch +++ pulseaudio-0.99.1/debian/patches/0601-Introduce-available-concept-for-ports-and-communicat.patch @@ -0,0 +1,148 @@ +From b2f0aa538d4645c93f9e02a3fb9e87cbec83eda5 Mon Sep 17 00:00:00 2001 +From: David Henningsson +Date: Wed, 6 Jul 2011 11:37:27 +0200 +Subject: [PATCH] Introduce "available" concept for ports, and communicate + that to clients. Bump protocol version to 24. + +Signed-off-by: David Henningsson +--- + configure.ac | 2 +- + src/pulse/def.h | 17 +++++++++++++++++ + src/pulse/introspect.c | 16 ++++++++++++++++ + src/pulse/introspect.h | 2 ++ + src/pulsecore/protocol-native.c | 4 ++++ + src/pulsecore/sink.h | 1 + + 6 files changed, 41 insertions(+), 1 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 1bc858f..6fbfd30 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -36,7 +36,7 @@ AC_SUBST(PA_MINOR, pa_minor) + AC_SUBST(PA_MAJORMINOR, pa_major.pa_minor) + + AC_SUBST(PA_API_VERSION, 12) +-AC_SUBST(PA_PROTOCOL_VERSION, 23) ++AC_SUBST(PA_PROTOCOL_VERSION, 24) + + # The stable ABI for client applications, for the version info x:y:z + # always will hold y=z +diff --git a/src/pulse/def.h b/src/pulse/def.h +index 32169de..e09b8d2 100644 +--- a/src/pulse/def.h ++++ b/src/pulse/def.h +@@ -952,6 +952,23 @@ typedef void (*pa_free_cb_t)(void *p); + * playback, \since 1.0 */ + #define PA_STREAM_EVENT_FORMAT_LOST "format-lost" + ++/** Port availability / jack detection status ++ * \since MERGE_OF_JACK_DETECTION */ ++typedef enum pa_port_available { ++ PA_PORT_AVAILABLE_UNKNOWN = 0, /**< This port does not support jack detection \since MERGE_OF_JACK_DETECTION */ ++ PA_PORT_AVAILABLE_NO = 1, /**< This port is not available, likely because the jack is not plugged in. \since MERGE_OF_JACK_DETECTION */ ++ PA_PORT_AVAILABLE_YES = 2, /**< This port is available, likely because the jack is plugged in. \since MERGE_OF_JACK_DETECTION */ ++} pa_port_available_t; ++ ++/** \cond fulldocs */ ++#define PA_PORT_AVAILABLE_UNKNOWN PA_PORT_AVAILABLE_UNKNOWN ++#define PA_PORT_AVAILABLE_NO PA_PORT_AVAILABLE_NO ++#define PA_PORT_AVAILABLE_YES PA_PORT_AVAILABLE_YES ++ ++/* FIXME: Remove the line below when this actually gets merged. Protocol version number */ ++#define JACK_DETECTION_PROTOCOL_VERSION 24 ++/** \endcond */ ++ + PA_C_DECL_END + + #endif +diff --git a/src/pulse/introspect.c b/src/pulse/introspect.c +index 27a298c..d1a0ed1 100644 +--- a/src/pulse/introspect.c ++++ b/src/pulse/introspect.c +@@ -211,6 +211,14 @@ static void context_get_sink_info_callback(pa_pdispatch *pd, uint32_t command, u + goto fail; + } + ++ i.ports[0][j].available = PA_PORT_AVAILABLE_UNKNOWN; ++ if (o->context->version >= JACK_DETECTION_PROTOCOL_VERSION) { ++ uint32_t av; ++ if (pa_tagstruct_getu32(t, &av) < 0 || av > PA_PORT_AVAILABLE_YES) ++ goto fail; ++ i.ports[0][j].available = av; ++ } ++ + i.ports[j] = &i.ports[0][j]; + } + +@@ -476,6 +484,14 @@ static void context_get_source_info_callback(pa_pdispatch *pd, uint32_t command, + goto fail; + } + ++ i.ports[0][j].available = PA_PORT_AVAILABLE_UNKNOWN; ++ if (o->context->version >= JACK_DETECTION_PROTOCOL_VERSION) { ++ uint32_t av; ++ if (pa_tagstruct_getu32(t, &av) < 0 || av > PA_PORT_AVAILABLE_YES) ++ goto fail; ++ i.ports[0][j].available = av; ++ } ++ + i.ports[j] = &i.ports[0][j]; + } + +diff --git a/src/pulse/introspect.h b/src/pulse/introspect.h +index 196d44d..8e4cc97 100644 +--- a/src/pulse/introspect.h ++++ b/src/pulse/introspect.h +@@ -202,6 +202,7 @@ typedef struct pa_sink_port_info { + const char *name; /**< Name of this port */ + const char *description; /**< Description of this port */ + uint32_t priority; /**< The higher this value is the more useful this port is as a default */ ++ pa_port_available_t available; /**< PA_PORT_AVAILABLE_UNKNOWN, PA_PORT_AVAILABLE_NO or PA_PORT_AVAILABLE_YES \since MERGE_OF_JACK_DETECTION */ + } pa_sink_port_info; + + /** Stores information about sinks. Please note that this structure +@@ -281,6 +282,7 @@ typedef struct pa_source_port_info { + const char *name; /**< Name of this port */ + const char *description; /**< Description of this port */ + uint32_t priority; /**< The higher this value is the more useful this port is as a default */ ++ pa_port_available_t available; /**< PA_PORT_AVAILABLE_UNKNOWN, PA_PORT_AVAILABLE_NO or PA_PORT_AVAILABLE_YES \since MERGE_OF_JACK_DETECTION */ + } pa_source_port_info; + + /** Stores information about sources. Please note that this structure +diff --git a/src/pulsecore/protocol-native.c b/src/pulsecore/protocol-native.c +index 3ed9f1a..ab8c5f8 100644 +--- a/src/pulsecore/protocol-native.c ++++ b/src/pulsecore/protocol-native.c +@@ -3093,6 +3093,8 @@ static void sink_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_sin + pa_tagstruct_puts(t, p->name); + pa_tagstruct_puts(t, p->description); + pa_tagstruct_putu32(t, p->priority); ++ if (c->version >= JACK_DETECTION_PROTOCOL_VERSION) ++ pa_tagstruct_putu32(t, p->available); + } + } + +@@ -3164,6 +3166,8 @@ static void source_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_s + pa_tagstruct_puts(t, p->name); + pa_tagstruct_puts(t, p->description); + pa_tagstruct_putu32(t, p->priority); ++ if (c->version >= JACK_DETECTION_PROTOCOL_VERSION) ++ pa_tagstruct_putu32(t, p->available); + } + } + +diff --git a/src/pulsecore/sink.h b/src/pulsecore/sink.h +index 239936b..6c6ffdb 100644 +--- a/src/pulsecore/sink.h ++++ b/src/pulsecore/sink.h +@@ -59,6 +59,7 @@ struct pa_device_port { + char *description; + + unsigned priority; ++ pa_port_available_t available; /**< PA_PORT_AVAILABLE_UNKNOWN, PA_PORT_AVAILABLE_NO or PA_PORT_AVAILABLE_YES \since MERGE_OF_JACK_DETECTION */ + + /* .. followed by some implementation specific data */ + }; +-- +1.7.5.4 + --- pulseaudio-0.99.1.orig/debian/patches/series +++ pulseaudio-0.99.1/debian/patches/series @@ -0,0 +1,27 @@ +# Ubuntu/Debian specific config/fixes +0002-In-KDE-only-start-pulseaudio-from-the-KDE-specific-d.patch +0002-add-padsp-wrapper-check.patch +0003-esd-honour-system-pulseaudio.patch +0004-mute-iec958-optical-raw-for-audigyX.patch +0005-dont-load-cork-music-on-phone.patch +0006-load-module-x11-bell.patch +0007-handle-Master-Front.patch +0008-delay-gnome-autostart.patch +0010-lp453966-handle-digmic-pt2.patch +0011-lp451635-handle-dove-x0-line-hp-swap.patch +0012-JACK-Load-module-jackdbus-detect-in-default.pa.patch +0013-Load-RAOP-Zeroconf-by-default.patch +0014-alsa-mixer-Add-separate-profile-for-Nvidia.patch +0016-nodisplay-autostart.patch +0017-Make-dbus-error-more-polite.patch + +# bug-fix patches from git master (post 0.99.1) +0400-Fix-crash-in-path-subset-elimination.patch +0402-source-output-Fix-resampling.patch +0403-stream-restore-Save-restore-source-output-volume-mut.patch + +# Jack detection patches +0601-Introduce-available-concept-for-ports-and-communicat.patch +0602-Create-a-port-even-if-there-is-only-one-path-setting.patch +0603-Turn-device-ports-into-reference-counted-objects.patch +0604-ALSA-part-of-jack-detection-and-a-small-policy-modul.patch --- pulseaudio-0.99.1.orig/debian/patches/0017-Make-dbus-error-more-polite.patch +++ pulseaudio-0.99.1/debian/patches/0017-Make-dbus-error-more-polite.patch @@ -0,0 +1,13 @@ +Index: pulseaudio-0.99.1/src/daemon/main.c +=================================================================== +--- pulseaudio-0.99.1.orig/src/daemon/main.c 2011-07-13 11:02:48.000000000 +0200 ++++ pulseaudio-0.99.1/src/daemon/main.c 2011-08-03 12:26:10.721233528 +0200 +@@ -377,7 +377,7 @@ + if (dbus_error_is_set(&error)) + pa_log_error("Failed to acquire %s: %s: %s", name, error.name, error.message); + else +- pa_log_error("D-Bus name %s already taken. Weird shit!", name); ++ pa_log_error("D-Bus name %s already taken.", name); + + /* PA cannot be started twice by the same user and hence we can + * ignore mostly the case that a name is already taken. */ --- pulseaudio-0.99.1.orig/debian/patches/0003-esd-honour-system-pulseaudio.patch +++ pulseaudio-0.99.1/debian/patches/0003-esd-honour-system-pulseaudio.patch @@ -0,0 +1,17 @@ +diff -urN pulseaudio-0.9.14/src/daemon/esdcompat.in pulseaudio-0.9.14.new/src/daemon/esdcompat.in +--- pulseaudio-0.9.14/src/daemon/esdcompat.in 2009-03-27 10:24:57.000000000 +1100 ++++ pulseaudio-0.9.14.new/src/daemon/esdcompat.in 2009-03-27 10:30:36.000000000 +1100 +@@ -24,6 +24,13 @@ + exit 1 + } + ++PULSEAUDIO_SYSTEM_START=0 ++test -f /etc/default/pulseaudio && . /etc/default/pulseaudio ++ ++if [ ! $PULSEAUDIO_SYSTEM_START -eq 0 ]; then ++ exit 0 ++fi ++ + ARGS=" --log-target=syslog" + + while [ "$#" -gt "0" ]; do --- pulseaudio-0.99.1.orig/debian/patches/0604-ALSA-part-of-jack-detection-and-a-small-policy-modul.patch +++ pulseaudio-0.99.1/debian/patches/0604-ALSA-part-of-jack-detection-and-a-small-policy-modul.patch @@ -0,0 +1,1082 @@ +From 333d932fd27c5fd5e4d1c2da61677968639161fb Mon Sep 17 00:00:00 2001 +From: David Henningsson +Date: Wed, 10 Aug 2011 13:56:50 +0200 +Subject: [PATCH] ALSA part of jack detection, and a small policy module + +Signed-off-by: David Henningsson +--- + src/Makefile.am | 1 + + src/daemon/default.pa.in | 2 + + src/modules/alsa/alsa-jack-inputdev.c | 397 ++++++++++++++++++++ + src/modules/alsa/alsa-jack-inputdev.h | 32 ++ + src/modules/alsa/alsa-mixer.c | 34 ++ + src/modules/alsa/alsa-mixer.h | 4 + + src/modules/alsa/mixer/paths/analog-input-aux.conf | 2 +- + .../alsa/mixer/paths/analog-input-dock-mic.conf | 6 +- + .../alsa/mixer/paths/analog-input-front-mic.conf | 6 +- + .../alsa/mixer/paths/analog-input-linein.conf | 2 +- + .../alsa/mixer/paths/analog-input-mic-line.conf | 2 +- + src/modules/alsa/mixer/paths/analog-input-mic.conf | 5 +- + .../alsa/mixer/paths/analog-input-rear-mic.conf | 6 +- + .../alsa/mixer/paths/analog-output-headphones.conf | 3 + + src/modules/alsa/module-alsa-card.c | 56 +++- + src/modules/module-switch-on-connect.c | 138 +++++++- + src/pulsecore/card.c | 4 + + src/pulsecore/card.h | 4 + + src/pulsecore/core.h | 1 + + src/pulsecore/device-port.c | 9 + + src/pulsecore/device-port.h | 2 + + 21 files changed, 705 insertions(+), 11 deletions(-) + create mode 100644 src/modules/alsa/alsa-jack-inputdev.c + create mode 100644 src/modules/alsa/alsa-jack-inputdev.h + +diff --git a/src/Makefile.am b/src/Makefile.am +index 769a24d..0bd9b1f 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -1543,6 +1543,7 @@ module_coreaudio_device_la_LIBADD = $(MODULE_LIBADD) + libalsa_util_la_SOURCES = \ + modules/alsa/alsa-util.c modules/alsa/alsa-util.h \ + modules/alsa/alsa-mixer.c modules/alsa/alsa-mixer.h \ ++ modules/alsa/alsa-jack-inputdev.c modules/alsa/alsa-jack-inputdev.h \ + modules/alsa/alsa-sink.c modules/alsa/alsa-sink.h \ + modules/alsa/alsa-source.c modules/alsa/alsa-source.h \ + modules/reserve-wrap.c modules/reserve-wrap.h +diff --git a/src/daemon/default.pa.in b/src/daemon/default.pa.in +index 605f42c..e5dceaf 100755 +--- a/src/daemon/default.pa.in ++++ b/src/daemon/default.pa.in +@@ -174,3 +174,5 @@ ifelse(@HAVE_X11@, 1, [dnl + ### Make some devices default + #set-default-sink output + #set-default-source input ++ ++load-module module-switch-on-connect +diff --git a/src/modules/alsa/alsa-jack-inputdev.c b/src/modules/alsa/alsa-jack-inputdev.c +new file mode 100644 +index 0000000..6b5a020 +--- /dev/null ++++ b/src/modules/alsa/alsa-jack-inputdev.c +@@ -0,0 +1,397 @@ ++/*** ++ This file is part of PulseAudio. ++ ++ Copyright 2011 Canonical Ltd ++ Copyright 2011 Wolfson Microelectronics PLC ++ ++ PulseAudio is free software; you can redistribute it and/or modify ++ it under the terms of the GNU Lesser General Public License as published ++ by the Free Software Foundation; either version 2.1 of the License, ++ or (at your option) any later version. ++ ++ PulseAudio is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public License ++ along with PulseAudio; if not, write to the Free Software ++ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 ++ USA. ++***/ ++ ++#ifdef HAVE_CONFIG_H ++#include ++#endif ++ ++#include ++#include ++#include ++#include "alsa-jack-inputdev.h" ++#include "alsa-mixer.h" ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++struct port_controlinfo { ++ pa_device_port *port; ++ int64_t switches_enable; ++}; ++ ++struct jack_inputdev { ++ int fd; ++ pa_io_event* io_event; ++ pa_core* core; ++ int64_t switches_supported; ++ char *devname; ++ pa_hashmap *port_controls; /* Has struct port_controlinfo pointers in it */ ++}; ++ ++/* (mostly) from slimlogic/wolfson start */ ++ ++static const char *jack_get_input_id(const char *path) { ++ int i; ++ ++ for( i = 0; i < (int) strlen(path); i++) { ++ if (pa_startswith(path + i, "/event")) ++ return path + i + 6; ++ } ++ ++ return NULL; ++} ++ ++static pa_bool_t input_node_belongs_to_device( ++ const char *device, ++ const char *node) { ++ ++ char *cd; ++ pa_bool_t b; ++ ++ cd = pa_sprintf_malloc("/sys%s", device); ++ b = pa_startswith(node, cd); ++ pa_xfree(cd); ++ return b; ++} ++ ++ ++static pa_strlist* alsa_jack_inputdev_udev_detect(struct udev* udev, const char* match_path) { ++ struct udev_enumerate *enumerate; ++ struct udev_list_entry *item, *first; ++ const char *jack_path; ++ const char *jack_input; ++ pa_strlist *result = NULL; ++ ++ if (!(enumerate = udev_enumerate_new(udev))) ++ pa_log("Failed to initialize udev enumerator"); ++ else { ++ if (udev_enumerate_add_match_subsystem(enumerate, "input")) ++ pa_log_debug("Failed to match to subsystem input"); ++ ++ if (udev_enumerate_scan_devices(enumerate)) ++ pa_log_debug("Failed to scan for devices"); ++ pa_log_debug("Matching against %s", match_path); ++ first = udev_enumerate_get_list_entry(enumerate); ++ udev_list_entry_foreach(item, first) { ++ jack_path = udev_list_entry_get_name(item); ++ pa_log_debug("testing %s", jack_path); ++ if (input_node_belongs_to_device(match_path, jack_path)) { ++ jack_input = jack_get_input_id(jack_path); ++ if (jack_input) { ++ pa_log_debug("found jack input device %s\n", jack_input); ++ result = pa_strlist_prepend(result, jack_input); ++ } ++ } ++ } ++ udev_enumerate_unref(enumerate); ++ } ++ return result; ++} ++ ++/* (mostly) from slimlogic/wolfson end */ ++ ++static void jack_report(struct jack_inputdev *dev, uint64_t bitmask, uint64_t bitvalue) { ++ struct port_controlinfo *pc; ++ pa_hashmap *hm = NULL; ++ void* state; ++/* pa_log_debug("bitmask = 0x%llx, bitvalue = 0x%llx", bitmask, bitvalue); */ ++ PA_HASHMAP_FOREACH(pc, dev->port_controls, state) { ++ if (pc->switches_enable & bitmask) { ++ if (!hm) ++ hm = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func); ++ pa_hashmap_put(hm, pc->port, pc->port); ++ pa_device_port_set_available(pc->port, bitmask & bitvalue ? PA_PORT_AVAILABLE_YES : PA_PORT_AVAILABLE_NO); ++ } ++ } ++ ++ /* FIXME: should this really be done here? */ ++ if (!hm) ++ return; ++ pa_hook_fire(&dev->core->hooks[PA_CORE_HOOK_PORTS_AVAILABLE_CHANGED], hm); ++ pa_hashmap_free(hm, NULL, NULL); ++} ++ ++static void jack_get_initial_state(struct jack_inputdev *u) ++{ ++ uint64_t switches; ++ int err; ++ ++ pa_assert(SW_MAX < 63); ++ err = ioctl(u->fd, EVIOCGSW(sizeof(switches)), &switches); ++ if (err < 0) { ++ pa_log("Failed to read initial %s jack status %s", u->devname, strerror(errno)); ++ return; ++ } ++ ++ /* We got all bits, set them correctly */ ++ jack_report(u, (1 << (SW_MAX+1)) - 1, switches); ++} ++ ++ ++static char* get_match_path_from_card_idx(struct udev* udev, int card_idx) { ++ char* t; ++ struct udev_device* card; ++ ++ t = pa_sprintf_malloc("%s/class/sound/card%i", udev_get_sys_path(udev), card_idx); ++ card = udev_device_new_from_syspath(udev, t); ++ pa_xfree(t); ++ if (!card) { ++ pa_log_error("Udev error getting udev device :-("); ++ return NULL; ++ } ++ ++ return pa_xstrdup(udev_device_get_devpath(card)); ++} ++ ++static void jack_inputdev_free(struct jack_inputdev* dev, void* dummy) { ++ ++ if (!dev) ++ return; ++ ++ if (dev->port_controls) { ++ struct port_controlinfo* pc; ++ while ((pc = pa_hashmap_steal_first(dev->port_controls))) { ++ if (pc->port) ++ pa_device_port_unref(pc->port); ++ pa_xfree(pc); ++ } ++ pa_hashmap_free(dev->port_controls, NULL, NULL); ++ } ++ ++ if (dev->io_event && dev->core) { ++ dev->core->mainloop->io_free(dev->io_event); ++ } ++ ++ if (dev->fd) ++ close(dev->fd); ++ ++ pa_xfree(dev); ++} ++ ++const char* swstrings[SW_MAX+1] = { ++ [SW_HEADPHONE_INSERT] = "Headphone", ++ [SW_MICROPHONE_INSERT] = "Microphone", ++ [SW_LINEOUT_INSERT] = "LineOut", ++ [SW_VIDEOOUT_INSERT] = "VideoOut", ++}; ++ ++static int match_input_dev_to_ports(pa_hashmap* ports, struct jack_inputdev* dev) { ++ int result = 0; ++ void *state = NULL; ++ pa_device_port *port; ++ ++ if (!ports) ++ return 0; ++ ++ PA_HASHMAP_FOREACH(port, ports, state) { ++ pa_alsa_port_data *alsa_port; ++ pa_alsa_path *path; ++ uint64_t switches = 0; ++ int i; ++ struct port_controlinfo *pc; ++ ++ /* pa_log_debug("testing against port %p %s", port, pa_strnull(port->name)); */ ++ alsa_port = PA_DEVICE_PORT_DATA(port); ++ path = alsa_port->path; ++ pa_log_debug("testing against path %s", pa_strnull(path->name)); ++ /* pa_log_debug("testing against name = %s code = %s", pa_strnull(path->jack_inputdev_name), pa_strnull(path->jack_inputdev_code)); */ ++ if (!path->jack_inputdev_name && !path->jack_inputdev_code) ++ continue; ++ ++ if (path->jack_inputdev_name) { ++ if (!strstr(dev->devname, path->jack_inputdev_name)) { ++ pa_log_debug("names do not match"); ++ continue; ++ } ++ } ++ ++ for (i = 0; i < SW_MAX; i++) { ++ if ((dev->switches_supported & (1 << i)) == 0) ++ continue; ++ if (!swstrings[i]) ++ continue; ++ if ((!path->jack_inputdev_code) || strstr(path->jack_inputdev_code, swstrings[i])) { ++ pa_log_debug("listens to %s events", swstrings[i]); ++ switches |= (1 << i); ++ } ++ } ++ if (switches == 0) ++ continue; ++ ++ /* Found a match, let's add it! */ ++ pc = pa_xnew0(struct port_controlinfo, 1); ++ pa_device_port_ref(port); ++ pc->port = port; ++ pc->switches_enable = switches; ++ pa_hashmap_put(dev->port_controls, pc, pc); ++ pa_log_debug("Added device %s to control port %s", dev->devname, pa_strnull(port->name)); ++ result++; ++ } ++ return result; ++} ++ ++static void match_input_dev_to_profiles(pa_idxset* devs, const char* jack_id, pa_hashmap* card_profiles) { ++ const char *devpath = pa_sprintf_malloc("/dev/input/event%s", jack_id); ++ int fd; ++ char devname[256] = ""; ++ int64_t switches = 0; ++ ++ pa_assert(SW_MAX <= 63); /* Or switches variable will overflow */ ++ pa_assert(card_profiles); ++ pa_assert(devs); ++ ++ fd = open(devpath, O_RDONLY); ++ if (fd < 0) { ++ pa_log_info("Could not open %s, error = %s", devpath, strerror(errno)); ++ return; ++ } ++ ++ if (ioctl(fd, EVIOCGNAME(sizeof(devname)), devname) < 0) { ++ pa_log_warn("Ioctl EVIOCGNAME error %s", strerror(errno)); ++ goto finish; ++ } ++ pa_log_debug("Device %s has name \"%s\".", devpath, devname); ++ ++ if (ioctl(fd, EVIOCGBIT(EV_SW, SW_MAX), &switches) < 0) { ++ pa_log_warn("Ioctl EVIOCGBIT error %s", strerror(errno)); ++ goto finish; ++ } ++ ++ if (switches == 0) { ++ pa_log_debug("Device %s does not have any switches.", devname); ++ goto finish; ++ } else { ++ /* Start iterating through profiles -> ports -> alsa_path */ ++ void *state; ++ pa_card_profile *profile; ++ int i = 0; ++ struct jack_inputdev *dev = pa_xnew0(struct jack_inputdev, 1); ++ ++ dev->fd = fd; ++ dev->switches_supported = switches; ++ pa_log_debug("Device %s has switches 0x%x.", devname, (int) switches); ++ dev->devname = pa_xstrdup(devname); ++ dev->port_controls = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func); ++ PA_HASHMAP_FOREACH(profile, card_profiles, state) { ++ i += match_input_dev_to_ports(profile->sink_ports, dev); ++ i += match_input_dev_to_ports(profile->source_ports, dev); ++ } ++ if (i == 0) { ++ pa_log_debug("No matching paths/ports found for device %s", devname); ++ jack_inputdev_free(dev, NULL); ++ } ++ else ++ pa_idxset_put(devs, dev, NULL); ++ return; ++ } ++ ++finish: ++ close(fd); ++} ++ ++static void jack_inputdev_cb(pa_mainloop_api*ea, pa_io_event* e, int fd, pa_io_event_flags_t events, void *userdata) { ++ struct jack_inputdev* dev = userdata; ++ struct input_event event; ++ ++ pa_assert(dev); ++ ++ if (pa_read(dev->fd, &event, sizeof(event), NULL) != sizeof(event)) { ++ pa_log_warn("Failed to read event from dev %s", dev->devname); ++ return; ++ } ++ ++ pa_log_debug("jack_report: name %s event type %x code %x value %x", dev->devname, event.type, event.code, event.value); ++ if (event.type == EV_SW) ++ jack_report(dev, 1 << event.code, event.value ? ~0 : 0); ++} ++ ++static void jack_inputdev_start_listening(struct jack_inputdev* dev, pa_core* core) { ++ pa_assert(dev); ++ ++ dev->core = core; ++ dev->io_event = core->mainloop->io_new(core->mainloop, dev->fd, PA_IO_EVENT_INPUT, jack_inputdev_cb, dev); ++ if (!dev->io_event) { ++ pa_log_warn("Failed to create io event for dev %s :-(", dev->devname); ++ return; ++ } ++ core->mainloop->io_enable(dev->io_event, PA_IO_EVENT_INPUT); ++ jack_get_initial_state(dev); ++} ++ ++pa_idxset* pa_alsa_jack_inputdevs_init(pa_core* core, pa_hashmap* card_profiles, int alsa_card_index) { ++ pa_idxset *result = NULL; ++ struct udev* udev = NULL; ++ char* match_path = NULL; ++ pa_strlist* jack_names = NULL; ++ struct jack_inputdev* dev; ++ uint32_t state; ++ ++ pa_assert(card_profiles); ++ ++ if (!(udev = udev_new())) { ++ pa_log("Failed to open udev context."); ++ goto finish; ++ } ++ ++ /* Step 1: Get a sysfs path to match input devices to */ ++ if (!(match_path = get_match_path_from_card_idx(udev, alsa_card_index))) ++ goto finish; ++ ++ /* Step 2: Enumerate all input devices */ ++ jack_names = alsa_jack_inputdev_udev_detect(udev, match_path); ++ if (!jack_names) { ++ pa_log_debug("No jack input devices found belonging to this card."); ++ goto finish; ++ } ++ ++ /* Step 3: Match input devices to profiles and ports */ ++ result = pa_idxset_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func); ++ while (jack_names) { ++ char* jack_id; ++ jack_names = pa_strlist_pop(jack_names, &jack_id); ++ match_input_dev_to_profiles(result, jack_id, card_profiles); ++ pa_xfree(jack_id); ++ } ++ ++ /* Step 4: Start the input devices */ ++ PA_IDXSET_FOREACH(dev, result, state) ++ jack_inputdev_start_listening(dev, core); ++ ++finish: ++ if (match_path) ++ pa_xfree(match_path); ++ if (udev) ++ udev_unref(udev); ++ return result; ++} ++ ++void pa_alsa_jack_inputdevs_free(pa_idxset* p) ++{ ++ ++ if (!p) ++ return; ++ pa_idxset_free(p, (pa_free2_cb_t) jack_inputdev_free, NULL); ++} +diff --git a/src/modules/alsa/alsa-jack-inputdev.h b/src/modules/alsa/alsa-jack-inputdev.h +new file mode 100644 +index 0000000..00a6b61 +--- /dev/null ++++ b/src/modules/alsa/alsa-jack-inputdev.h +@@ -0,0 +1,32 @@ ++/*** ++ This file is part of PulseAudio. ++ ++ Copyright 2011 Canonical Ltd ++ ++ PulseAudio is free software; you can redistribute it and/or modify ++ it under the terms of the GNU Lesser General Public License as published ++ by the Free Software Foundation; either version 2.1 of the License, ++ or (at your option) any later version. ++ ++ PulseAudio is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public License ++ along with PulseAudio; if not, write to the Free Software ++ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 ++ USA. ++***/ ++#ifndef fooalsajackinputdevhfoo ++#define fooalsajackinputdevhfoo ++ ++#include ++#include ++#include ++ ++pa_idxset* pa_alsa_jack_inputdevs_init(pa_core* core, pa_hashmap* card_profiles, int alsa_card_index); ++ ++void pa_alsa_jack_inputdevs_free(pa_idxset* p); ++ ++#endif +diff --git a/src/modules/alsa/alsa-mixer.c b/src/modules/alsa/alsa-mixer.c +index f5fcae0..80a7d63 100644 +--- a/src/modules/alsa/alsa-mixer.c ++++ b/src/modules/alsa/alsa-mixer.c +@@ -355,6 +355,28 @@ static int prepare_mixer(snd_mixer_t *mixer, const char *dev) { + return 0; + } + ++snd_mixer_t *pa_alsa_open_mixer_by_index(int card_idx) { ++ char *md; ++ int err; ++ snd_mixer_t *m; ++ ++ if ((err = snd_mixer_open(&m, 0)) < 0) { ++ pa_log("Error opening mixer: %s", pa_alsa_strerror(err)); ++ return NULL; ++ } ++ ++ md = pa_sprintf_malloc("hw:%i", card_idx); ++ ++ if (prepare_mixer(m, md) >= 0) { ++ pa_xfree(md); ++ return m; ++ } ++ ++ pa_xfree(md); ++ snd_mixer_close(m); ++ return NULL; ++} ++ + snd_mixer_t *pa_alsa_open_mixer_for_pcm(snd_pcm_t *pcm, char **ctl_device) { + int err; + snd_mixer_t *m; +@@ -2325,6 +2347,10 @@ pa_alsa_path* pa_alsa_path_new(const char *fname, pa_alsa_direction_t direction) + { "description", pa_config_parse_string, NULL, "General" }, + { "name", pa_config_parse_string, NULL, "General" }, + ++ /* [Jack_InputDevice] */ ++ { "name", pa_config_parse_string, NULL, "Jack_InputDevice" }, ++ { "code", pa_config_parse_string, NULL, "Jack_InputDevice" }, ++ + /* [Option ...] */ + { "priority", option_parse_priority, NULL, NULL }, + { "name", option_parse_name, NULL, NULL }, +@@ -2356,6 +2382,9 @@ pa_alsa_path* pa_alsa_path_new(const char *fname, pa_alsa_direction_t direction) + items[1].data = &p->description; + items[2].data = &p->name; + ++ items[3].data = &p->jack_inputdev_name; ++ items[4].data = &p->jack_inputdev_code; ++ + fn = pa_maybe_prefix_path(fname, + pa_run_from_build_tree() ? PA_BUILDDIR "/modules/alsa/mixer/paths/" : + PA_ALSA_PATHS_DIR); +@@ -3035,6 +3064,11 @@ static void path_set_condense(pa_alsa_path_set *ps, snd_mixer_t *m) { + if (p == p2) + continue; + ++ /* FIXME: subset also if p is empty and p2 is not...? */ ++ if (p->jack_inputdev_name != p2->jack_inputdev_name || ++ p->jack_inputdev_code != p2->jack_inputdev_code) ++ continue; ++ + /* Compare the elements of each set... */ + pa_assert_se(ea = p->elements); + pa_assert_se(eb = p2->elements); +diff --git a/src/modules/alsa/alsa-mixer.h b/src/modules/alsa/alsa-mixer.h +index d92d3e9..5098e86 100644 +--- a/src/modules/alsa/alsa-mixer.h ++++ b/src/modules/alsa/alsa-mixer.h +@@ -167,6 +167,9 @@ struct pa_alsa_path { + char *description; + unsigned priority; + ++ char *jack_inputdev_name; ++ char *jack_inputdev_code; ++ + pa_bool_t probed:1; + pa_bool_t supported:1; + pa_bool_t has_mute:1; +@@ -304,6 +307,7 @@ void pa_alsa_profile_set_free(pa_alsa_profile_set *s); + void pa_alsa_profile_set_dump(pa_alsa_profile_set *s); + + snd_mixer_t *pa_alsa_open_mixer_for_pcm(snd_pcm_t *pcm, char **ctl_device); ++snd_mixer_t *pa_alsa_open_mixer_by_index(int card_idx); + + pa_alsa_fdlist *pa_alsa_fdlist_new(void); + void pa_alsa_fdlist_free(pa_alsa_fdlist *fdl); +diff --git a/src/modules/alsa/mixer/paths/analog-input-aux.conf b/src/modules/alsa/mixer/paths/analog-input-aux.conf +index 3a7cb7b..e6aa064 100644 +--- a/src/modules/alsa/mixer/paths/analog-input-aux.conf ++++ b/src/modules/alsa/mixer/paths/analog-input-aux.conf +@@ -19,7 +19,7 @@ + ; See analog-output.conf.common for an explanation on the directives + + [General] +-priority = 90 ++priority = 80 + name = analog-input + + [Element Capture] +diff --git a/src/modules/alsa/mixer/paths/analog-input-dock-mic.conf b/src/modules/alsa/mixer/paths/analog-input-dock-mic.conf +index 74826a9..9d9fc0a 100644 +--- a/src/modules/alsa/mixer/paths/analog-input-dock-mic.conf ++++ b/src/modules/alsa/mixer/paths/analog-input-dock-mic.conf +@@ -19,9 +19,13 @@ + ; See analog-output.conf.common for an explanation on the directives + + [General] +-priority = 80 ++priority = 78 + name = analog-input-microphone-dock + ++[Jack_InputDevice] ++code = Microphone ++name = Dock ++ + [Element Dock Mic Boost] + required-any = any + switch = select +diff --git a/src/modules/alsa/mixer/paths/analog-input-front-mic.conf b/src/modules/alsa/mixer/paths/analog-input-front-mic.conf +index 6c58ece..12da7d8 100644 +--- a/src/modules/alsa/mixer/paths/analog-input-front-mic.conf ++++ b/src/modules/alsa/mixer/paths/analog-input-front-mic.conf +@@ -19,9 +19,13 @@ + ; See analog-output.conf.common for an explanation on the directives + + [General] +-priority = 90 ++priority = 85 + name = analog-input-microphone-front + ++[Jack_InputDevice] ++code = Microphone ++name = Front ++ + [Element Front Mic Boost] + required-any = any + switch = select +diff --git a/src/modules/alsa/mixer/paths/analog-input-linein.conf b/src/modules/alsa/mixer/paths/analog-input-linein.conf +index 461cebd..d5ffd65 100644 +--- a/src/modules/alsa/mixer/paths/analog-input-linein.conf ++++ b/src/modules/alsa/mixer/paths/analog-input-linein.conf +@@ -19,7 +19,7 @@ + ; See analog-output.conf.common for an explanation on the directives + + [General] +-priority = 90 ++priority = 80 + + [Element Capture] + switch = mute +diff --git a/src/modules/alsa/mixer/paths/analog-input-mic-line.conf b/src/modules/alsa/mixer/paths/analog-input-mic-line.conf +index fa680aa..fb80838 100644 +--- a/src/modules/alsa/mixer/paths/analog-input-mic-line.conf ++++ b/src/modules/alsa/mixer/paths/analog-input-mic-line.conf +@@ -19,7 +19,7 @@ + ; See analog-output.conf.common for an explanation on the directives + + [General] +-priority = 90 ++priority = 85 + name = analog-input + + [Element Capture] +diff --git a/src/modules/alsa/mixer/paths/analog-input-mic.conf b/src/modules/alsa/mixer/paths/analog-input-mic.conf +index d88028b..8ca00fd 100644 +--- a/src/modules/alsa/mixer/paths/analog-input-mic.conf ++++ b/src/modules/alsa/mixer/paths/analog-input-mic.conf +@@ -19,9 +19,12 @@ + ; See analog-output.conf.common for an explanation on the directives + + [General] +-priority = 89 ++priority = 87 + name = analog-input-microphone + ++[Jack_InputDevice] ++code = Microphone ++ + [Element Mic Boost] + required-any = any + switch = select +diff --git a/src/modules/alsa/mixer/paths/analog-input-rear-mic.conf b/src/modules/alsa/mixer/paths/analog-input-rear-mic.conf +index 75ed61b..deeb812 100644 +--- a/src/modules/alsa/mixer/paths/analog-input-rear-mic.conf ++++ b/src/modules/alsa/mixer/paths/analog-input-rear-mic.conf +@@ -19,9 +19,13 @@ + ; See analog-output.conf.common for an explanation on the directives + + [General] +-priority = 89 ++priority = 82 + name = analog-input-microphone-rear + ++[Jack_InputDevice] ++code = Microphone ++name = Rear ++ + [Element Rear Mic Boost] + required-any = any + switch = select +diff --git a/src/modules/alsa/mixer/paths/analog-output-headphones.conf b/src/modules/alsa/mixer/paths/analog-output-headphones.conf +index 1d7bb0b..ccc2d88 100644 +--- a/src/modules/alsa/mixer/paths/analog-output-headphones.conf ++++ b/src/modules/alsa/mixer/paths/analog-output-headphones.conf +@@ -22,6 +22,9 @@ + priority = 90 + name = analog-output-headphones + ++[Jack_InputDevice] ++code = Headphone ++ + [Element Hardware Master] + switch = mute + volume = merge +diff --git a/src/modules/alsa/module-alsa-card.c b/src/modules/alsa/module-alsa-card.c +index e60aa5e..a837ca8 100644 +--- a/src/modules/alsa/module-alsa-card.c ++++ b/src/modules/alsa/module-alsa-card.c +@@ -39,6 +39,7 @@ + #include "alsa-util.h" + #include "alsa-sink.h" + #include "alsa-source.h" ++#include "alsa-jack-inputdev.h" + #include "module-alsa-card-symdef.h" + + PA_MODULE_AUTHOR("Lennart Poettering"); +@@ -106,12 +107,51 @@ struct userdata { + pa_modargs *modargs; + + pa_alsa_profile_set *profile_set; ++ ++ pa_idxset *jack_inputdevs; + }; + + struct profile_data { + pa_alsa_profile *profile; + }; + ++static void add_ports_from_mapping(struct userdata *u, pa_hashmap *dest, pa_alsa_mapping *m, int direction) { ++ pa_device_port *port; ++ pa_hashmap *ports = NULL; ++ pa_alsa_path_set *mixer_path_set = NULL; ++ snd_mixer_t *mixer_handle = NULL; ++ void *state; ++ ++ /* FIXME: check ignoredb, control modargs, check mixer by name */ ++ ++ if (!(mixer_handle = pa_alsa_open_mixer_by_index(snd_card_get_index(u->device_id)))) ++ goto cleanup; ++ if (!(mixer_path_set = pa_alsa_path_set_new(m, direction))) ++ goto cleanup; ++ pa_alsa_path_set_probe(mixer_path_set, mixer_handle, 0); ++ pa_log_debug("Probed mixer paths in add_ports_from_mapping:"); ++ pa_alsa_path_set_dump(mixer_path_set); ++ ++ pa_alsa_add_ports(&ports, mixer_path_set); ++ if (ports) ++ PA_HASHMAP_FOREACH(port, ports, state) ++ if (pa_hashmap_get(dest, port->name) == NULL) { ++ pa_hashmap_put(dest, port->name, pa_device_port_ref(port)); ++ pa_log_debug("Ref port %s, refcnt (after) = %d", port->name, pa_device_port_refcnt(port)); ++ ++ } ++ ++cleanup: ++ if (ports) ++ pa_device_port_hashmap_free(ports); ++ /* FIXME: Some paths are now referenced in the port data. Free only those who are not...? */ ++ /* if (mixer_path_set) ++ pa_alsa_path_set_free(mixer_path_set); */ ++ if (mixer_handle) ++ snd_mixer_close(mixer_handle); ++ ++} ++ + static void add_profiles(struct userdata *u, pa_hashmap *h) { + pa_alsa_profile *ap; + void *state; +@@ -130,18 +170,23 @@ static void add_profiles(struct userdata *u, pa_hashmap *h) { + + if (ap->output_mappings) { + cp->n_sinks = pa_idxset_size(ap->output_mappings); ++ cp->sink_ports = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func); + +- PA_IDXSET_FOREACH(m, ap->output_mappings, idx) ++ PA_IDXSET_FOREACH(m, ap->output_mappings, idx) { ++ add_ports_from_mapping(u, cp->sink_ports, m, PA_ALSA_DIRECTION_OUTPUT); + if (m->channel_map.channels > cp->max_sink_channels) + cp->max_sink_channels = m->channel_map.channels; ++ } + } + + if (ap->input_mappings) { + cp->n_sources = pa_idxset_size(ap->input_mappings); +- +- PA_IDXSET_FOREACH(m, ap->input_mappings, idx) ++ cp->source_ports = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func); ++ PA_IDXSET_FOREACH(m, ap->input_mappings, idx) { ++ add_ports_from_mapping(u, cp->source_ports, m, PA_ALSA_DIRECTION_INPUT); + if (m->channel_map.channels > cp->max_source_channels) + cp->max_source_channels = m->channel_map.channels; ++ } + } + + d = PA_CARD_PROFILE_DATA(cp); +@@ -387,6 +432,8 @@ int pa__init(pa_module *m) { + goto fail; + } + ++ u->jack_inputdevs = pa_alsa_jack_inputdevs_init(u->core, data.profiles, alsa_card_index); ++ + u->card = pa_card_new(m->core, &data); + pa_card_new_data_done(&data); + +@@ -448,6 +495,9 @@ void pa__done(pa_module*m) { + if (!(u = m->userdata)) + goto finish; + ++ if (u->jack_inputdevs) ++ pa_alsa_jack_inputdevs_free(u->jack_inputdevs); ++ + if (u->card && u->card->sinks) { + pa_sink *s; + +diff --git a/src/modules/module-switch-on-connect.c b/src/modules/module-switch-on-connect.c +index b121fd9..3ee38b8 100644 +--- a/src/modules/module-switch-on-connect.c ++++ b/src/modules/module-switch-on-connect.c +@@ -32,6 +32,9 @@ + #include + #include + #include ++#include ++#include ++#include + #include + + #include "module-switch-on-connect-symdef.h" +@@ -48,9 +51,138 @@ static const char* const valid_modargs[] = { + struct userdata { + pa_hook_slot + *sink_put_slot, +- *source_put_slot; ++ *source_put_slot, ++ *ports_put_slot; + }; + ++static void find_port(pa_core *core, pa_device_port *port, pa_card**card, ++ pa_card_profile**profile, pa_sink**sink, pa_source**source) { ++ ++ void *state2, *state4; ++ uint32_t state, state3; ++ pa_card*c; ++ pa_card_profile*pr; ++ pa_sink*si; ++ pa_source*so; ++ ++ *sink = NULL; ++ *source = NULL; ++ ++ PA_IDXSET_FOREACH(c, core->cards, state) { ++ if (!c->profiles) { ++ pa_log_debug("card %s has no profiles?", pa_strnull(c->name)); ++ continue; ++ } ++ PA_HASHMAP_FOREACH(pr, c->profiles, state2) { ++ pa_bool_t found = FALSE; ++ pa_device_port* dp; ++ pa_log_debug("searching card %s profile %s", pa_strnull(c->name), pa_strnull(pr->name)); ++ /* pa_log_debug("sinkports %s", pr->sink_ports ? "yes" : "no"); */ ++ pa_log_debug("looking for port %p, %s", port, port->name); ++ ++ if (pr->sink_ports) ++ PA_HASHMAP_FOREACH(dp, pr->sink_ports, state4) { ++ /* pa_log_debug("checking port %p, %s", dp, dp->name); */ ++ if (dp == port) found = TRUE; ++ } ++ ++ if (found) { ++ PA_IDXSET_FOREACH(si, c->sinks, state3) { ++ if (!si->ports) ++ continue; ++ PA_HASHMAP_FOREACH(dp, si->ports, state4) ++ /* pa_log_debug("checking sink %p, port %p %s", si, dp, dp->name); */ ++ if (strcmp(dp->name, port->name) == 0) { ++ *sink = si; ++ pa_log_debug("found sink %p, %s", si, si->name); ++ } ++ } ++ *card = c; ++ *profile = pr; ++ return; ++ } ++ ++ if (pr->source_ports) ++ PA_HASHMAP_FOREACH(dp, pr->source_ports, state4) { ++ if (dp == port) found = TRUE; ++ } ++ ++ if (found) { ++ pa_assert(c->sources); ++ PA_IDXSET_FOREACH(so, c->sources, state3) { ++ if (!so->ports) ++ continue; ++ PA_HASHMAP_FOREACH(dp, so->ports, state4) ++ if (strcmp(dp->name, port->name) == 0) { ++ *source = so; ++ pa_log_debug("found source %p, %s", so, so->name); ++ } ++ } ++ *card = c; ++ *profile = pr; ++ return; ++ } ++ } ++ } ++ pa_log_warn("ehhh...port does not belong anywhere"); ++ *card = NULL; ++ *profile = NULL; ++} ++ ++static pa_device_port* find_best_port(pa_hashmap *ports) { ++ void *state; ++ pa_device_port* port, *result = NULL; ++ unsigned prio = 0; ++ ++ PA_HASHMAP_FOREACH(port, ports, state) { ++ if (result == NULL || (port->available != PA_PORT_AVAILABLE_NO && port->priority > prio)) { ++ result = port; ++ prio = port->priority; ++ } ++ } ++ pa_assert(result != NULL); ++ return result; ++} ++ ++static pa_hook_result_t ports_available_put_hook_callback(pa_core *c, pa_hashmap *ports, void* userdata) { ++ void* state; ++ pa_device_port* port; ++ pa_card* card; ++ pa_card_profile* profile; ++ pa_sink* sink; ++ pa_source* source; ++ ++ pa_log_debug("ports_available_put_hook_callback"); ++ ++ PA_HASHMAP_FOREACH(port, ports, state) { ++ pa_log_debug("finding port %s", port->name); ++ find_port(c, port, &card, &profile, &sink, &source); ++ if (!card) ++ continue; ++ if (card->active_profile != profile) { ++ pa_log_debug("not active profile - skipping for now"); ++ continue; ++ } ++ if (port->available == PA_PORT_AVAILABLE_YES) { ++ if (sink && sink->active_port != port) ++ pa_sink_set_port(sink, port->name, FALSE); ++ if (source && source->active_port != port) ++ pa_source_set_port(source, port->name, FALSE); ++ } ++ ++ if (port->available == PA_PORT_AVAILABLE_NO) { ++ if (sink && sink->active_port && !strcmp(sink->active_port->name, port->name)) ++ pa_sink_set_port(sink, find_best_port(sink->ports)->name, FALSE); ++ if (source && source->active_port && !strcmp(source->active_port->name, port->name)) ++ pa_source_set_port(source, find_best_port(source->ports)->name, FALSE); ++ } ++ ++ } ++ ++ return PA_HOOK_OK; ++} ++ ++ + static pa_hook_result_t sink_put_hook_callback(pa_core *c, pa_sink *sink, void* userdata) { + pa_sink_input *i; + uint32_t idx; +@@ -165,6 +297,8 @@ int pa__init(pa_module*m) { + /* A little bit later than module-rescue-streams... */ + u->sink_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_PUT], PA_HOOK_LATE+30, (pa_hook_cb_t) sink_put_hook_callback, u); + u->source_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_PUT], PA_HOOK_LATE+20, (pa_hook_cb_t) source_put_hook_callback, u); ++ u->ports_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_PORTS_AVAILABLE_CHANGED], PA_HOOK_LATE+20, (pa_hook_cb_t) ports_available_put_hook_callback, u); ++ + + pa_modargs_free(ma); + return 0; +@@ -178,6 +312,8 @@ void pa__done(pa_module*m) { + if (!(u = m->userdata)) + return; + ++ if (u->ports_put_slot) ++ pa_hook_slot_free(u->ports_put_slot); + if (u->sink_put_slot) + pa_hook_slot_free(u->sink_put_slot); + if (u->source_put_slot) +diff --git a/src/pulsecore/card.c b/src/pulsecore/card.c +index feaa444..c760f70 100644 +--- a/src/pulsecore/card.c ++++ b/src/pulsecore/card.c +@@ -49,6 +49,8 @@ pa_card_profile *pa_card_profile_new(const char *name, const char *description, + c->priority = 0; + c->n_sinks = c->n_sources = 0; + c->max_sink_channels = c->max_source_channels = 0; ++ c->sink_ports = NULL; ++ c->source_ports = NULL; + + return c; + } +@@ -56,6 +58,8 @@ pa_card_profile *pa_card_profile_new(const char *name, const char *description, + void pa_card_profile_free(pa_card_profile *c) { + pa_assert(c); + ++ pa_device_port_hashmap_free(c->sink_ports); ++ pa_device_port_hashmap_free(c->source_ports); + pa_xfree(c->name); + pa_xfree(c->description); + pa_xfree(c); +diff --git a/src/pulsecore/card.h b/src/pulsecore/card.h +index 2d691b6..a50a6c1 100644 +--- a/src/pulsecore/card.h ++++ b/src/pulsecore/card.h +@@ -28,6 +28,7 @@ typedef struct pa_card pa_card; + #include + #include + #include ++#include + + typedef struct pa_card_profile { + char *name; +@@ -42,6 +43,9 @@ typedef struct pa_card_profile { + unsigned max_sink_channels; + unsigned max_source_channels; + ++ pa_hashmap *sink_ports; ++ pa_hashmap *source_ports; ++ + /* .. followed by some implementation specific data */ + } pa_card_profile; + +diff --git a/src/pulsecore/core.h b/src/pulsecore/core.h +index 61c8690..a75a47b 100644 +--- a/src/pulsecore/core.h ++++ b/src/pulsecore/core.h +@@ -113,6 +113,7 @@ typedef enum pa_core_hook { + PA_CORE_HOOK_CARD_PUT, + PA_CORE_HOOK_CARD_UNLINK, + PA_CORE_HOOK_CARD_PROFILE_CHANGED, ++ PA_CORE_HOOK_PORTS_AVAILABLE_CHANGED, + PA_CORE_HOOK_MAX + } pa_core_hook_t; + +diff --git a/src/pulsecore/device-port.c b/src/pulsecore/device-port.c +index 9e6ad43..b3f6f84 100644 +--- a/src/pulsecore/device-port.c ++++ b/src/pulsecore/device-port.c +@@ -62,3 +62,12 @@ void pa_device_port_hashmap_free(pa_hashmap *h) { + pa_hashmap_free(h, NULL, NULL); + } + } ++ ++void pa_device_port_set_available(pa_device_port *p, pa_port_available_t status) { ++ if (p->available == status) ++ return; ++ pa_assert(status != PA_PORT_AVAILABLE_UNKNOWN); ++ p->available = status; ++ pa_log_debug("Setting port %s to status %s", p->name, status == PA_PORT_AVAILABLE_YES ? "yes" : "no"); ++ /* FIXME: Now fire a hook or something? */ ++} +diff --git a/src/pulsecore/device-port.h b/src/pulsecore/device-port.h +index 23f6444..4c15268 100644 +--- a/src/pulsecore/device-port.h ++++ b/src/pulsecore/device-port.h +@@ -55,6 +55,8 @@ PA_DECLARE_PUBLIC_CLASS(pa_device_port); + + pa_device_port *pa_device_port_new(const char *name, const char *description, size_t extra); + ++void pa_device_port_set_available(pa_device_port *p, pa_port_available_t status); ++ + void pa_device_port_hashmap_free(pa_hashmap *h); + + #endif +-- +1.7.5.4 + --- pulseaudio-0.99.1.orig/debian/patches/0014-alsa-mixer-Add-separate-profile-for-Nvidia.patch +++ pulseaudio-0.99.1/debian/patches/0014-alsa-mixer-Add-separate-profile-for-Nvidia.patch @@ -0,0 +1,229 @@ +From 8438e14d1101f195e4c1a5dff41fdbacbc9366df Mon Sep 17 00:00:00 2001 +From: David Henningsson +Date: Tue, 8 Mar 2011 10:51:33 +0100 +Subject: [PATCH] alsa-mixer: Add separate profile for Nvidia + +This is a profile for all Nvidia cards - some Nvidia cards have four HDMI codecs, +and which ones are working seems to vary a lot between GPU boards. In addition, +Nvidia makes southbridges as well, so we need to keep the existing analog profiles. +(And by not adding all these extra profiles to default.conf, we make sure +there is no performance hit for non-Nvidia cards.) + +Once we have proper jack detection, there would probably be room for improvement here. + +Signed-off-by: David Henningsson +--- + src/Makefile.am | 1 + + .../alsa/mixer/profile-sets/90-pulseaudio.rules | 1 + + src/modules/alsa/mixer/profile-sets/nvidia.conf | 160 ++++++++++++++++++++ + 3 files changed, 162 insertions(+), 0 deletions(-) + create mode 100644 src/modules/alsa/mixer/profile-sets/nvidia.conf + +Index: pulseaudio-0.99.1/src/Makefile.am +=================================================================== +--- pulseaudio-0.99.1.orig/src/Makefile.am 2011-07-20 23:23:11.000000000 +0200 ++++ pulseaudio-0.99.1/src/Makefile.am 2011-08-03 12:17:46.971234645 +0200 +@@ -1063,6 +1063,7 @@ + + dist_alsaprofilesets_DATA = \ + modules/alsa/mixer/profile-sets/default.conf \ ++ modules/alsa/mixer/profile-sets/nvidia.conf \ + modules/alsa/mixer/profile-sets/maudio-fasttrack-pro.conf \ + modules/alsa/mixer/profile-sets/native-instruments-audio4dj.conf \ + modules/alsa/mixer/profile-sets/native-instruments-audio8dj.conf \ +Index: pulseaudio-0.99.1/src/modules/alsa/mixer/profile-sets/90-pulseaudio.rules +=================================================================== +--- pulseaudio-0.99.1.orig/src/modules/alsa/mixer/profile-sets/90-pulseaudio.rules 2011-07-20 23:23:11.000000000 +0200 ++++ pulseaudio-0.99.1/src/modules/alsa/mixer/profile-sets/90-pulseaudio.rules 2011-08-03 12:17:46.971234645 +0200 +@@ -27,5 +27,6 @@ + SUBSYSTEMS=="usb", ATTRS{idVendor}=="17cc", ATTRS{idProduct}=="1011", ENV{PULSE_PROFILE_SET}="native-instruments-traktor-audio6.conf" + SUBSYSTEMS=="usb", ATTRS{idVendor}=="17cc", ATTRS{idProduct}=="1021", ENV{PULSE_PROFILE_SET}="native-instruments-traktor-audio10.conf" + SUBSYSTEMS=="usb", ATTRS{idVendor}=="0763", ATTRS{idProduct}=="2012", ENV{PULSE_PROFILE_SET}="maudio-fasttrack-pro.conf" ++ATTRS{vendor}=="0x10de", ENV{PULSE_PROFILE_SET}="nvidia.conf" + + LABEL="pulseaudio_end" +Index: pulseaudio-0.99.1/src/modules/alsa/mixer/profile-sets/nvidia.conf +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ pulseaudio-0.99.1/src/modules/alsa/mixer/profile-sets/nvidia.conf 2011-08-03 12:17:46.971234645 +0200 +@@ -0,0 +1,160 @@ ++# This file is part of PulseAudio. ++# ++# PulseAudio is free software; you can redistribute it and/or modify ++# it under the terms of the GNU Lesser General Public License as ++# published by the Free Software Foundation; either version 2.1 of the ++# License, or (at your option) any later version. ++# ++# PulseAudio is distributed in the hope that it will be useful, but ++# WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# General Public License for more details. ++# ++# You should have received a copy of the GNU Lesser General Public License ++# along with PulseAudio; if not, write to the Free Software Foundation, ++# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. ++ ++; This is a profile for all Nvidia cards - some Nvidia cards have four HDMI codecs, ++; and which ones are working seems to vary a lot between GPU boards. In addition, ++; Nvidia makes southbridges as well, so we need to keep the existing analog profiles. ++; (And by not adding all these extra profiles to default.conf, we make sure ++; there is no performance hit for non-Nvidia cards.) ++ ++; Once we have proper jack detection, there would probably be room for improvement here. ++ ++[General] ++auto-profiles = yes ++ ++[Mapping analog-mono] ++device-strings = hw:%f ++channel-map = mono ++paths-output = analog-output analog-output-speaker analog-output-desktop-speaker analog-output-headphones analog-output-headphones-2 analog-output-mono analog-output-lfe-on-mono ++paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line ++priority = 1 ++ ++[Mapping analog-stereo] ++device-strings = front:%f hw:%f ++channel-map = left,right ++paths-output = analog-output analog-output-speaker analog-output-desktop-speaker analog-output-headphones analog-output-headphones-2 analog-output-mono analog-output-lfe-on-mono ++paths-input = analog-input-front-mic analog-input-rear-mic analog-input-internal-mic analog-input-dock-mic analog-input analog-input-mic analog-input-linein analog-input-aux analog-input-video analog-input-tvtuner analog-input-fm analog-input-mic-line ++priority = 10 ++ ++[Mapping analog-surround-40] ++device-strings = surround40:%f ++channel-map = front-left,front-right,rear-left,rear-right ++paths-output = analog-output analog-output-speaker analog-output-desktop-speaker analog-output-lfe-on-mono ++priority = 7 ++direction = output ++ ++[Mapping analog-surround-41] ++device-strings = surround41:%f ++channel-map = front-left,front-right,rear-left,rear-right,lfe ++paths-output = analog-output analog-output-speaker analog-output-desktop-speaker analog-output-lfe-on-mono ++priority = 8 ++direction = output ++ ++[Mapping analog-surround-50] ++device-strings = surround50:%f ++channel-map = front-left,front-right,rear-left,rear-right,front-center ++paths-output = analog-output analog-output-speaker analog-output-desktop-speaker analog-output-lfe-on-mono ++priority = 7 ++direction = output ++ ++[Mapping analog-surround-51] ++device-strings = surround51:%f ++channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe ++paths-output = analog-output analog-output-speaker analog-output-desktop-speaker analog-output-lfe-on-mono ++priority = 8 ++direction = output ++ ++[Mapping analog-surround-71] ++device-strings = surround71:%f ++channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe,side-left,side-right ++description = Analog Surround 7.1 ++paths-output = analog-output analog-output-speaker analog-output-desktop-speaker analog-output-lfe-on-mono ++priority = 7 ++direction = output ++ ++[Mapping iec958-stereo] ++device-strings = iec958:%f ++channel-map = left,right ++priority = 5 ++ ++[Mapping iec958-surround-40] ++device-strings = iec958:%f ++channel-map = front-left,front-right,rear-left,rear-right ++priority = 1 ++ ++[Mapping iec958-ac3-surround-40] ++device-strings = a52:%f ++channel-map = front-left,front-right,rear-left,rear-right ++priority = 2 ++direction = output ++ ++[Mapping iec958-ac3-surround-51] ++device-strings = a52:%f ++channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe ++priority = 3 ++direction = output ++ ++[Mapping hdmi-stereo] ++device-strings = hdmi:%f ++channel-map = left,right ++priority = 4 ++direction = output ++ ++[Mapping hdmi-surround] ++description = Digital Surround 5.1 (HDMI) ++device-strings = hdmi:%f ++channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe ++priority = 3 ++direction = output ++ ++[Mapping hdmi-stereo-extra1] ++description = Digital Stereo (HDMI) nr 2 ++device-strings = hdmi:%f,1 ++channel-map = left,right ++priority = 2 ++direction = output ++ ++[Mapping hdmi-surround-extra1] ++description = Digital Surround 5.1 (HDMI) nr 2 ++device-strings = hdmi:%f,1 ++channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe ++priority = 1 ++direction = output ++ ++[Mapping hdmi-stereo-extra2] ++description = Digital Stereo (HDMI) nr 3 ++device-strings = hdmi:%f,2 ++channel-map = left,right ++priority = 2 ++direction = output ++ ++[Mapping hdmi-surround-extra2] ++description = Digital Surround 5.1 (HDMI) nr 3 ++device-strings = hdmi:%f,2 ++channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe ++priority = 1 ++direction = output ++ ++[Mapping hdmi-stereo-extra3] ++description = Digital Stereo (HDMI) nr 4 ++device-strings = hdmi:%f,3 ++channel-map = left,right ++priority = 2 ++direction = output ++ ++[Mapping hdmi-surround-extra3] ++description = Digital Surround 5.1 (HDMI) nr 4 ++device-strings = hdmi:%f,3 ++channel-map = front-left,front-right,rear-left,rear-right,front-center,lfe ++priority = 1 ++direction = output ++ ++ ++; An example for defining multiple-sink profiles ++#[Profile output:analog-stereo+output:iec958-stereo+input:analog-stereo] ++#description = Foobar ++#output-mappings = analog-stereo iec958-stereo ++#input-mappings = analog-stereo +Index: pulseaudio-0.99.1/src/Makefile.in +=================================================================== +--- pulseaudio-0.99.1.orig/src/Makefile.in 2011-08-02 17:20:54.000000000 +0200 ++++ pulseaudio-0.99.1/src/Makefile.in 2011-08-03 12:19:25.091234524 +0200 +@@ -2465,6 +2465,7 @@ + modules/alsa/mixer/paths/iec958-stereo-output.conf + am__dist_alsaprofilesets_DATA_DIST = \ + modules/alsa/mixer/profile-sets/default.conf \ ++ modules/alsa/mixer/profile-sets/nvidia.conf \ + modules/alsa/mixer/profile-sets/maudio-fasttrack-pro.conf \ + modules/alsa/mixer/profile-sets/native-instruments-audio4dj.conf \ + modules/alsa/mixer/profile-sets/native-instruments-audio8dj.conf \ +@@ -3322,6 +3323,7 @@ + libavahi_wrap_la_LIBADD = $(AM_LIBADD) $(AVAHI_CFLAGS) libpulsecore-@PA_MAJORMINOR@.la libpulsecommon-@PA_MAJORMINOR@.la libpulse.la + @HAVE_ALSA_TRUE@dist_alsaprofilesets_DATA = \ + @HAVE_ALSA_TRUE@ modules/alsa/mixer/profile-sets/default.conf \ ++@HAVE_ALSA_TRUE@ modules/alsa/mixer/profile-sets/nvidia.conf \ + @HAVE_ALSA_TRUE@ modules/alsa/mixer/profile-sets/maudio-fasttrack-pro.conf \ + @HAVE_ALSA_TRUE@ modules/alsa/mixer/profile-sets/native-instruments-audio4dj.conf \ + @HAVE_ALSA_TRUE@ modules/alsa/mixer/profile-sets/native-instruments-audio8dj.conf \ --- pulseaudio-0.99.1.orig/debian/patches/0008-delay-gnome-autostart.patch +++ pulseaudio-0.99.1/debian/patches/0008-delay-gnome-autostart.patch @@ -0,0 +1,10 @@ +Description: Delay applet startup by some seconds, so that pulseaudio has started up enough to avoid starting it a second time through autospawn. +Index: pulseaudio/src/daemon/pulseaudio.desktop.in +=================================================================== +--- pulseaudio.orig/src/daemon/pulseaudio.desktop.in 2010-02-01 18:10:40.000000000 -0800 ++++ pulseaudio/src/daemon/pulseaudio.desktop.in 2010-02-01 18:10:48.000000000 -0800 +@@ -8,3 +8,4 @@ + Type=Application + Categories= + GenericName= ++X-GNOME-Autostart-Delay=8 --- pulseaudio-0.99.1.orig/debian/patches/0016-nodisplay-autostart.patch +++ pulseaudio-0.99.1/debian/patches/0016-nodisplay-autostart.patch @@ -0,0 +1,14 @@ +Description: Clean up Startup Applications dialog by hiding default apps +Author: Michael Terry +Bug-Ubuntu: https://launchpad.net/bugs/803917 +Forwarded: not-needed + +Index: pulseaudio/src/daemon/pulseaudio.desktop.in +=================================================================== +--- pulseaudio.orig/src/daemon/pulseaudio.desktop.in 2011-07-01 12:54:23.961825964 +0100 ++++ pulseaudio/src/daemon/pulseaudio.desktop.in 2011-07-01 12:54:53.437826276 +0100 +@@ -10,3 +10,4 @@ + Categories= + GenericName= + X-GNOME-Autostart-Delay=8 ++NoDisplay=true --- pulseaudio-0.99.1.orig/debian/patches/0011-lp451635-handle-dove-x0-line-hp-swap.patch +++ pulseaudio-0.99.1/debian/patches/0011-lp451635-handle-dove-x0-line-hp-swap.patch @@ -0,0 +1,28 @@ +Index: pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/modules/alsa/mixer/paths/analog-output-headphones.conf +=================================================================== +--- pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478.orig/src/modules/alsa/mixer/paths/analog-output-headphones.conf 2010-03-26 12:51:15.000000000 -0700 ++++ pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/modules/alsa/mixer/paths/analog-output-headphones.conf 2010-03-26 13:22:26.000000000 -0700 +@@ -51,6 +51,9 @@ + override-map.1 = all + override-map.2 = all-left,all-right + ++[Element Line HP Swap] ++switch = on ++ + ; This profile path is intended to control the first headphones, not + ; the second headphones. But it should not hurt if we leave the second + ; headphone jack enabled nonetheless. +Index: pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/modules/alsa/mixer/paths/analog-output.conf +=================================================================== +--- pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478.orig/src/modules/alsa/mixer/paths/analog-output.conf 2010-03-26 12:51:15.000000000 -0700 ++++ pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/modules/alsa/mixer/paths/analog-output.conf 2010-03-26 14:08:57.000000000 -0700 +@@ -44,6 +44,9 @@ + switch = off + volume = off + ++[Element Line HP Swap] ++switch = off ++ + ; This profile path is intended to control the default output, not the + ; headphones. But it should not hurt if we leave the headphone jack + ; enabled nonetheless. --- pulseaudio-0.99.1.orig/debian/patches/0603-Turn-device-ports-into-reference-counted-objects.patch +++ pulseaudio-0.99.1/debian/patches/0603-Turn-device-ports-into-reference-counted-objects.patch @@ -0,0 +1,331 @@ +From 54d6dad178ba27ddc4e41f385c43d680ae343af2 Mon Sep 17 00:00:00 2001 +From: David Henningsson +Date: Thu, 7 Jul 2011 11:19:36 +0200 +Subject: [PATCH 603/603] Turn device-ports into reference counted objects + +Signed-off-by: David Henningsson +--- + src/Makefile.am | 1 + + src/pulsecore/device-port.c | 64 +++++++++++++++++++++++++++++++++++++++++++ + src/pulsecore/device-port.h | 60 ++++++++++++++++++++++++++++++++++++++++ + src/pulsecore/sink.c | 41 +-------------------------- + src/pulsecore/sink.h | 17 +----------- + src/pulsecore/source.c | 20 +------------ + src/pulsecore/source.h | 1 + + 7 files changed, 131 insertions(+), 73 deletions(-) + create mode 100644 src/pulsecore/device-port.c + create mode 100644 src/pulsecore/device-port.h + +diff --git a/src/Makefile.am b/src/Makefile.am +index ebf5ebc..769a24d 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -809,6 +809,7 @@ libpulsecore_@PA_MAJORMINOR@_la_SOURCES = \ + pulsecore/shm.c pulsecore/shm.h \ + pulsecore/sink-input.c pulsecore/sink-input.h \ + pulsecore/sink.c pulsecore/sink.h \ ++ pulsecore/device-port.c pulsecore/device-port.h \ + pulsecore/sioman.c pulsecore/sioman.h \ + pulsecore/sound-file-stream.c pulsecore/sound-file-stream.h \ + pulsecore/sound-file.c pulsecore/sound-file.h \ +diff --git a/src/pulsecore/device-port.c b/src/pulsecore/device-port.c +new file mode 100644 +index 0000000..9e6ad43 +--- /dev/null ++++ b/src/pulsecore/device-port.c +@@ -0,0 +1,64 @@ ++/*** ++ This file is part of PulseAudio. ++ ++ Copyright 2004-2006 Lennart Poettering ++ Copyright 2006 Pierre Ossman for Cendio AB ++ ++ PulseAudio is free software; you can redistribute it and/or modify ++ it under the terms of the GNU Lesser General Public License as published ++ by the Free Software Foundation; either version 2.1 of the License, ++ or (at your option) any later version. ++ ++ PulseAudio is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public License ++ along with PulseAudio; if not, write to the Free Software ++ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 ++ USA. ++***/ ++ ++ ++#include "device-port.h" ++ ++PA_DEFINE_PUBLIC_CLASS(pa_device_port, pa_object); ++ ++static void device_port_free(pa_object *o) { ++ pa_device_port *p = PA_DEVICE_PORT(o); ++ pa_assert(p); ++ pa_assert(pa_device_port_refcnt(p) == 0); ++ ++ pa_xfree(p->name); ++ pa_xfree(p->description); ++ pa_xfree(p); ++} ++ ++ ++pa_device_port *pa_device_port_new(const char *name, const char *description, size_t extra) { ++ pa_device_port *p; ++ ++ pa_assert(name); ++ ++ p = PA_DEVICE_PORT(pa_object_new_internal(PA_ALIGN(sizeof(pa_device_port)) + extra, pa_device_port_type_id, pa_device_port_check_type)); ++ p->parent.free = device_port_free; ++ ++ p->name = pa_xstrdup(name); ++ p->description = pa_xstrdup(description); ++ p->priority = 0; ++ p->available = PA_PORT_AVAILABLE_UNKNOWN; ++ ++ return p; ++} ++ ++void pa_device_port_hashmap_free(pa_hashmap *h) { ++ if (h) { ++ pa_device_port *p; ++ ++ while ((p = pa_hashmap_steal_first(h))) ++ pa_device_port_unref(p); ++ ++ pa_hashmap_free(h, NULL, NULL); ++ } ++} +diff --git a/src/pulsecore/device-port.h b/src/pulsecore/device-port.h +new file mode 100644 +index 0000000..23f6444 +--- /dev/null ++++ b/src/pulsecore/device-port.h +@@ -0,0 +1,60 @@ ++#ifndef foopulsedeviceporthfoo ++#define foopulsedeviceporthfoo ++ ++/*** ++ This file is part of PulseAudio. ++ ++ Copyright 2004-2006 Lennart Poettering ++ Copyright 2006 Pierre Ossman for Cendio AB ++ ++ PulseAudio is free software; you can redistribute it and/or modify ++ it under the terms of the GNU Lesser General Public License as published ++ by the Free Software Foundation; either version 2.1 of the License, ++ or (at your option) any later version. ++ ++ PulseAudio is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public License ++ along with PulseAudio; if not, write to the Free Software ++ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 ++ USA. ++***/ ++ ++ ++#ifdef HAVE_CONFIG_H ++#include ++#endif ++ ++#include ++ ++#include ++#include ++#include ++ ++typedef struct pa_device_port pa_device_port; ++ ++struct pa_device_port { ++ pa_object parent; /* Needed for reference counting */ ++ ++ char *name; ++ char *description; ++ ++ unsigned priority; ++ pa_port_available_t available; /**< PA_PORT_AVAILABLE_UNKNOWN, PA_PORT_AVAILABLE_NO or PA_PORT_AVAILABLE_YES \since MERGE_OF_JACK_DETECTION */ ++ ++ /* .. followed by some implementation specific data */ ++}; ++ ++PA_DECLARE_PUBLIC_CLASS(pa_device_port); ++#define PA_DEVICE_PORT(s) (pa_device_port_cast(s)) ++ ++#define PA_DEVICE_PORT_DATA(d) ((void*) ((uint8_t*) d + PA_ALIGN(sizeof(pa_device_port)))) ++ ++pa_device_port *pa_device_port_new(const char *name, const char *description, size_t extra); ++ ++void pa_device_port_hashmap_free(pa_hashmap *h); ++ ++#endif +diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c +index 77c665f..33b70f3 100644 +--- a/src/pulsecore/sink.c ++++ b/src/pulsecore/sink.c +@@ -131,40 +131,11 @@ void pa_sink_new_data_done(pa_sink_new_data *data) { + + pa_proplist_free(data->proplist); + +- if (data->ports) { +- pa_device_port *p; +- +- while ((p = pa_hashmap_steal_first(data->ports))) +- pa_device_port_free(p); +- +- pa_hashmap_free(data->ports, NULL, NULL); +- } +- ++ pa_device_port_hashmap_free(data->ports); + pa_xfree(data->name); + pa_xfree(data->active_port); + } + +-pa_device_port *pa_device_port_new(const char *name, const char *description, size_t extra) { +- pa_device_port *p; +- +- pa_assert(name); +- +- p = pa_xmalloc(PA_ALIGN(sizeof(pa_device_port)) + extra); +- p->name = pa_xstrdup(name); +- p->description = pa_xstrdup(description); +- +- p->priority = 0; +- +- return p; +-} +- +-void pa_device_port_free(pa_device_port *p) { +- pa_assert(p); +- +- pa_xfree(p->name); +- pa_xfree(p->description); +- pa_xfree(p); +-} + + /* Called from main context */ + static void reset_callbacks(pa_sink *s) { +@@ -740,15 +711,7 @@ static void sink_free(pa_object *o) { + if (s->proplist) + pa_proplist_free(s->proplist); + +- if (s->ports) { +- pa_device_port *p; +- +- while ((p = pa_hashmap_steal_first(s->ports))) +- pa_device_port_free(p); +- +- pa_hashmap_free(s->ports, NULL, NULL); +- } +- ++ pa_device_port_hashmap_free(s->ports); + pa_xfree(s); + } + +diff --git a/src/pulsecore/sink.h b/src/pulsecore/sink.h +index 6c6ffdb..3aef698 100644 +--- a/src/pulsecore/sink.h ++++ b/src/pulsecore/sink.h +@@ -24,7 +24,6 @@ + ***/ + + typedef struct pa_sink pa_sink; +-typedef struct pa_device_port pa_device_port; + typedef struct pa_sink_volume_change pa_sink_volume_change; + + #include +@@ -42,6 +41,7 @@ typedef struct pa_sink_volume_change pa_sink_volume_change; + #include + #include + #include ++#include + #include + #include + #include +@@ -54,18 +54,6 @@ static inline pa_bool_t PA_SINK_IS_LINKED(pa_sink_state_t x) { + return x == PA_SINK_RUNNING || x == PA_SINK_IDLE || x == PA_SINK_SUSPENDED; + } + +-struct pa_device_port { +- char *name; +- char *description; +- +- unsigned priority; +- pa_port_available_t available; /**< PA_PORT_AVAILABLE_UNKNOWN, PA_PORT_AVAILABLE_NO or PA_PORT_AVAILABLE_YES \since MERGE_OF_JACK_DETECTION */ +- +- /* .. followed by some implementation specific data */ +-}; +- +-#define PA_DEVICE_PORT_DATA(d) ((void*) ((uint8_t*) d + PA_ALIGN(sizeof(pa_device_port)))) +- + /* A generic definition for void callback functions */ + typedef void(*pa_sink_cb_t)(pa_sink *s); + +@@ -471,9 +459,6 @@ void pa_sink_invalidate_requested_latency(pa_sink *s, pa_bool_t dynamic); + + pa_usec_t pa_sink_get_latency_within_thread(pa_sink *s); + +-pa_device_port *pa_device_port_new(const char *name, const char *description, size_t extra); +-void pa_device_port_free(pa_device_port *p); +- + /* Verify that we called in IO context (aka 'thread context), or that + * the sink is not yet set up, i.e. the thread not set up yet. See + * pa_assert_io_context() in thread-mq.h for more information. */ +diff --git a/src/pulsecore/source.c b/src/pulsecore/source.c +index 9764a88..11c4f9d 100644 +--- a/src/pulsecore/source.c ++++ b/src/pulsecore/source.c +@@ -123,15 +123,7 @@ void pa_source_new_data_done(pa_source_new_data *data) { + + pa_proplist_free(data->proplist); + +- if (data->ports) { +- pa_device_port *p; +- +- while ((p = pa_hashmap_steal_first(data->ports))) +- pa_device_port_free(p); +- +- pa_hashmap_free(data->ports, NULL, NULL); +- } +- ++ pa_device_port_hashmap_free(data->ports); + pa_xfree(data->name); + pa_xfree(data->active_port); + } +@@ -651,15 +643,7 @@ static void source_free(pa_object *o) { + if (s->proplist) + pa_proplist_free(s->proplist); + +- if (s->ports) { +- pa_device_port *p; +- +- while ((p = pa_hashmap_steal_first(s->ports))) +- pa_device_port_free(p); +- +- pa_hashmap_free(s->ports, NULL, NULL); +- } +- ++ pa_device_port_hashmap_free(s->ports); + pa_xfree(s); + } + +diff --git a/src/pulsecore/source.h b/src/pulsecore/source.h +index 13d279d..0fcc7bb 100644 +--- a/src/pulsecore/source.h ++++ b/src/pulsecore/source.h +@@ -42,6 +42,7 @@ typedef struct pa_source_volume_change pa_source_volume_change; + #include + #include + #include ++#include + #include + #include + #include +-- +1.7.5.4 + --- pulseaudio-0.99.1.orig/debian/patches/0004-mute-iec958-optical-raw-for-audigyX.patch +++ pulseaudio-0.99.1/debian/patches/0004-mute-iec958-optical-raw-for-audigyX.patch @@ -0,0 +1,14 @@ +Index: pulseaudio-0.9.22~0.9.21+stable-queue-24-gfa64/src/modules/alsa/mixer/paths/analog-output.conf.common +=================================================================== +--- pulseaudio-0.9.22~0.9.21+stable-queue-24-gfa64.orig/src/modules/alsa/mixer/paths/analog-output.conf.common 2010-01-15 18:21:18.000000000 -0500 ++++ pulseaudio-0.9.22~0.9.21+stable-queue-24-gfa64/src/modules/alsa/mixer/paths/analog-output.conf.common 2010-01-15 19:17:12.000000000 -0500 +@@ -121,6 +121,9 @@ + name = output-bass-boost-off + priority = 10 + ++[Element IEC958 Optical Raw] ++switch = off ++ + ;;; 'Analog Output' + + [Element Analog Output] --- pulseaudio-0.99.1.orig/debian/patches/0005-dont-load-cork-music-on-phone.patch +++ pulseaudio-0.99.1/debian/patches/0005-dont-load-cork-music-on-phone.patch @@ -0,0 +1,13 @@ +Index: pulseaudio-0.99.1/src/daemon/default.pa.in +=================================================================== +--- pulseaudio-0.99.1.orig/src/daemon/default.pa.in 2011-07-03 15:01:52.000000000 +0200 ++++ pulseaudio-0.99.1/src/daemon/default.pa.in 2011-08-03 11:47:37.911239018 +0200 +@@ -150,7 +150,7 @@ + load-module module-position-event-sounds + + ### Cork music streams when a phone stream is active +-load-module module-cork-music-on-phone ++# load-module module-cork-music-on-phone + ])dnl + + ifelse(@HAVE_X11@, 1, [dnl --- pulseaudio-0.99.1.orig/debian/patches/0400-Fix-crash-in-path-subset-elimination.patch +++ pulseaudio-0.99.1/debian/patches/0400-Fix-crash-in-path-subset-elimination.patch @@ -0,0 +1,43 @@ +From 5bfcb5d8a09bf5c726d4aea6fb04533007c24143 Mon Sep 17 00:00:00 2001 +From: David Henningsson +Date: Thu, 4 Aug 2011 11:13:37 +0200 +Subject: [PATCH 400/414] Fix crash in path subset elimination + +As reported in http://kpaste.net/04f1f3f +it is possible to call enumeration_is_subset with null pointers. +Handle that case instead of crashing. (It is also possible that +Tanuk's pending element_is_subset patch solves the issue, but this +nevertheless gives some extra security.) + +Signed-off-by: David Henningsson +--- + src/modules/alsa/alsa-mixer.c | 6 ++++-- + 1 files changed, 4 insertions(+), 2 deletions(-) + +diff --git a/src/modules/alsa/alsa-mixer.c b/src/modules/alsa/alsa-mixer.c +index f6a2a20..4542ac3 100644 +--- a/src/modules/alsa/alsa-mixer.c ++++ b/src/modules/alsa/alsa-mixer.c +@@ -2890,8 +2890,8 @@ static pa_bool_t options_have_option(pa_alsa_option *options, const char *alsa_n + static pa_bool_t enumeration_is_subset(pa_alsa_option *a_options, pa_alsa_option *b_options) { + pa_alsa_option *oa, *ob; + +- pa_assert(a_options); +- pa_assert(b_options); ++ if (!a_options) return TRUE; ++ if (!b_options) return FALSE; + + /* If there is an option A offers that B does not, then A is not a subset of B. */ + PA_LLIST_FOREACH(oa, a_options) { +@@ -3005,6 +3005,8 @@ static pa_bool_t element_is_subset(pa_alsa_element *a, pa_alsa_element *b, snd_m + } + + if (a->enumeration_use != PA_ALSA_ENUMERATION_IGNORE) { ++ if (b->enumeration_use == PA_ALSA_ENUMERATION_IGNORE) ++ return FALSE; + if (!enumeration_is_subset(a->options, b->options)) + return FALSE; + } +-- +1.7.5.4 + --- pulseaudio-0.99.1.orig/debian/patches/0002-In-KDE-only-start-pulseaudio-from-the-KDE-specific-d.patch +++ pulseaudio-0.99.1/debian/patches/0002-In-KDE-only-start-pulseaudio-from-the-KDE-specific-d.patch @@ -0,0 +1,20 @@ +From b4389a752385afd6e65e412a8488828ee3648fbd Mon Sep 17 00:00:00 2001 +From: Zsolt Rizsanyi +Date: Sun, 27 Jun 2010 15:16:13 +0100 +Subject: [PATCH 2/2] In KDE only start pulseaudio from the KDE specific desktop file + +--- + src/daemon/pulseaudio.desktop.in | 1 + + 1 files changed, 1 insertions(+), 0 deletions(-) + +diff --git a/src/daemon/pulseaudio.desktop.in b/src/daemon/pulseaudio.desktop.in +index 99bdbd0..47b2eb4 100644 +--- a/src/daemon/pulseaudio.desktop.in ++++ b/src/daemon/pulseaudio.desktop.in +@@ -6,5 +6,6 @@ _Comment=Start the PulseAudio Sound System + Exec=start-pulseaudio-x11 + Terminal=false + Type=Application ++NotShowIn=KDE; + Categories= + GenericName= --- pulseaudio-0.99.1.orig/debian/patches/0602-Create-a-port-even-if-there-is-only-one-path-setting.patch +++ pulseaudio-0.99.1/debian/patches/0602-Create-a-port-even-if-there-is-only-one-path-setting.patch @@ -0,0 +1,76 @@ +From 215ea86c5fed73b72d6f12d7044b3ef39a4e1706 Mon Sep 17 00:00:00 2001 +From: David Henningsson +Date: Wed, 6 Jul 2011 13:20:58 +0200 +Subject: [PATCH 602/603] Create a port even if there is only one path/setting + combination + +Signed-off-by: David Henningsson +--- + src/modules/alsa/alsa-mixer.c | 40 ++++++++++++++++++++++++++++------------ + 1 files changed, 28 insertions(+), 12 deletions(-) + +diff --git a/src/modules/alsa/alsa-mixer.c b/src/modules/alsa/alsa-mixer.c +index 4542ac3..f5fcae0 100644 +--- a/src/modules/alsa/alsa-mixer.c ++++ b/src/modules/alsa/alsa-mixer.c +@@ -4267,29 +4267,45 @@ void pa_alsa_add_ports(pa_hashmap **p, pa_alsa_path_set *ps) { + if (!ps->paths->next){ + pa_alsa_setting *s; + +- /* If there is only one path, but no or only one setting, then +- * we want a port list either */ +- if (!ps->paths->settings || !ps->paths->settings->next) +- return; +- +- /* Ok, there is only one path, however with multiple settings, +- * so let's create a port for each setting */ + *p = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func); ++ path = ps->paths; + +- PA_LLIST_FOREACH(s, ps->paths->settings) { ++ /* Only one path, and no settings, then just create one port */ ++ if (!path->settings || !path->settings->next) { + pa_device_port *port; + pa_alsa_port_data *data; + +- port = pa_device_port_new(s->name, s->description, sizeof(pa_alsa_port_data)); +- port->priority = s->priority; ++ /* If there is no or just one setting we only need a ++ * single entry */ ++ ++ port = pa_device_port_new(path->name, path->description, sizeof(pa_alsa_port_data)); ++ port->priority = path->priority * 100; + + data = PA_DEVICE_PORT_DATA(port); +- data->path = ps->paths; +- data->setting = s; ++ data->path = path; ++ data->setting = path->settings; + + pa_hashmap_put(*p, port->name, port); + } + ++ /* Ok, there is only one path, however with multiple settings, ++ * so let's create a port for each setting */ ++ else { ++ PA_LLIST_FOREACH(s, ps->paths->settings) { ++ pa_device_port *port; ++ pa_alsa_port_data *data; ++ ++ port = pa_device_port_new(s->name, s->description, sizeof(pa_alsa_port_data)); ++ port->priority = s->priority; ++ ++ data = PA_DEVICE_PORT_DATA(port); ++ data->path = path; ++ data->setting = s; ++ ++ pa_hashmap_put(*p, port->name, port); ++ } ++ } ++ + } else { + + /* We have multiple paths, so let's create a port for each +-- +1.7.5.4 + --- pulseaudio-0.99.1.orig/debian/patches/0402-source-output-Fix-resampling.patch +++ pulseaudio-0.99.1/debian/patches/0402-source-output-Fix-resampling.patch @@ -0,0 +1,57 @@ +From 8c93d7dc8079f2433d19efdd73c1279bd32787fc Mon Sep 17 00:00:00 2001 +From: Colin Guthrie +Date: Sat, 6 Aug 2011 23:05:27 +0200 +Subject: [PATCH 402/414] source-output: Fix resampling. + +When recording, we need to reverse the order of sample specs +(origin<->destination) from the sink code this was copied form. +--- + src/pulsecore/source-output.c | 10 +++++----- + 1 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/src/pulsecore/source-output.c b/src/pulsecore/source-output.c +index 59b6c2f..cd2e126 100644 +--- a/src/pulsecore/source-output.c ++++ b/src/pulsecore/source-output.c +@@ -733,7 +733,7 @@ void pa_source_output_push(pa_source_output *o, const pa_memchunk *chunk) { + pa_memchunk_make_writable(&qchunk, 0); + + if (o->thread_info.muted) { +- pa_silence_memchunk(&qchunk, &o->thread_info.sample_spec); ++ pa_silence_memchunk(&qchunk, &o->source->sample_spec); + nvfs = FALSE; + + } else if (!o->thread_info.resampler && nvfs) { +@@ -743,17 +743,17 @@ void pa_source_output_push(pa_source_output *o, const pa_memchunk *chunk) { + * post and the pre volume adjustment into one */ + + pa_sw_cvolume_multiply(&v, &o->thread_info.soft_volume, &o->volume_factor_source); +- pa_volume_memchunk(&qchunk, &o->thread_info.sample_spec, &v); ++ pa_volume_memchunk(&qchunk, &o->source->sample_spec, &v); + nvfs = FALSE; + + } else +- pa_volume_memchunk(&qchunk, &o->thread_info.sample_spec, &o->thread_info.soft_volume); ++ pa_volume_memchunk(&qchunk, &o->source->sample_spec, &o->thread_info.soft_volume); + } + + if (!o->thread_info.resampler) { + if (nvfs) { + pa_memchunk_make_writable(&qchunk, 0); +- pa_volume_memchunk(&qchunk, &o->source->sample_spec, &o->volume_factor_source); ++ pa_volume_memchunk(&qchunk, &o->thread_info.sample_spec, &o->volume_factor_source); + } + + o->push(o, &qchunk); +@@ -771,7 +771,7 @@ void pa_source_output_push(pa_source_output *o, const pa_memchunk *chunk) { + if (rchunk.length > 0) { + if (nvfs) { + pa_memchunk_make_writable(&rchunk, 0); +- pa_volume_memchunk(&rchunk, &o->source->sample_spec, &o->volume_factor_source); ++ pa_volume_memchunk(&rchunk, &o->thread_info.sample_spec, &o->volume_factor_source); + } + + o->push(o, &rchunk); +-- +1.7.5.4 + --- pulseaudio-0.99.1.orig/debian/patches/0010-lp453966-handle-digmic-pt2.patch +++ pulseaudio-0.99.1/debian/patches/0010-lp453966-handle-digmic-pt2.patch @@ -0,0 +1,20 @@ +Index: pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/modules/alsa/mixer/paths/analog-input.conf.common +=================================================================== +--- pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478.orig/src/modules/alsa/mixer/paths/analog-input.conf.common 2010-03-18 19:31:29.000000000 -0400 ++++ pulseaudio-0.9.22~0.9.21+stable-queue-32-g8478/src/modules/alsa/mixer/paths/analog-input.conf.common 2010-03-18 19:33:32.000000000 -0400 +@@ -272,12 +272,12 @@ + [Element Digital Input Source] + enumeration = select + +-[Option Digital Input Source:Analog Inputs] +-name = input +- + [Option Digital Input Source:Digital Mic 1] + name = input-microphone + ++[Option Digital Input Source:Analog Inputs] ++name = input ++ + [Option Digital Input Source:Digital Mic 2] + name = input-microphone + --- pulseaudio-0.99.1.orig/debian/patches/0403-stream-restore-Save-restore-source-output-volume-mut.patch +++ pulseaudio-0.99.1/debian/patches/0403-stream-restore-Save-restore-source-output-volume-mut.patch @@ -0,0 +1,152 @@ +From e8df86807ef247f01269cc63149faf9974fbb189 Mon Sep 17 00:00:00 2001 +From: Colin Guthrie +Date: Sun, 7 Aug 2011 01:08:28 +0200 +Subject: [PATCH 403/414] stream-restore: Save/restore source output + volume/mute + +--- + src/modules/module-stream-restore.c | 92 ++++++++++++++++++++++++++++++++++- + 1 files changed, 91 insertions(+), 1 deletions(-) + +diff --git a/src/modules/module-stream-restore.c b/src/modules/module-stream-restore.c +index 19c09bb..7bb3093 100644 +--- a/src/modules/module-stream-restore.c ++++ b/src/modules/module-stream-restore.c +@@ -90,6 +90,7 @@ struct userdata { + *sink_input_new_hook_slot, + *sink_input_fixate_hook_slot, + *source_output_new_hook_slot, ++ *source_output_fixate_hook_slot, + *sink_put_hook_slot, + *source_put_hook_slot, + *sink_unlink_hook_slot, +@@ -1322,6 +1323,26 @@ static void subscribe_callback(pa_core *c, pa_subscription_event_type_t t, uint3 + } else + entry = entry_new(); + ++ if (source_output->save_volume && pa_source_output_is_volume_readable(source_output)) { ++ pa_assert(source_output->volume_writable); ++ ++ entry->channel_map = source_output->channel_map; ++ pa_source_output_get_volume(source_output, &entry->volume, FALSE); ++ entry->volume_valid = TRUE; ++ ++ volume_updated = !created_new_entry ++ && (!old->volume_valid ++ || !pa_channel_map_equal(&entry->channel_map, &old->channel_map) ++ || !pa_cvolume_equal(&entry->volume, &old->volume)); ++ } ++ ++ if (source_output->save_muted) { ++ entry->muted = pa_source_output_get_mute(source_output); ++ entry->muted_valid = TRUE; ++ ++ mute_updated = !created_new_entry && (!old->muted_valid || entry->muted != old->muted); ++ } ++ + if (source_output->save_source) { + pa_xfree(entry->device); + entry->device = pa_xstrdup(source_output->source->name); +@@ -1516,6 +1537,57 @@ static pa_hook_result_t source_output_new_hook_callback(pa_core *c, pa_source_ou + return PA_HOOK_OK; + } + ++static pa_hook_result_t source_output_fixate_hook_callback(pa_core *c, pa_source_output_new_data *new_data, struct userdata *u) { ++ char *name; ++ struct entry *e; ++ ++ pa_assert(c); ++ pa_assert(new_data); ++ pa_assert(u); ++ pa_assert(u->restore_volume || u->restore_muted); ++ ++ if (!(name = get_name(new_data->proplist, "source-output"))) ++ return PA_HOOK_OK; ++ ++ if ((e = entry_read(u, name))) { ++ ++ if (u->restore_volume && e->volume_valid) { ++ if (!new_data->volume_writable) ++ pa_log_debug("Not restoring volume for source output %s, because its volume can't be changed.", name); ++ else if (new_data->volume_is_set) ++ pa_log_debug("Not restoring volume for source output %s, because already set.", name); ++ else { ++ pa_cvolume v; ++ ++ pa_log_info("Restoring volume for source output %s.", name); ++ ++ v = e->volume; ++ pa_cvolume_remap(&v, &e->channel_map, &new_data->channel_map); ++ pa_source_output_new_data_set_volume(new_data, &v); ++ ++ new_data->volume_is_absolute = FALSE; ++ new_data->save_volume = TRUE; ++ } ++ } ++ ++ if (u->restore_muted && e->muted_valid) { ++ ++ if (!new_data->muted_is_set) { ++ pa_log_info("Restoring mute state for source output %s.", name); ++ pa_source_output_new_data_set_muted(new_data, e->muted); ++ new_data->save_muted = TRUE; ++ } else ++ pa_log_debug("Not restoring mute state for source output %s, because already set.", name); ++ } ++ ++ entry_free(e); ++ } ++ ++ pa_xfree(name); ++ ++ return PA_HOOK_OK; ++} ++ + static pa_hook_result_t sink_put_hook_callback(pa_core *c, pa_sink *sink, struct userdata *u) { + pa_sink_input *si; + uint32_t idx; +@@ -1771,6 +1843,20 @@ static void entry_apply(struct userdata *u, const char *name, struct entry *e) { + } + pa_xfree(n); + ++ if (u->restore_volume && e->volume_valid && so->volume_writable) { ++ pa_cvolume v; ++ ++ v = e->volume; ++ pa_log_info("Restoring volume for source output %s.", name); ++ pa_cvolume_remap(&v, &e->channel_map, &so->channel_map); ++ pa_source_output_set_volume(so, &v, TRUE, FALSE); ++ } ++ ++ if (u->restore_muted && e->muted_valid) { ++ pa_log_info("Restoring mute state for source output %s.", name); ++ pa_source_output_set_mute(so, e->muted, TRUE); ++ } ++ + if (u->restore_device) { + if (!e->device_valid) { + if (so->save_source) { +@@ -2148,8 +2234,10 @@ int pa__init(pa_module*m) { + u->source_unlink_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_UNLINK], PA_HOOK_LATE, (pa_hook_cb_t) source_unlink_hook_callback, u); + } + +- if (restore_volume || restore_muted) ++ if (restore_volume || restore_muted) { + u->sink_input_fixate_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_INPUT_FIXATE], PA_HOOK_EARLY, (pa_hook_cb_t) sink_input_fixate_hook_callback, u); ++ u->source_output_fixate_hook_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_FIXATE], PA_HOOK_EARLY, (pa_hook_cb_t) source_output_fixate_hook_callback, u); ++ } + + if (!(fname = pa_state_path("stream-volumes", TRUE))) + goto fail; +@@ -2254,6 +2342,8 @@ void pa__done(pa_module*m) { + pa_hook_slot_free(u->sink_input_fixate_hook_slot); + if (u->source_output_new_hook_slot) + pa_hook_slot_free(u->source_output_new_hook_slot); ++ if (u->source_output_fixate_hook_slot) ++ pa_hook_slot_free(u->source_output_fixate_hook_slot); + + if (u->sink_put_hook_slot) + pa_hook_slot_free(u->sink_put_hook_slot); +-- +1.7.5.4 + --- pulseaudio-0.99.1.orig/debian/manpages/esdcompat.1 +++ pulseaudio-0.99.1/debian/manpages/esdcompat.1 @@ -0,0 +1,55 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36. +.TH PULSEAUDIO "1" "August 2006" "pulseaudio esd wrapper 0.9.5" "User Commands" +.SH NAME +pulseaudio \- manual page for pulseaudio esd wrapper 0.9.5 +.SH SYNOPSIS +.B esdcompat +[\fIoptions\fR] +.SH DESCRIPTION +pulseaudio esd wrapper 0.9.5 +.TP +\fB\-v\fR \fB\-\-version\fR +print version information +.TP +\fB\-h\fR \fB\-\-help\fR +show this help +.PP +Ignored directives: +.TP +\fB\-tcp\fR +use tcp/ip sockets in addition to unix domain +.TP +\fB\-promiscuous\fR +don't require authentication +.TP +\fB\-d\fR DEVICE +force esd to use sound device DEVICE +.TP +\fB\-b\fR +run server in 8 bit sound mode +.TP +\fB\-r\fR RATE +run server at sample rate of RATE +.TP +\fB\-as\fR SECS +free audio device after SECS of inactivity +.TP +\fB\-unix\fR +use unix domain sockets instead of tcp/ip +.TP +\fB\-public\fR +make tcp/ip access public (other than localhost) +.TP +\fB\-terminate\fR +terminate esd daemone after last client exits +.TP +\fB\-nobeeps\fR +disable startup beeps +.TP +\fB\-trust\fR +start esd even if use of /tmp/.esd can be insecure +.TP +\fB\-port\fR PORT +listen for connections at PORT (only for tcp/ip) +.HP +\fB\-bind\fR ADDRESS binds to ADDRESS (only for tcp/ip) --- pulseaudio-0.99.1.orig/debian/overrides/pulseaudio +++ pulseaudio-0.99.1/debian/overrides/pulseaudio @@ -0,0 +1,2 @@ +pulseaudio: script-not-executable ./etc/pulse/default.pa +pulseaudio: description-starts-with-package-name --- pulseaudio-0.99.1.orig/debian/overrides/pulseaudio-module-x11 +++ pulseaudio-0.99.1/debian/overrides/pulseaudio-module-x11 @@ -0,0 +1 @@ +pulseaudio-module-x11: desktop-entry-lacks-main-category /etc/xdg/autostart/pulseaudio-module-xsmp.desktop --- pulseaudio-0.99.1.orig/debian/overrides/pulseaudio-utils +++ pulseaudio-0.99.1/debian/overrides/pulseaudio-utils @@ -0,0 +1,3 @@ +pulseaudio-utils: no-shlibs-control-file usr/lib/libpulsedsp.so +pulseaudio-utils: postinst-must-call-ldconfig usr/lib/libpulsedsp.so +pulseaudio-utils: package-name-doesnt-match-sonames libpulsedsp