aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-audio-sink.h
diff options
context:
space:
mode:
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>2011-03-12 03:01:17 +0800
committerSjoerd Simons <sjoerd.simons@collabora.co.uk>2011-03-12 03:01:19 +0800
commit952d1607e5be84369843eaaee6f1b668330bd9ff (patch)
tree7e7fe9ac61700b006b228f27ac47cee94ca856bd /src/empathy-audio-sink.h
parent2bf0786b1afd3e9c9c4bead7d9704ae2c18303fc (diff)
downloadgsoc2013-empathy-952d1607e5be84369843eaaee6f1b668330bd9ff.tar
gsoc2013-empathy-952d1607e5be84369843eaaee6f1b668330bd9ff.tar.gz
gsoc2013-empathy-952d1607e5be84369843eaaee6f1b668330bd9ff.tar.bz2
gsoc2013-empathy-952d1607e5be84369843eaaee6f1b668330bd9ff.tar.lz
gsoc2013-empathy-952d1607e5be84369843eaaee6f1b668330bd9ff.tar.xz
gsoc2013-empathy-952d1607e5be84369843eaaee6f1b668330bd9ff.tar.zst
gsoc2013-empathy-952d1607e5be84369843eaaee6f1b668330bd9ff.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.h2
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);