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

Steve Lhomme (@robUx4) gitlab at videolan.org
Sat Sep 6 11:09:14 UTC 2025



Steve Lhomme pushed to branch master at VideoLAN / VLC


Commits:
9d1342e3 by Tristan Matthews at 2025-09-06T09:38:37+00:00
demux: mkv: fix formatting of debug info

- - - - -


1 changed file:

- modules/demux/mkv/matroska_segment_parse.cpp


Changes:

=====================================
modules/demux/mkv/matroska_segment_parse.cpp
=====================================
@@ -403,13 +403,13 @@ void matroska_segment_c::ParseTrackEntry( const KaxTrackEntry *m )
         E_CASE( KaxCodecDelay, codecdelay )
         {
             vars.tk->i_codec_delay = VLC_TICK_FROM_NS(static_cast<uint64_t>( codecdelay ));
-            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 = VLC_TICK_FROM_NS(static_cast<uint64_t>( spr ));
-            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/9d1342e3952c52842761efd279f4cf0bf419fce6

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