aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2011-07-29 18:43:44 +0800
committerJonny Lamb <jonny.lamb@collabora.co.uk>2011-07-29 18:43:44 +0800
commitcf7f9a1da8e7a830a0f0676accc0afa444ae8748 (patch)
treeaacdd48c0224f695d1a86ccdcd4d16b93717a30f /src
parent89afdf6b8941ac525104cfb54f10174d6cb7dbcf (diff)
downloadgsoc2013-empathy-cf7f9a1da8e7a830a0f0676accc0afa444ae8748.tar
gsoc2013-empathy-cf7f9a1da8e7a830a0f0676accc0afa444ae8748.tar.gz
gsoc2013-empathy-cf7f9a1da8e7a830a0f0676accc0afa444ae8748.tar.bz2
gsoc2013-empathy-cf7f9a1da8e7a830a0f0676accc0afa444ae8748.tar.lz
gsoc2013-empathy-cf7f9a1da8e7a830a0f0676accc0afa444ae8748.tar.xz
gsoc2013-empathy-cf7f9a1da8e7a830a0f0676accc0afa444ae8748.tar.zst
gsoc2013-empathy-cf7f9a1da8e7a830a0f0676accc0afa444ae8748.zip
audio-src: update to newer GstPulseSrc API
This time it's actually merged to master. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'src')
-rw-r--r--src/empathy-audio-src.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/empathy-audio-src.c b/src/empathy-audio-src.c
index 4c1072c44..129e75319 100644
--- a/src/empathy-audio-src.c
+++ b/src/empathy-audio-src.c
@@ -204,17 +204,17 @@ operation_change_microphone (EmpathyGstAudioSrc *self,
GSimpleAsyncResult *result)
{
EmpathyGstAudioSrcPrivate *priv = EMPATHY_GST_AUDIO_SRC_GET_PRIVATE (self);
- guint stream_idx, microphone;
+ guint source_output_idx, microphone;
- g_object_get (priv->src, "stream-index", &stream_idx, NULL);
+ g_object_get (priv->src, "source-output-index", &source_output_idx, NULL);
g_assert_cmpuint (pa_context_get_state (priv->context), ==, PA_CONTEXT_READY);
- g_assert_cmpuint (stream_idx, !=, G_MAXUINT);
+ g_assert_cmpuint (source_output_idx, !=, PA_INVALID_INDEX);
microphone = GPOINTER_TO_UINT (
g_simple_async_result_get_op_res_gpointer (result));
- pa_context_move_source_output_by_index (priv->context, stream_idx, microphone,
+ pa_context_move_source_output_by_index (priv->context, source_output_idx, microphone,
operation_change_microphone_cb, result);
}
@@ -343,25 +343,25 @@ empathy_audio_src_pa_state_change_cb (pa_context *context,
}
static void
-empathy_audio_src_stream_index_notify (GObject *object,
+empathy_audio_src_source_output_index_notify (GObject *object,
GParamSpec *pspec,
EmpathyGstAudioSrc *self)
{
EmpathyGstAudioSrcPrivate *priv = EMPATHY_GST_AUDIO_SRC_GET_PRIVATE (self);
- guint stream_idx = G_MAXUINT;
+ guint source_output_idx = PA_INVALID_INDEX;
- g_object_get (priv->src, "stream-index", &stream_idx, NULL);
+ g_object_get (priv->src, "source-output-index", &source_output_idx, NULL);
- if (stream_idx == G_MAXUINT)
+ if (source_output_idx == PA_INVALID_INDEX)
return;
- if (priv->source_output_idx == stream_idx)
+ if (priv->source_output_idx == source_output_idx)
return;
/* It's actually changed. */
- priv->source_output_idx = stream_idx;
+ priv->source_output_idx = source_output_idx;
- pa_context_get_source_output_info (priv->context, stream_idx,
+ pa_context_get_source_output_info (priv->context, source_output_idx,
empathy_audio_src_source_output_info_cb, self);
}
@@ -405,11 +405,11 @@ empathy_audio_src_init (EmpathyGstAudioSrc *obj)
priv->context = pa_context_new (pa_glib_mainloop_get_api (priv->loop),
"EmpathyAudioSrc");
- /* Listen to changes to GstPulseSrc:stream-index so we know when
- * it's no longer G_MAXUINT (starting for the first time) or if it
+ /* Listen to changes to GstPulseSrc:source-output-index so we know when
+ * it's no longer PA_INVALID_INDEX (starting for the first time) or if it
* changes (READY->NULL->READY...) */
- g_signal_connect (priv->src, "notify::stream-index",
- G_CALLBACK (empathy_audio_src_stream_index_notify),
+ g_signal_connect (priv->src, "notify::source-output-index",
+ G_CALLBACK (empathy_audio_src_source_output_index_notify),
obj);
/* Finally listen for state changes so we know when we've
@@ -771,16 +771,16 @@ empathy_audio_src_change_microphone_async (EmpathyGstAudioSrc *src,
gpointer user_data)
{
EmpathyGstAudioSrcPrivate *priv = EMPATHY_GST_AUDIO_SRC_GET_PRIVATE (src);
- guint stream_idx;
+ guint source_output_idx;
GSimpleAsyncResult *simple;
Operation *operation;
simple = g_simple_async_result_new (G_OBJECT (src), callback, user_data,
empathy_audio_src_change_microphone_async);
- g_object_get (priv->src, "stream-index", &stream_idx, NULL);
+ g_object_get (priv->src, "source-output-index", &source_output_idx, NULL);
- if (stream_idx == G_MAXUINT)
+ if (source_output_idx == PA_INVALID_INDEX)
{
g_simple_async_result_set_error (simple, G_IO_ERROR, G_IO_ERROR_FAILED,
"pulsesrc is not yet PLAYING");