2005-07-20 09:58:52 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2002> Thomas Vander Stichele <thomas@apestaart.org>
|
2006-02-17 10:53:38 +00:00
|
|
|
* Copyright (C) <2006> Jürg Billeter <j@bitron.ch>
|
2005-07-20 09:58:52 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* this library handles interaction with GConf
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gconf.h"
|
|
|
|
|
|
|
|
#ifndef GST_GCONF_DIR
|
|
|
|
#error "GST_GCONF_DIR is not defined !"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static GConfClient *_gst_gconf_client = NULL; /* GConf connection */
|
|
|
|
|
|
|
|
|
|
|
|
/* internal functions */
|
|
|
|
|
|
|
|
static GConfClient *
|
|
|
|
gst_gconf_get_client (void)
|
|
|
|
{
|
|
|
|
if (!_gst_gconf_client)
|
|
|
|
_gst_gconf_client = gconf_client_get_default ();
|
|
|
|
|
|
|
|
return _gst_gconf_client;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* external functions */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gconf_get_string:
|
|
|
|
* @key: a #gchar corresponding to the key you want to get.
|
|
|
|
*
|
|
|
|
* Get GConf key @key's string value.
|
|
|
|
*
|
|
|
|
* Returns: a newly allocated #gchar string containing @key's value,
|
|
|
|
* or NULL in the case of an error..
|
|
|
|
*/
|
|
|
|
gchar *
|
|
|
|
gst_gconf_get_string (const gchar * key)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
gchar *value = NULL;
|
|
|
|
gchar *full_key = g_strdup_printf ("%s/%s", GST_GCONF_DIR, key);
|
|
|
|
|
|
|
|
|
|
|
|
value = gconf_client_get_string (gst_gconf_get_client (), full_key, &error);
|
|
|
|
g_free (full_key);
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
g_warning ("gst_gconf_get_string: error: %s\n", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gconf_set_string:
|
|
|
|
* @key: a #gchar corresponding to the key you want to set.
|
|
|
|
* @value: a #gchar containing key value.
|
|
|
|
*
|
|
|
|
* Set GConf key @key to string value @value.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_gconf_set_string (const gchar * key, const gchar * value)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
gchar *full_key = g_strdup_printf ("%s/%s", GST_GCONF_DIR, key);
|
|
|
|
|
|
|
|
gconf_client_set_string (gst_gconf_get_client (), full_key, value, &error);
|
|
|
|
if (error) {
|
|
|
|
GST_ERROR ("gst_gconf_set_string: error: %s\n", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
g_free (full_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gconf_render_bin_from_key:
|
|
|
|
* @key: a #gchar string corresponding to a GConf key.
|
|
|
|
*
|
|
|
|
* Render bin from GConf key @key.
|
|
|
|
*
|
|
|
|
* Returns: a #GstElement containing the rendered bin.
|
|
|
|
*/
|
|
|
|
GstElement *
|
|
|
|
gst_gconf_render_bin_from_key (const gchar * key)
|
|
|
|
{
|
|
|
|
GstElement *bin = NULL;
|
|
|
|
gchar *value;
|
|
|
|
|
|
|
|
value = gst_gconf_get_string (key);
|
2006-02-02 10:47:15 +00:00
|
|
|
if (value) {
|
|
|
|
GError *err = NULL;
|
|
|
|
|
|
|
|
bin = gst_parse_bin_from_description (value, TRUE, &err);
|
|
|
|
if (err) {
|
|
|
|
GST_ERROR ("gconf: error creating bin '%s': %s", value, err->message);
|
|
|
|
g_error_free (err);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (value);
|
|
|
|
}
|
2005-07-20 09:58:52 +00:00
|
|
|
return bin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gconf_get_default_audio_sink:
|
2006-02-17 10:53:38 +00:00
|
|
|
* @profile: the appropriate application profile.
|
2005-07-20 09:58:52 +00:00
|
|
|
*
|
|
|
|
* Render audio output bin from GStreamer GConf key : "default/audiosink".
|
|
|
|
* If key is invalid, the default audio sink for the platform is used
|
|
|
|
* (typically osssink or sunaudiosink).
|
|
|
|
*
|
|
|
|
* Returns: a #GstElement containing the audio output bin, or NULL if
|
|
|
|
* everything failed.
|
|
|
|
*/
|
|
|
|
GstElement *
|
2006-02-17 10:53:38 +00:00
|
|
|
gst_gconf_get_default_audio_sink (int profile)
|
2005-07-20 09:58:52 +00:00
|
|
|
{
|
2006-02-17 10:53:38 +00:00
|
|
|
GstElement *ret;
|
|
|
|
gchar *key;
|
|
|
|
const gchar *profile_string;
|
|
|
|
|
|
|
|
switch (profile) {
|
|
|
|
case GCONF_PROFILE_SOUNDS:
|
|
|
|
profile_string = "";
|
|
|
|
break;
|
|
|
|
case GCONF_PROFILE_MUSIC:
|
|
|
|
profile_string = "music";
|
|
|
|
break;
|
|
|
|
case GCONF_PROFILE_CHAT:
|
|
|
|
profile_string = "chat";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_return_val_if_reached (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
key = g_strdup_printf ("default/%saudiosink", profile_string);
|
|
|
|
|
|
|
|
ret = gst_gconf_render_bin_from_key (key);
|
|
|
|
g_free (key);
|
2005-07-20 09:58:52 +00:00
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
ret = gst_element_factory_make (DEFAULT_AUDIOSINK, NULL);
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
g_warning ("No GConf default audio sink key and %s doesn't work",
|
|
|
|
DEFAULT_AUDIOSINK);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gconf_get_default_video_sink:
|
|
|
|
*
|
|
|
|
* Render video output bin from GStreamer GConf key : "default/videosink".
|
Port auto/gconfsinks to 0.9. They actually appear to work here in
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/gconf/Makefile.am:
* ext/gconf/gconf.c: (gst_bin_find_unconnected_pad),
(gst_gconf_render_bin_from_description),
(gst_gconf_get_default_video_sink):
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
(gst_gconf_audio_sink_class_init), (gst_gconf_audio_sink_dispose),
(cb_toggle_element), (gst_gconf_audio_sink_change_state):
* ext/gconf/gstgconfelements.h:
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
(gst_gconf_video_sink_class_init), (gst_gconf_video_sink_dispose),
(cb_toggle_element), (gst_gconf_video_sink_change_state):
* gst/autodetect/gstautoaudiosink.c:
(gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
(gst_auto_audio_sink_detect), (gst_auto_audio_sink_change_state):
* gst/autodetect/gstautovideosink.c:
(gst_auto_video_sink_base_init), (gst_auto_video_sink_class_init),
(gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
Port auto/gconfsinks to 0.9. They actually appear to work here in
Totem as well, making them actually useful.
2005-07-20 10:07:10 +00:00
|
|
|
* If key is invalid, the default video sink for the platform is used
|
|
|
|
* (typically xvimagesink or ximagesink).
|
2005-07-20 09:58:52 +00:00
|
|
|
*
|
|
|
|
* Returns: a #GstElement containing the video output bin, or NULL if
|
|
|
|
* everything failed.
|
|
|
|
*/
|
|
|
|
GstElement *
|
|
|
|
gst_gconf_get_default_video_sink (void)
|
|
|
|
{
|
ext/gconf/: Ignore changing the GConf key to "". Ignore GConf key updates that don't actually change the string.
Original commit message from CVS:
* ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
(gst_gconf_get_default_video_sink),
(gst_gconf_get_default_audio_src),
(gst_gconf_get_default_video_src):
* ext/gconf/gconf.h:
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
(gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
(do_toggle_element):
* ext/gconf/gstgconfaudiosink.h:
* ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
(gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
(do_toggle_element):
* ext/gconf/gstgconfaudiosrc.h:
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
(gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
(do_toggle_element):
* ext/gconf/gstgconfvideosink.h:
* ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
(gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
(do_toggle_element):
* ext/gconf/gstgconfvideosrc.h:
Ignore changing the GConf key to "". Ignore GConf key updates
that don't actually change the string.
For now, ignore the GConf key when the state is > READY, as
it breaks streaming. Sometime it will be nice to bring the
new sink online even mid-stream, by sending NEWSEGMENT info
and possibly prerolling.
(Fixes #326736)
2006-02-05 22:22:56 +00:00
|
|
|
GstElement *ret = gst_gconf_render_bin_from_key (GST_GCONF_VIDEOSINK_KEY);
|
2005-07-20 09:58:52 +00:00
|
|
|
|
|
|
|
if (!ret) {
|
Port auto/gconfsinks to 0.9. They actually appear to work here in
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/gconf/Makefile.am:
* ext/gconf/gconf.c: (gst_bin_find_unconnected_pad),
(gst_gconf_render_bin_from_description),
(gst_gconf_get_default_video_sink):
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
(gst_gconf_audio_sink_class_init), (gst_gconf_audio_sink_dispose),
(cb_toggle_element), (gst_gconf_audio_sink_change_state):
* ext/gconf/gstgconfelements.h:
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
(gst_gconf_video_sink_class_init), (gst_gconf_video_sink_dispose),
(cb_toggle_element), (gst_gconf_video_sink_change_state):
* gst/autodetect/gstautoaudiosink.c:
(gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
(gst_auto_audio_sink_detect), (gst_auto_audio_sink_change_state):
* gst/autodetect/gstautovideosink.c:
(gst_auto_video_sink_base_init), (gst_auto_video_sink_class_init),
(gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
Port auto/gconfsinks to 0.9. They actually appear to work here in
Totem as well, making them actually useful.
2005-07-20 10:07:10 +00:00
|
|
|
ret = gst_element_factory_make (DEFAULT_VIDEOSINK, NULL);
|
2005-07-20 09:58:52 +00:00
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
g_warning ("No GConf default video sink key and %s doesn't work",
|
|
|
|
DEFAULT_VIDEOSINK);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gconf_get_default_audio_src:
|
|
|
|
*
|
|
|
|
* Render audio acquisition bin from GStreamer GConf key : "default/audiosrc".
|
Port auto/gconfsinks to 0.9. They actually appear to work here in
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/gconf/Makefile.am:
* ext/gconf/gconf.c: (gst_bin_find_unconnected_pad),
(gst_gconf_render_bin_from_description),
(gst_gconf_get_default_video_sink):
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_base_init),
(gst_gconf_audio_sink_class_init), (gst_gconf_audio_sink_dispose),
(cb_toggle_element), (gst_gconf_audio_sink_change_state):
* ext/gconf/gstgconfelements.h:
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_base_init),
(gst_gconf_video_sink_class_init), (gst_gconf_video_sink_dispose),
(cb_toggle_element), (gst_gconf_video_sink_change_state):
* gst/autodetect/gstautoaudiosink.c:
(gst_auto_audio_sink_base_init), (gst_auto_audio_sink_class_init),
(gst_auto_audio_sink_detect), (gst_auto_audio_sink_change_state):
* gst/autodetect/gstautovideosink.c:
(gst_auto_video_sink_base_init), (gst_auto_video_sink_class_init),
(gst_auto_video_sink_find_best), (gst_auto_video_sink_detect):
Port auto/gconfsinks to 0.9. They actually appear to work here in
Totem as well, making them actually useful.
2005-07-20 10:07:10 +00:00
|
|
|
* If key is invalid, the default audio source for the plaform is used.
|
2005-07-20 09:58:52 +00:00
|
|
|
* (typically osssrc or sunaudiosrc).
|
|
|
|
*
|
|
|
|
* Returns: a #GstElement containing the audio source bin, or NULL if
|
|
|
|
* everything failed.
|
|
|
|
*/
|
|
|
|
GstElement *
|
|
|
|
gst_gconf_get_default_audio_src (void)
|
|
|
|
{
|
ext/gconf/: Ignore changing the GConf key to "". Ignore GConf key updates that don't actually change the string.
Original commit message from CVS:
* ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
(gst_gconf_get_default_video_sink),
(gst_gconf_get_default_audio_src),
(gst_gconf_get_default_video_src):
* ext/gconf/gconf.h:
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
(gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
(do_toggle_element):
* ext/gconf/gstgconfaudiosink.h:
* ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
(gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
(do_toggle_element):
* ext/gconf/gstgconfaudiosrc.h:
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
(gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
(do_toggle_element):
* ext/gconf/gstgconfvideosink.h:
* ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
(gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
(do_toggle_element):
* ext/gconf/gstgconfvideosrc.h:
Ignore changing the GConf key to "". Ignore GConf key updates
that don't actually change the string.
For now, ignore the GConf key when the state is > READY, as
it breaks streaming. Sometime it will be nice to bring the
new sink online even mid-stream, by sending NEWSEGMENT info
and possibly prerolling.
(Fixes #326736)
2006-02-05 22:22:56 +00:00
|
|
|
GstElement *ret = gst_gconf_render_bin_from_key (GST_GCONF_AUDIOSRC_KEY);
|
2005-07-20 09:58:52 +00:00
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
ret = gst_element_factory_make (DEFAULT_AUDIOSRC, NULL);
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
g_warning ("No GConf default audio src key and %s doesn't work",
|
|
|
|
DEFAULT_AUDIOSRC);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gconf_get_default_video_src:
|
|
|
|
*
|
|
|
|
* Render video acquisition bin from GStreamer GConf key :
|
|
|
|
* "default/videosrc". If key is invalid, the default video source
|
|
|
|
* for the platform is used (typically videotestsrc).
|
|
|
|
*
|
|
|
|
* Returns: a #GstElement containing the video source bin, or NULL if
|
|
|
|
* everything failed.
|
|
|
|
*/
|
|
|
|
GstElement *
|
|
|
|
gst_gconf_get_default_video_src (void)
|
|
|
|
{
|
ext/gconf/: Ignore changing the GConf key to "". Ignore GConf key updates that don't actually change the string.
Original commit message from CVS:
* ext/gconf/gconf.c: (gst_gconf_get_default_audio_sink),
(gst_gconf_get_default_video_sink),
(gst_gconf_get_default_audio_src),
(gst_gconf_get_default_video_src):
* ext/gconf/gconf.h:
* ext/gconf/gstgconfaudiosink.c: (gst_gconf_audio_sink_reset),
(gst_gconf_audio_sink_init), (gst_gconf_audio_sink_dispose),
(do_toggle_element):
* ext/gconf/gstgconfaudiosink.h:
* ext/gconf/gstgconfaudiosrc.c: (gst_gconf_audio_src_reset),
(gst_gconf_audio_src_init), (gst_gconf_audio_src_dispose),
(do_toggle_element):
* ext/gconf/gstgconfaudiosrc.h:
* ext/gconf/gstgconfvideosink.c: (gst_gconf_video_sink_reset),
(gst_gconf_video_sink_init), (gst_gconf_video_sink_dispose),
(do_toggle_element):
* ext/gconf/gstgconfvideosink.h:
* ext/gconf/gstgconfvideosrc.c: (gst_gconf_video_src_reset),
(gst_gconf_video_src_init), (gst_gconf_video_src_dispose),
(do_toggle_element):
* ext/gconf/gstgconfvideosrc.h:
Ignore changing the GConf key to "". Ignore GConf key updates
that don't actually change the string.
For now, ignore the GConf key when the state is > READY, as
it breaks streaming. Sometime it will be nice to bring the
new sink online even mid-stream, by sending NEWSEGMENT info
and possibly prerolling.
(Fixes #326736)
2006-02-05 22:22:56 +00:00
|
|
|
GstElement *ret = gst_gconf_render_bin_from_key (GST_GCONF_VIDEOSRC_KEY);
|
2005-07-20 09:58:52 +00:00
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
ret = gst_element_factory_make (DEFAULT_VIDEOSRC, NULL);
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
g_warning ("No GConf default video src key and %s doesn't work",
|
|
|
|
DEFAULT_VIDEOSRC);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_gconf_get_default_visualization_element:
|
|
|
|
*
|
|
|
|
* Render visualization bin from GStreamer GConf key : "default/visualization".
|
|
|
|
* If key is invalid, the default visualization element is used.
|
|
|
|
*
|
|
|
|
* Returns: a #GstElement containing the visualization bin, or NULL if
|
|
|
|
* everything failed.
|
|
|
|
*/
|
|
|
|
GstElement *
|
|
|
|
gst_gconf_get_default_visualization_element (void)
|
|
|
|
{
|
|
|
|
GstElement *ret = gst_gconf_render_bin_from_key ("default/visualization");
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
ret = gst_element_factory_make (DEFAULT_VISUALIZER, NULL);
|
|
|
|
|
|
|
|
if (!ret)
|
|
|
|
g_warning
|
|
|
|
("No GConf default visualization plugin key and %s doesn't work",
|
|
|
|
DEFAULT_VISUALIZER);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|