diff --git a/ChangeLog b/ChangeLog index 1acd382a9c..76f5018d6f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +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), diff --git a/ext/dvdnav/dvdnavsrc.c b/ext/dvdnav/dvdnavsrc.c index 1611871931..57598817b3 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;