~ubuntu-branches/ubuntu/karmic/pulseaudio/karmic-updates

« back to all changes in this revision

Viewing changes to src/modules/raop/module-raop-discover.c

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich, Daniel T Chen, Luke Yelavich
  • Date: 2009-09-21 10:28:25 UTC
  • mfrom: (1.14.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090921102825-dn0svrgwo8w19bc8
Tags: 1:0.9.18-0ubuntu1
[ 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 <launchpad.web@epost.diwic.se> for the patch.
* Add epoch to shlibs version definitions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
        struct tunnel *t2;
266
266
 
267
267
        if ((t2 = pa_hashmap_get(u->tunnels, t))) {
268
 
            pa_module_unload_by_index(u->core, t2->module_index, TRUE);
 
268
            pa_module_unload_request_by_index(u->core, t2->module_index, TRUE);
269
269
            pa_hashmap_remove(u->tunnels, t2);
270
270
            tunnel_free(t2);
271
271
        }
386
386
        struct tunnel *t;
387
387
 
388
388
        while ((t = pa_hashmap_steal_first(u->tunnels))) {
389
 
            pa_module_unload_by_index(u->core, t->module_index, TRUE);
 
389
            pa_module_unload_request_by_index(u->core, t->module_index, TRUE);
390
390
            tunnel_free(t);
391
391
        }
392
392