diff options
author | Michal Ratajsky <[email protected]> | 2016-01-09 22:50:44 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-02-21 11:55:59 +0100 |
commit | ffbaee33908adccfe1afb1d7d6c0fcb79fbca6ca (patch) | |
tree | c87c3fbe28ab588cddb5c7b46cc056ff21ac15e4 /backends/pulse/pulse-sink-input.h | |
parent | 9cbe39ab7c55bcad401de32716c5c8106f166291 (diff) | |
download | libmatemixer-wip.tar.bz2 libmatemixer-wip.tar.xz |
pulse: Handle moving of sink inputs and source outputswip
Diffstat (limited to 'backends/pulse/pulse-sink-input.h')
-rw-r--r-- | backends/pulse/pulse-sink-input.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/backends/pulse/pulse-sink-input.h b/backends/pulse/pulse-sink-input.h index 92b3897..75d6365 100644 --- a/backends/pulse/pulse-sink-input.h +++ b/backends/pulse/pulse-sink-input.h @@ -51,6 +51,10 @@ struct _PulseSinkInput struct _PulseSinkInputClass { PulseStreamControlClass parent_class; + + /*< private >*/ + void (*stream_changed_by_request) (PulseSinkInput *input, + PulseSink *sink); }; GType pulse_sink_input_get_type (void) G_GNUC_CONST; @@ -60,7 +64,8 @@ PulseSinkInput *pulse_sink_input_new (PulseConnection *connection, PulseSink *sink); void pulse_sink_input_update (PulseSinkInput *input, - const pa_sink_input_info *info); + const pa_sink_input_info *info, + PulseSink *sink); G_END_DECLS |