summaryrefslogtreecommitdiff
path: root/indra/media_plugins/webkit
diff options
context:
space:
mode:
authorLeyla Farazha <leyla@lindenlab.com>2010-02-24 16:19:30 -0800
committerLeyla Farazha <leyla@lindenlab.com>2010-02-24 16:19:30 -0800
commitfadbd33b52b6deb465a49a4c0857ed8078277b15 (patch)
tree57d07406dde9741d13a763e3a66a7a08088e4ae7 /indra/media_plugins/webkit
parent66d2bd3de30b77301d200c7449d33bb5b81b94ec (diff)
parent4729019189a1e7c54c08f8974f7f008968fd686d (diff)
Merge
Diffstat (limited to 'indra/media_plugins/webkit')
-rw-r--r--indra/media_plugins/webkit/linux_volume_catcher.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/media_plugins/webkit/linux_volume_catcher.cpp b/indra/media_plugins/webkit/linux_volume_catcher.cpp
index 2ba28bd4bf..52ab766f7f 100644
--- a/indra/media_plugins/webkit/linux_volume_catcher.cpp
+++ b/indra/media_plugins/webkit/linux_volume_catcher.cpp
@@ -398,7 +398,8 @@ void callback_subscription_alert(pa_context *context, pa_subscription_event_type
impl->mSinkInputIndices.erase(index);
impl->mSinkInputNumChannels.erase(index);
}
- else
+ else if ((t & PA_SUBSCRIPTION_EVENT_TYPE_MASK) ==
+ PA_SUBSCRIPTION_EVENT_NEW)
{
// ask for more info about this new sinkinput
pa_operation *op;
@@ -407,6 +408,10 @@ void callback_subscription_alert(pa_context *context, pa_subscription_event_type
llpa_operation_unref(op);
}
}
+ else
+ {
+ // property change on this sinkinput - we don't care.
+ }
break;
default:;