[vlc-commits] [Git][videolan/vlc][3.0.x] demux: mkv: fix formatting of debug info

Steve Lhomme (@robUx4) gitlab at videolan.org
Tue Sep 9 08:00:22 UTC 2025



Steve Lhomme pushed to branch 3.0.x at VideoLAN / VLC


Commits:
a9d69ddd by Tristan Matthews at 2025-09-09T07:12:55+00:00
demux: mkv: fix formatting of debug info

(cherry picked from commit 9d1342e3952c52842761efd279f4cf0bf419fce6) (rebased)
rebased:
- the code around doesn't use vlc_tick conversions

- - - - -


1 changed file:

- modules/demux/mkv/matroska_segment_parse.cpp


Changes:

=====================================
modules/demux/mkv/matroska_segment_parse.cpp
=====================================
@@ -391,13 +391,13 @@ void matroska_segment_c::ParseTrackEntry( const KaxTrackEntry *m )
         E_CASE( KaxCodecDelay, codecdelay )
         {
             vars.tk->i_codec_delay = static_cast<uint64_t>( codecdelay ) / 1000;
-            msg_Dbg( vars.p_demuxer, "|   |   |   + Track Codec Delay =%" PRIu64,
+            msg_Dbg( vars.p_demuxer, "|   |   |   + Track Codec Delay=%" PRIu64,
                      vars.tk->i_codec_delay );
         }
         E_CASE( KaxSeekPreRoll, spr )
         {
             vars.tk->i_seek_preroll = static_cast<uint64_t>( spr ) / 1000;
-            debug( vars, "Track Seek Preroll =%" PRIu64, vars.tk->i_seek_preroll );
+            debug( vars, "Track Seek Preroll=%" PRIu64, vars.tk->i_seek_preroll );
         }
 #endif
         E_CASE( KaxContentEncodings, cencs )



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

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/a9d69ddd923176f6722e2dcdd68d113198b463bf
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