examples: Don't call gst_init() and gst_get_option_group()
authorSebastian Dröge <sebastian@centricular.com>
Sat, 17 Jan 2015 09:29:36 +0000 (10:29 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Sat, 17 Jan 2015 09:30:21 +0000 (10:30 +0100)
The latter calls the former at the appropriate time.

examples/test-launch.c
examples/test-mp4.c
examples/test-ogg.c
examples/test-uri.c

index 663391c..24e1271 100644 (file)
@@ -41,8 +41,6 @@ main (int argc, char *argv[])
   GOptionContext *optctx;
   GError *error = NULL;
 
-  gst_init (&argc, &argv);
-
   optctx = g_option_context_new ("<launch line> - Test RTSP Server, Launch\n\n"
       "Example: \"( videotestsrc ! x264enc ! rtph264pay name=pay0 pt=96 )\"");
   g_option_context_add_main_entries (optctx, entries, NULL);
index 3ca0060..263d122 100644 (file)
@@ -97,8 +97,6 @@ main (int argc, char *argv[])
   GError *error = NULL;
   gchar *str;
 
-  gst_init (&argc, &argv);
-
   optctx = g_option_context_new ("<filename.mp4> - Test RTSP Server, MP4");
   g_option_context_add_main_entries (optctx, entries, NULL);
   g_option_context_add_group (optctx, gst_init_get_option_group ());
index f3e26b4..c22e638 100644 (file)
@@ -42,8 +42,6 @@ main (int argc, char *argv[])
   GError *error = NULL;
   gchar *str;
 
-  gst_init (&argc, &argv);
-
   optctx = g_option_context_new ("<filename.ogg> - Test RTSP Server, OGG");
   g_option_context_add_main_entries (optctx, entries, NULL);
   g_option_context_add_group (optctx, gst_init_get_option_group ());
index fb6deb7..a5a3399 100644 (file)
@@ -68,8 +68,6 @@ main (int argc, char *argv[])
   GOptionContext *optctx;
   GError *error = NULL;
 
-  gst_init (&argc, &argv);
-
   optctx = g_option_context_new ("<uri> - Test RTSP Server, URI");
   g_option_context_add_main_entries (optctx, entries, NULL);
   g_option_context_add_group (optctx, gst_init_get_option_group ());