From 2657a246ea9e3fd8092c7800c260239c92b55f41 Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Wed, 28 Jun 2006 08:36:30 +0000 Subject: [PATCH] sys/sunaudio/gstsunaudiosink.c: Do not modify the ports value. If the user has turned off the built-in speakers, then... Original commit message from CVS: Patch by: Brian Cameron * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare): Do not modify the ports value. If the user has turned off the built-in speakers, then we should not reset it in the prepare function, since this causes the built-in speakers to turn back on anytime the user changes a track in totem, rhythmbox, etc. (#346066). --- ChangeLog | 11 +++++++++++ sys/sunaudio/gstsunaudiosink.c | 3 --- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index eab5369f40..5dfd1442e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2006-06-28 Tim-Philipp Müller + + Patch by: Brian Cameron + + * sys/sunaudio/gstsunaudiosink.c: (gst_sunaudiosink_prepare): + Do not modify the ports value. If the user has turned off the + built-in speakers, then we should not reset it in the prepare + function, since this causes the built-in speakers to turn + back on anytime the user changes a track in totem, rhythmbox, + etc. (#346066). + 2006-06-23 Wim Taymans * gst/goom/gstgoom.c: (gst_goom_src_negotiate): diff --git a/sys/sunaudio/gstsunaudiosink.c b/sys/sunaudio/gstsunaudiosink.c index 7dd56d60fd..5c6e48f76b 100644 --- a/sys/sunaudio/gstsunaudiosink.c +++ b/sys/sunaudio/gstsunaudiosink.c @@ -330,9 +330,6 @@ gst_sunaudiosink_prepare (GstAudioSink * asink, GstRingBufferSpec * spec) return FALSE; ports = ainfo.play.port; - if (!(ports & AUDIO_SPEAKER) && (ainfo.play.avail_ports & AUDIO_SPEAKER)) { - ports = ports | AUDIO_SPEAKER; - } AUDIO_INITINFO (&ainfo);