[vlc-devel] commit: modify logger-module rrd-output to use time for timestamp instead of mdate () (Ilkka Ollakka )

git version control git at videolan.org
Mon May 26 09:29:41 CEST 2008


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Tue May 20 16:23:35 2008 +0300| [44e62217a16765805c5a3ef8440375395d56e86c]

modify logger-module rrd-output to use time for timestamp instead of mdate()

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=44e62217a16765805c5a3ef8440375395d56e86c
---

 modules/misc/logger.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/modules/misc/logger.c b/modules/misc/logger.c
index eb06269..2cf84a7 100644
--- a/modules/misc/logger.c
+++ b/modules/misc/logger.c
@@ -86,6 +86,7 @@ struct intf_sys_t
     int i_mode;
     FILE *p_rrd;
     mtime_t last_update;
+    time_t now;  /* timestamp for rrd-log */
 
     FILE *    p_file; /* The log file */
     msg_subscription_t *p_sub;
@@ -442,6 +443,7 @@ static void DoRRD( intf_thread_t *p_intf )
 
     if( p_intf->p_libvlc->p_stats )
     {
+        time(&p_intf->p_sys->now);
         lldiv_t din = lldiv( p_intf->p_libvlc->p_stats->f_input_bitrate * 1000000,
                              1000 );
         lldiv_t ddm = lldiv( p_intf->p_libvlc->p_stats->f_demux_bitrate * 1000000,
@@ -450,7 +452,7 @@ static void DoRRD( intf_thread_t *p_intf )
                              1000 );
         fprintf( p_intf->p_sys->p_rrd,
                    "%"PRIi64":%lld.%03u:%lld.%03u:%lld.%03u\n",
-                   p_intf->p_sys->last_update/1000000,
+                   (uintmax_t)p_intf->p_sys->now,
                    din.quot, (unsigned int)din.rem,
                    ddm.quot, (unsigned int)ddm.rem,
                    dout.quot, (unsigned int)dout.rem );




More information about the vlc-devel mailing list