mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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:
parent
deb6b920b0
commit
78c784d25b
2 changed files with 7 additions and 3 deletions
|
@ -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>
|
2004-10-01 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
|
* ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
|
||||||
|
|
|
@ -1190,8 +1190,7 @@ dvdnavsrc_make_dvd_nav_packet_event (DVDNavSrc * src, const pci_t * pci)
|
||||||
{
|
{
|
||||||
GstEvent *event;
|
GstEvent *event;
|
||||||
GstStructure *structure;
|
GstStructure *structure;
|
||||||
GValue start_ptm = { 0 }, end_ptm =
|
GValue start_ptm = { 0 }, end_ptm = {
|
||||||
{
|
|
||||||
0};
|
0};
|
||||||
|
|
||||||
/* Store the time values in GValues. */
|
/* 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");
|
const char *key = gst_structure_get_string (structure, "key");
|
||||||
|
|
||||||
g_assert (key != NULL);
|
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) {
|
} else if (strcmp (event_type, "mouse-move") == 0) {
|
||||||
double x, y;
|
double x, y;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue