diff options
| author | Lennart Poettering <lennart@poettering.net> | 2007-10-29 21:23:08 +0000 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2007-10-29 21:23:08 +0000 | 
| commit | 33c238b7ef4b6c00f46714f14b3c6e1f29af6fde (patch) | |
| tree | 07883e3c7a549c4e504e72539c30c8747f09ebb5 /src/pulse/def.h | |
| parent | 625a87276a04c00677f2d54d2ad28991f797eee4 (diff) | |
ignore network sinks/sources
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1988 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulse/def.h')
| -rw-r--r-- | src/pulse/def.h | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/src/pulse/def.h b/src/pulse/def.h index c2816234..a7c475db 100644 --- a/src/pulse/def.h +++ b/src/pulse/def.h @@ -300,14 +300,16 @@ typedef enum pa_seek_mode {  typedef enum pa_sink_flags {      PA_SINK_HW_VOLUME_CTRL = 1,   /**< Supports hardware volume control */      PA_SINK_LATENCY = 2,          /**< Supports latency querying */ -    PA_SINK_HARDWARE = 4          /**< Is a hardware sink of some kind, in contrast to "virtual"/software sinks \since 0.9.3 */ +    PA_SINK_HARDWARE = 4,         /**< Is a hardware sink of some kind, in contrast to "virtual"/software sinks \since 0.9.3 */ +    PA_SINK_NETWORK = 8           /**< Is a networked sink of some kind. \since 0.9.7 */  } pa_sink_flags_t;  /** Special source flags. \since 0.8  */  typedef enum pa_source_flags {      PA_SOURCE_HW_VOLUME_CTRL = 1,  /**< Supports hardware volume control */      PA_SOURCE_LATENCY = 2,         /**< Supports latency querying */ -    PA_SOURCE_HARDWARE = 4         /**< Is a hardware source of some kind, in contrast to "virtual"/software source \since 0.9.3 */ +    PA_SOURCE_HARDWARE = 4,        /**< Is a hardware source of some kind, in contrast to "virtual"/software source \since 0.9.3 */ +    PA_SOURCE_NETWORK = 8          /**< Is a networked sink of some kind. \since 0.9.7 */  } pa_source_flags_t;  /** A generic free() like callback prototype */ | 
