[vlc-commits] [Git][videolan/vlc][master] mp4: fix format string

Jean-Baptiste Kempf (@jbk) gitlab at videolan.org
Mon Apr 3 15:19:44 UTC 2023



Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC


Commits:
dc397a76 by Rémi Denis-Courmont at 2023-04-03T14:56:21+00:00
mp4: fix format string

The 3rd formatted value has a type of vlc_tick_t, a.k.a. int64_t,
not necessary long.

- - - - -


1 changed file:

- modules/demux/mp4/mp4.c


Changes:

=====================================
modules/demux/mp4/mp4.c
=====================================
@@ -1854,7 +1854,8 @@ static int Seek( demux_t *p_demux, vlc_tick_t i_date, bool b_accurate )
         }
     }
 
-    msg_Dbg( p_demux, "seeking with %"PRId64 "ms %s to %ld", MS_FROM_VLC_TICK(i_date - i_start),
+    msg_Dbg( p_demux, "seeking with %"PRId64 "ms %s to %"PRId64,
+             MS_FROM_VLC_TICK(i_date - i_start),
             !b_accurate ? "alignment" : "preroll (use input-fast-seek to avoid)", i_date );
 
     for( i_track = 0; i_track < p_sys->i_tracks; i_track++ )



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/dc397a76c1a8ff536c82050074c21b5418c856de

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/dc397a76c1a8ff536c82050074c21b5418c856de
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list