summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJulien Moutte <julien@moutte.net>2004-01-07 15:33:41 +0000
committerJulien Moutte <julien@moutte.net>2004-01-07 15:33:41 +0000
commit11270123e97c3bee109febd820fcde74b9e6590e (patch)
tree968595eb56726ed315f70cbe2ecf066a184b2092 /examples
parent6ac43533191e2dbd8fce778344e14dae46caa09b (diff)
examples/gstplay/player.c: Adding some new lines in g_print calls.
Original commit message from CVS: * examples/gstplay/player.c: (got_time_tick), (got_stream_length), (got_video_size): Adding some new lines in g_print calls. * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize), (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate), (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state), (gst_ximagesink_chain), (gst_ximagesink_buffer_new), (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size): Complete code review, reverting some stuff i disagree with, adding some fixes : time synchronization on invalid timestamps, renegotiation of private window. * sys/ximage/ximagesink.h: * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy), (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get), (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect), (gst_xvimagesink_change_state), (gst_xvimagesink_chain), (gst_xvimagesink_buffer_new), (gst_xvimagesink_navigation_send_event), (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_get_desired_size), (gst_xvimagesink_xoverlay_init): Complete code review, reverting some stuff i disagree with, adding some fixes : Renegotiation of private window, implementing get_desired_size.
Diffstat (limited to 'examples')
-rw-r--r--examples/gstplay/player.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/gstplay/player.c b/examples/gstplay/player.c
index 76a735fc..5d4f2466 100644
--- a/examples/gstplay/player.c
+++ b/examples/gstplay/player.c
@@ -58,20 +58,20 @@ got_found_tag (GstPlay *play,GstElement *source, GstTagList *tag_list)
static void
got_time_tick (GstPlay *play, gint64 time_nanos)
{
- g_print ("time tick %llu", time_nanos);
+ g_print ("time tick %llu\n", time_nanos);
}
static void
got_stream_length (GstPlay *play, gint64 length_nanos)
{
- g_print ("got length %llu", length_nanos);
+ g_print ("got length %llu\n", length_nanos);
length = length_nanos;
}
static void
got_video_size (GstPlay *play, gint width, gint height)
{
- g_print ("got video size %d, %d", width, height);
+ g_print ("got video size %d, %d\n", width, height);
}
static void