mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
11 lines
248 B
C
11 lines
248 B
C
|
#include "gconf.h"
|
||
|
|
||
|
int
|
||
|
main (int argc, char *argv[])
|
||
|
{
|
||
|
printf ("Default video sink : %s\n",
|
||
|
gst_gconf_get_string ("default/videosink"));
|
||
|
printf ("Default audio sink : %s\n",
|
||
|
gst_gconf_get_string ("default/audiosink"));
|
||
|
}
|