From: Wim Taymans Date: Sat, 22 Nov 2008 14:31:43 +0000 (+0000) Subject: gst/playback/gstplaysink.c: Don't post an error when we can't configure the volume... X-Git-Tag: 1.19.3~511^2~10179 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=096efe2fe95cfe59b5172e4cfac0dabc40a9fbb4;p=platform%2Fupstream%2Fgstreamer.git gst/playback/gstplaysink.c: Don't post an error when we can't configure the volume but post a warning instead. Fixes ... Original commit message from CVS: * gst/playback/gstplaysink.c: (gen_audio_chain): Don't post an error when we can't configure the volume but post a warning instead. Fixes #561780. --- diff --git a/ChangeLog b/ChangeLog index 59f5616..5150abd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-22 Wim Taymans + + * gst/playback/gstplaysink.c: (gen_audio_chain): + Don't post an error when we can't configure the volume but post a + warning instead. Fixes #561780. + 2008-11-21 David Schleef Patch by: Jonathan Rosser diff --git a/gst/playback/gstplaysink.c b/gst/playback/gstplaysink.c index 8435e5d..acc4234 100644 --- a/gst/playback/gstplaysink.c +++ b/gst/playback/gstplaysink.c @@ -985,7 +985,7 @@ gen_audio_chain (GstPlaySink * playsink, gboolean raw, gboolean queue) } /* post a warning if we have no way to configure the volume */ if (!have_volume) { - GST_ELEMENT_ERROR (playsink, STREAM, NOT_IMPLEMENTED, + GST_ELEMENT_WARNING (playsink, STREAM, NOT_IMPLEMENTED, (_("No volume control found")), ("No volume control found")); } chain->sinkpad = gst_ghost_pad_new ("sink", pad);