From 78c784d25bf6992cc9c36b1725b08c328d35d2bc Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Fri, 1 Oct 2004 13:30:09 +0000 Subject: [PATCH] ext/dvdnav/dvdnavsrc.c: Don't use g_print(); use GST_DEBUG(). Original commit message from CVS: * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event): Don't use g_print(); use GST_DEBUG(). --- ChangeLog | 5 +++++ ext/dvdnav/dvdnavsrc.c | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1acd382..76f5018 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2004-10-01 Ronald S. Bultje + * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event): + Don't use g_print(); use GST_DEBUG(). + +2004-10-01 Ronald S. Bultje + * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer), (gst_ogg_mux_queue_pads): Handle EOS properly. diff --git a/ext/dvdnav/dvdnavsrc.c b/ext/dvdnav/dvdnavsrc.c index 1611871..5759881 100644 --- a/ext/dvdnav/dvdnavsrc.c +++ b/ext/dvdnav/dvdnavsrc.c @@ -1190,8 +1190,7 @@ dvdnavsrc_make_dvd_nav_packet_event (DVDNavSrc * src, const pci_t * pci) { GstEvent *event; GstStructure *structure; - GValue start_ptm = { 0 }, end_ptm = - { + GValue start_ptm = { 0 }, end_ptm = { 0}; /* Store the time values in GValues. */ @@ -1631,7 +1630,7 @@ dvdnav_handle_navigation_event (DVDNavSrc * src, GstEvent * event) const char *key = gst_structure_get_string (structure, "key"); g_assert (key != NULL); - g_print ("dvdnavsrc got a keypress: %s", key); + GST_DEBUG ("dvdnavsrc got a keypress: %s", key); } else if (strcmp (event_type, "mouse-move") == 0) { double x, y; -- 2.7.4