vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Sun Jul 20 21:34:49 2014 +0200| [b243e3b69d219258e5a5a316b170ad0f3d6dcfc7] | committer: Jean-Baptiste Kempf
PS: display the length in seconds > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b243e3b69d219258e5a5a316b170ad0f3d6dcfc7 --- modules/demux/ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/demux/ps.c b/modules/demux/ps.c index 89ed268..361d529 100644 --- a/modules/demux/ps.c +++ b/modules/demux/ps.c @@ -274,7 +274,7 @@ static void FindLength( demux_t *p_demux ) { p_sys->i_length = i_length; p_sys->i_time_track = i; - msg_Dbg( p_demux, "we found a length of: %"PRId64, p_sys->i_length ); + msg_Dbg( p_demux, "we found a length of: %"PRId64 "s", p_sys->i_length / CLOCK_FREQ ); } } } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
