mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
a no-brainer addition
Original commit message from CVS: a no-brainer addition
This commit is contained in:
parent
1496394c0f
commit
8bca9f16bb
3 changed files with 40 additions and 0 deletions
|
@ -167,6 +167,40 @@ gst_gconf_get_default_video_sink (void)
|
|||
return ret;
|
||||
}
|
||||
|
||||
GstElement *
|
||||
gst_gconf_get_default_audio_src (void)
|
||||
{
|
||||
GstElement *ret = gst_gconf_render_bin_from_key ("default/audiosrc");
|
||||
|
||||
if (!ret) {
|
||||
ret = gst_element_factory_make ("osssrc", NULL);
|
||||
|
||||
if (!ret)
|
||||
g_warning ("No GConf default audio src key and osssrc doesn't work");
|
||||
else
|
||||
g_warning ("GConf audio src not found, using osssrc");
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
GstElement *
|
||||
gst_gconf_get_default_video_src (void)
|
||||
{
|
||||
GstElement *ret = gst_gconf_render_bin_from_key ("default/videosrc");
|
||||
|
||||
if (!ret) {
|
||||
ret = gst_element_factory_make ("videotestsrc", NULL);
|
||||
|
||||
if (!ret)
|
||||
g_warning ("No GConf default video src key and videotestrc doesn't work");
|
||||
else
|
||||
g_warning ("GConf video src not found, using videotestrc");
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
plugin_init (GModule *module, GstPlugin *plugin)
|
||||
{
|
||||
|
|
|
@ -17,6 +17,8 @@ GstElement * gst_gconf_render_bin_from_description (const gchar *description);
|
|||
|
||||
GstElement * gst_gconf_get_default_video_sink (void);
|
||||
GstElement * gst_gconf_get_default_audio_sink (void);
|
||||
GstElement * gst_gconf_get_default_video_src (void);
|
||||
GstElement * gst_gconf_get_default_audio_src (void);
|
||||
|
||||
/*
|
||||
guint gst_gconf_notify_add (const gchar *key,
|
||||
|
|
|
@ -7,5 +7,9 @@ main (int argc, char *argv[])
|
|||
gst_gconf_get_string ("default/videosink"));
|
||||
printf ("Default audio sink : %s\n",
|
||||
gst_gconf_get_string ("default/audiosink"));
|
||||
printf ("Default video src : %s\n",
|
||||
gst_gconf_get_string ("default/videosrc"));
|
||||
printf ("Default audio src : %s\n",
|
||||
gst_gconf_get_string ("default/audiosrc"));
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue