After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 404544 - Should use gstreamer-gconf music profile
Should use gstreamer-gconf music profile
Status: RESOLVED FIXED
Product: totem
Classification: Core
Component: GStreamer backend
2.16.x
Other Linux
: Normal normal
: ---
Assigned To: Maintainer alias for GStreamer component of Totem
Maintainer alias for GStreamer component of Totem
Depends on:
Blocks:
 
 
Reported: 2007-02-05 10:36 UTC by Sven Arvidsson
Modified: 2007-02-05 10:54 UTC
See Also:
GNOME target: ---
GNOME version: 2.13/2.14



Description Sven Arvidsson 2007-02-05 10:36:11 UTC
This bug was reported to the Debian BTS.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=409493

"The gconf gstreamer plugin has a notion of profile for audio output.
There is currently default/sounds, music and chat. While rhythmbox uses
the music profile, totem does use the default one.

I think it should use the music profile instead, see the musicaudiosink
key description from gconf: GStreamer audiosink for Music and Movies

Sounds exactly like what totem does, doesn't it ?"
Comment 1 Tim-Philipp Müller 2007-02-05 10:54:57 UTC
This is already the case in totem SVN trunk, see bacon_video_widget_new():

    audio_sink = gst_element_factory_make ("gconfaudiosink", "audio-sink");
    if (audio_sink == NULL) {
      g_warning ("Could not create element 'gconfaudiosink'");
      /* Try to fallback on autoaudiosink */
      audio_sink = gst_element_factory_make ("autoaudiosink", "audio-sink");
    } else {
      /* set the profile property on the gconfaudiosink to "music and movies" */
      if (g_object_class_find_property (G_OBJECT_GET_CLASS (audio_sink), "profile"))
        g_object_set (G_OBJECT (audio_sink), "profile", 1, NULL);
    }


Fixed by this commit:

 2006-11-26  Bastien Nocera  <hadess@hadess.net>

        * src/backend/bacon-video-widget-gst-0.10.c:
        (bacon_video_widget_new): Set the profile property on the audio sink
        so it respects the GNOME settings for audio output