mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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.
This commit is contained in:
parent
6ac4353319
commit
11270123e9
2 changed files with 30 additions and 3 deletions
27
ChangeLog
27
ChangeLog
|
@ -1,3 +1,30 @@
|
|||
2004-01-07 Julien MOUTTE,,, <julien@moutte.net>
|
||||
|
||||
* 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.
|
||||
|
||||
2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue