From: Zaheer Abbas Merali Date: Mon, 9 Oct 2006 10:14:28 +0000 (+0000) Subject: libs/gst/net/gstnetclientclock.c: Remove local debugging system and use Gstreamer... X-Git-Tag: RELEASE-0_10_11~83 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6591766cee06066b9f685a328a88744a019826ba;p=platform%2Fupstream%2Fgstreamer.git libs/gst/net/gstnetclientclock.c: Remove local debugging system and use Gstreamer's instead. Original commit message from CVS: 2006-10-09 Zaheer Abbas Merali * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_thread): Remove local debugging system and use Gstreamer's instead. --- diff --git a/ChangeLog b/ChangeLog index ad54986..9667760 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2006-10-09 Zaheer Abbas Merali + * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_thread): + Remove local debugging system and use Gstreamer's instead. + +2006-10-09 Zaheer Abbas Merali + Patch by: Josep Torre Valles * common/m4/gst-error.m4: diff --git a/libs/gst/net/gstnetclientclock.c b/libs/gst/net/gstnetclientclock.c index 90137cd..895175b 100644 --- a/libs/gst/net/gstnetclientclock.c +++ b/libs/gst/net/gstnetclientclock.c @@ -58,14 +58,6 @@ GST_DEBUG_CATEGORY_STATIC (ncc_debug); #define GST_CAT_DEFAULT (ncc_debug) -/* #define DEBUGGING_ENABLED */ - -#ifdef DEBUGGING_ENABLED -#define DEBUG(x, args...) g_print (x "\n", ##args) -#else -#define DEBUG(x, args...) /* nop */ -#endif - /* the select call is also performed on the control sockets, that way * we can send special commands to unblock or restart the select call */ #define CONTROL_RESTART 'R' /* restart the select call */ @@ -389,7 +381,7 @@ gst_net_client_clock_thread (gpointer data) break; } - DEBUG ("control message: '%c'", command); + GST_LOG_OBJECT (self, "control message: '%c'", command); switch (command) { case CONTROL_STOP: /* break out of the select loop */ @@ -407,13 +399,13 @@ gst_net_client_clock_thread (gpointer data) continue; } else if (ret == 0) { /* timed out, let's send another packet */ - DEBUG ("timed out %c", 0x32); + GST_DEBUG_OBJECT (self, "timed out"); packet = gst_net_time_packet_new (NULL); packet->local_time = gst_clock_get_internal_time (GST_CLOCK (self)); - DEBUG ("sending packet, local time = %" GST_TIME_FORMAT, + GST_DEBUG_OBJECT (self, "sending packet, local time = %" GST_TIME_FORMAT, GST_TIME_ARGS (packet->local_time)); gst_net_time_packet_send (packet, self->sock, (struct sockaddr *) self->servaddr, sizeof (struct sockaddr_in)); @@ -434,10 +426,13 @@ gst_net_client_clock_thread (gpointer data) if (!packet) goto receive_error; - DEBUG ("got packet back %c", 0x32); - DEBUG ("local_1 = %" GST_TIME_FORMAT, GST_TIME_ARGS (packet->local_time)); - DEBUG ("remote = %" GST_TIME_FORMAT, GST_TIME_ARGS (packet->remote_time)); - DEBUG ("local_2 = %" GST_TIME_FORMAT, GST_TIME_ARGS (new_local)); + GST_LOG_OBJECT (self, "got packet back"); + GST_LOG_OBJECT (self, "local_1 = %" GST_TIME_FORMAT, + GST_TIME_ARGS (packet->local_time)); + GST_LOG_OBJECT (self, "remote = %" GST_TIME_FORMAT, + GST_TIME_ARGS (packet->remote_time)); + GST_LOG_OBJECT (self, "local_2 = %" GST_TIME_FORMAT, + GST_TIME_ARGS (new_local)); /* observe_times will reset the timeout */ gst_net_client_clock_observe_times (self, packet->local_time,