[vlc-commits] MKV: don't shout in debug messages for Chapters

Jean-Baptiste Kempf git at videolan.org
Thu Dec 22 19:50:19 CET 2016


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Dec 22 19:50:02 2016 +0100| [189a70a31092fd7f3a2249e7b3aca2ef1f2135ec] | committer: Jean-Baptiste Kempf

MKV: don't shout in debug messages for Chapters

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

 modules/demux/mkv/virtual_segment.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/demux/mkv/virtual_segment.cpp b/modules/demux/mkv/virtual_segment.cpp
index 823f6d5..6d1863b 100644
--- a/modules/demux/mkv/virtual_segment.cpp
+++ b/modules/demux/mkv/virtual_segment.cpp
@@ -448,7 +448,7 @@ bool virtual_segment_c::UpdateCurrentToChapter( demux_t & demux )
     /* we have moved to a new chapter */
     if ( p_cur_vchapter != NULL && p_current_vchapter != p_cur_vchapter )
         {
-            msg_Dbg( &demux, "NEW CHAPTER %" PRId64 " uid=%" PRId64, sys.i_pts - VLC_TS_0, p_cur_vchapter->p_chapter->i_uid );
+            msg_Dbg( &demux, "New Chapter %" PRId64 " uid=%" PRIu64, sys.i_pts - VLC_TS_0, p_cur_vchapter->p_chapter->i_uid );
             if ( p_cur_vedition->b_ordered )
             {
                 /* FIXME EnterAndLeave has probably been broken for a long time */



More information about the vlc-commits mailing list