diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2003-12-19 14:39:03 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2003-12-19 14:39:03 +0000 |
commit | 124bfb7e3c0f54b4a4a2250271ab694ed4875c6d (patch) | |
tree | 5b5ef8dce5aabcae6eb8a70d127b9bba3e5f47ba /tests | |
parent | 9e40c6c9205bc6e201d94ebf696f53f5a393eeb2 (diff) |
superfluous space segregation
Original commit message from CVS:
superfluous space segregation
Diffstat (limited to 'tests')
-rw-r--r-- | tests/old/examples/gstplay/player.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/old/examples/gstplay/player.c b/tests/old/examples/gstplay/player.c index 846d58ac5..41fbb5461 100644 --- a/tests/old/examples/gstplay/player.c +++ b/tests/old/examples/gstplay/player.c @@ -107,7 +107,7 @@ main (int argc, char *argv[]) g_print ("usage: %s <video filename>\n", argv[0]); exit (-1); } - + loop = g_main_loop_new (NULL, FALSE); /* Creating the GstPlay object */ @@ -118,18 +118,18 @@ main (int argc, char *argv[]) video_sink = gst_element_factory_make ("xvimagesink", "video_sink"); vis_element = gst_element_factory_make ("goom", "vis_element"); data_src = gst_element_factory_make ("gnomevfssrc", "source"); - + /* Let's send them to GstPlay object */ gst_play_set_audio_sink (play, audio_sink); gst_play_set_video_sink (play, video_sink); gst_play_set_data_src (play, data_src); gst_play_set_visualization (play, vis_element); - + /* Setting location we want to play */ gst_play_set_location (play, argv[1]); /* gst_xml_write_file (GST_ELEMENT (play), stdout); */ - + g_signal_connect (G_OBJECT (play), "time_tick", G_CALLBACK (got_time_tick), NULL); g_signal_connect (G_OBJECT (play), "stream_length", @@ -140,13 +140,13 @@ main (int argc, char *argv[]) G_CALLBACK (got_found_tag), NULL); g_signal_connect (G_OBJECT (play), "eos", G_CALLBACK (got_eos), NULL); - + /* Change state to PLAYING */ gst_element_set_state (GST_ELEMENT (play), GST_STATE_PLAYING); g_idle_add ((GSourceFunc) idle_iterate, play); g_timeout_add (20000, (GSourceFunc) seek_timer, play); - + g_main_loop_run (loop); /* unref */ |