diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2011-11-10 03:00:10 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2011-11-11 22:01:07 +0800 |
commit | 8b9ee2a0f048ce6263efe0d0660ed04a53861adf (patch) | |
tree | 9ee947393f466ccf04f2154f910a8ac70e8a49cb /src/empathy-audio-src.h | |
parent | ffaa3afe49651493d0dcb01eba1b6dcd1134eed1 (diff) | |
download | gsoc2013-empathy-8b9ee2a0f048ce6263efe0d0660ed04a53861adf.tar gsoc2013-empathy-8b9ee2a0f048ce6263efe0d0660ed04a53861adf.tar.gz gsoc2013-empathy-8b9ee2a0f048ce6263efe0d0660ed04a53861adf.tar.bz2 gsoc2013-empathy-8b9ee2a0f048ce6263efe0d0660ed04a53861adf.tar.lz gsoc2013-empathy-8b9ee2a0f048ce6263efe0d0660ed04a53861adf.tar.xz gsoc2013-empathy-8b9ee2a0f048ce6263efe0d0660ed04a53861adf.tar.zst gsoc2013-empathy-8b9ee2a0f048ce6263efe0d0660ed04a53861adf.zip |
Don't turn on echo cancellation on the source if it's for raw conferences
https://bugzilla.gnome.org/show_bug.cgi?id=663842
Diffstat (limited to 'src/empathy-audio-src.h')
-rw-r--r-- | src/empathy-audio-src.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/empathy-audio-src.h b/src/empathy-audio-src.h index 14813abc1..ff568ce30 100644 --- a/src/empathy-audio-src.h +++ b/src/empathy-audio-src.h @@ -29,6 +29,8 @@ G_BEGIN_DECLS typedef struct _EmpathyGstAudioSrc EmpathyGstAudioSrc; typedef struct _EmpathyGstAudioSrcClass EmpathyGstAudioSrcClass; +typedef struct _EmpathyGstAudioSrcPrivate EmpathyGstAudioSrcPrivate; + struct _EmpathyGstAudioSrcClass { GstBinClass parent_class; @@ -36,6 +38,7 @@ struct _EmpathyGstAudioSrcClass { struct _EmpathyGstAudioSrc { GstBin parent; + EmpathyGstAudioSrcPrivate *priv; }; GType empathy_audio_src_get_type (void); @@ -59,6 +62,9 @@ GType empathy_audio_src_get_type (void); GstElement *empathy_audio_src_new (void); +void empathy_audio_src_set_echo_cancel (EmpathyGstAudioSrc *src, gboolean + enable); + void empathy_audio_src_set_volume (EmpathyGstAudioSrc *src, gdouble volume); gdouble empathy_audio_src_get_volume (EmpathyGstAudioSrc *src); |