diff options
author | Michal Ratajsky <[email protected]> | 2014-07-03 20:48:08 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-07-03 20:48:08 +0200 |
commit | b81d9ed11fae7bee59b67b1aee9927e417666875 (patch) | |
tree | b5b2d8406272db2b4457e31f714e1703d6336727 /backends/pulse/pulse-sink-input.c | |
parent | e13f443c1c4c73ef20dd00f1909f8c94c685b07f (diff) | |
download | libmatemixer-b81d9ed11fae7bee59b67b1aee9927e417666875.tar.bz2 libmatemixer-b81d9ed11fae7bee59b67b1aee9927e417666875.tar.xz |
PulseAudio and API fixes
Diffstat (limited to 'backends/pulse/pulse-sink-input.c')
-rw-r--r-- | backends/pulse/pulse-sink-input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/pulse/pulse-sink-input.c b/backends/pulse/pulse-sink-input.c index 4e9991b..051b351 100644 --- a/backends/pulse/pulse-sink-input.c +++ b/backends/pulse/pulse-sink-input.c @@ -156,9 +156,9 @@ pulse_sink_input_update (PulseStream *stream, pulse_stream_update_flags (stream, flags); if (info->has_volume) - pulse_stream_update_volume (stream, &info->volume, &info->channel_map); + pulse_stream_update_volume (stream, &info->volume, &info->channel_map, 0); else - pulse_stream_update_volume (stream, NULL, &info->channel_map); + pulse_stream_update_volume (stream, NULL, &info->channel_map, 0); #else /* Pre-1.0 PulseAudio does not include the has_volume and volume_writable * fields, but does include the volume info, so let's give it a try */ @@ -170,7 +170,7 @@ pulse_sink_input_update (PulseStream *stream, /* Flags needed before volume */ pulse_stream_update_flags (stream, flags); - pulse_stream_update_volume (stream, &info->volume, &info->channel_map); + pulse_stream_update_volume (stream, &info->volume, &info->channel_map, 0); #endif prop = pa_proplist_gets (info->proplist, PA_PROP_APPLICATION_NAME); |