diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2011-03-12 03:01:17 +0800 |
---|---|---|
committer | Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk> | 2011-06-09 17:20:06 +0800 |
commit | e9fb5d29ff44ae35411b02c3715ae9650b61dd25 (patch) | |
tree | 152c8278e8bfc5fe79eb5cc700bce2cc52a5e8a7 /src/empathy-audio-sink.h | |
parent | 8cbd6a5c6addfd360bdd274ac60e3c035b2ebc9b (diff) | |
download | gsoc2013-empathy-e9fb5d29ff44ae35411b02c3715ae9650b61dd25.tar gsoc2013-empathy-e9fb5d29ff44ae35411b02c3715ae9650b61dd25.tar.gz gsoc2013-empathy-e9fb5d29ff44ae35411b02c3715ae9650b61dd25.tar.bz2 gsoc2013-empathy-e9fb5d29ff44ae35411b02c3715ae9650b61dd25.tar.lz gsoc2013-empathy-e9fb5d29ff44ae35411b02c3715ae9650b61dd25.tar.xz gsoc2013-empathy-e9fb5d29ff44ae35411b02c3715ae9650b61dd25.tar.zst gsoc2013-empathy-e9fb5d29ff44ae35411b02c3715ae9650b61dd25.zip |
Implement request pads for multiple sinks
Instead of using an live-adder we're moving to using multiple pulseaudio
sinks as pulse can do the right thing (tm). To make this easy for the
call window have one bin that handles all the juggling of audiosinks and
audio conversion
Diffstat (limited to 'src/empathy-audio-sink.h')
-rw-r--r-- | src/empathy-audio-sink.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/empathy-audio-sink.h b/src/empathy-audio-sink.h index 21ebf2b5a..cc21fc467 100644 --- a/src/empathy-audio-sink.h +++ b/src/empathy-audio-sink.h @@ -28,6 +28,7 @@ G_BEGIN_DECLS typedef struct _EmpathyGstAudioSink EmpathyGstAudioSink; typedef struct _EmpathyGstAudioSinkClass EmpathyGstAudioSinkClass; +typedef struct _EmpathyGstAudioSinkPrivate EmpathyGstAudioSinkPrivate; struct _EmpathyGstAudioSinkClass { GstBinClass parent_class; @@ -35,6 +36,7 @@ struct _EmpathyGstAudioSinkClass { struct _EmpathyGstAudioSink { GstBin parent; + EmpathyGstAudioSinkPrivate *priv; }; GType empathy_audio_sink_get_type (void); |