mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
57c5738eb4
Original commit message from CVS: Fix warning
11 lines
260 B
C
11 lines
260 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"));
|
|
return 0;
|
|
}
|