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

« back to all changes in this revision

Viewing changes to src/pulsecore/core.h

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

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef foocorehfoo
2
2
#define foocorehfoo
3
3
 
4
 
/* $Id: core.h 1971 2007-10-28 19:13:50Z lennart $ */
 
4
/* $Id: core.h 2067 2007-11-21 01:30:40Z lennart $ */
5
5
 
6
6
/***
7
7
  This file is part of PulseAudio.
54
54
    PA_CORE_HOOK_SOURCE_STATE_CHANGED,
55
55
    PA_CORE_HOOK_SOURCE_DESCRIPTION_CHANGED,
56
56
    PA_CORE_HOOK_SINK_INPUT_NEW,
 
57
    PA_CORE_HOOK_SINK_INPUT_FIXATE,
57
58
    PA_CORE_HOOK_SINK_INPUT_PUT,
58
59
    PA_CORE_HOOK_SINK_INPUT_UNLINK,
59
60
    PA_CORE_HOOK_SINK_INPUT_UNLINK_POST,
62
63
    PA_CORE_HOOK_SINK_INPUT_NAME_CHANGED,
63
64
    PA_CORE_HOOK_SINK_INPUT_STATE_CHANGED,
64
65
    PA_CORE_HOOK_SOURCE_OUTPUT_NEW,
 
66
    PA_CORE_HOOK_SOURCE_OUTPUT_FIXATE,
65
67
    PA_CORE_HOOK_SOURCE_OUTPUT_PUT,
66
68
    PA_CORE_HOOK_SOURCE_OUTPUT_UNLINK,
67
69
    PA_CORE_HOOK_SOURCE_OUTPUT_UNLINK_POST,
113
115
 
114
116
    pa_time_event *scache_auto_unload_event;
115
117
 
116
 
    int disallow_module_loading, running_as_daemon;
 
118
    pa_bool_t disallow_module_loading, running_as_daemon;
117
119
    pa_resample_method_t resample_method;
118
 
    int is_system_instance;
119
 
    int high_priority;
 
120
    pa_bool_t is_system_instance;
 
121
    pa_bool_t realtime_scheduling;
 
122
    int realtime_priority;
 
123
    pa_bool_t disable_remixing;
120
124
 
121
125
    /* hooks */
122
126
    pa_hook hooks[PA_CORE_HOOK_MAX];