diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2014-07-03 19:52:42 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2014-07-03 19:52:42 +0100 |
commit | fc6fa3f16a9f98e477442dd2630602e6ddffe266 (patch) | |
tree | ce8e80f25979425dfe244a38f19e37f52b49f76e | |
parent | 99f670d8bcecc5286ceaeca8a3fb925d746b21ac (diff) |
examples: print 'stream ready at url' for mp4 and ogg example
-rw-r--r-- | examples/test-mp4.c | 1 | ||||
-rw-r--r-- | examples/test-ogg.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/examples/test-mp4.c b/examples/test-mp4.c index b69c7cd..52e082d 100644 --- a/examples/test-mp4.c +++ b/examples/test-mp4.c @@ -69,6 +69,7 @@ main (int argc, char *argv[]) gst_rtsp_server_attach (server, NULL); /* start serving */ + g_print ("stream ready at rtsp://127.0.0.1:8554/test\n"); g_main_loop_run (loop); return 0; diff --git a/examples/test-ogg.c b/examples/test-ogg.c index 5e844ad..f4d104c 100644 --- a/examples/test-ogg.c +++ b/examples/test-ogg.c @@ -69,6 +69,7 @@ main (int argc, char *argv[]) gst_rtsp_server_attach (server, NULL); /* start serving */ + g_print ("stream ready at rtsp://127.0.0.1:8554/test\n"); g_main_loop_run (loop); return 0; |