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().
This commit is contained in:
Ronald S. Bultje 2004-10-01 13:30:09 +00:00
parent deb6b920b0
commit 78c784d25b
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
Don't use g_print(); use GST_DEBUG().
2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),

View file

@ -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;