[vlc-commits] demux:mkv: log the position we'll ignore blocks from

Steve Lhomme git at videolan.org
Wed Feb 14 13:46:15 CET 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Feb 14 09:26:40 2018 +0100| [7f53a24527edc5a07b815bab7f189c0b2847f1f2] | committer: Steve Lhomme

demux:mkv: log the position we'll ignore blocks from

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

 modules/demux/mkv/matroska_segment.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/demux/mkv/matroska_segment.cpp b/modules/demux/mkv/matroska_segment.cpp
index 512a948526..16040bbecc 100644
--- a/modules/demux/mkv/matroska_segment.cpp
+++ b/modules/demux/mkv/matroska_segment.cpp
@@ -866,8 +866,8 @@ bool matroska_segment_c::InternalSeek( demux_t &demuxer, mtime_t i_absolute_mk_d
             trackit->second->i_skip_until_fpos = -1;
         trackit->second->i_last_dts        = it->second.pts;
 
-        msg_Dbg( &sys.demuxer, "seek: preroll{ track: %u, pts: %" PRId64 ", fpos: %" PRIu64 " } ",
-          it->first, it->second.pts, it->second.fpos );
+        msg_Dbg( &sys.demuxer, "seek: preroll{ track: %u, pts: %" PRId64 ", fpos: %" PRIu64 " skip: %" PRIu64 "} ",
+          it->first, it->second.pts, it->second.fpos, trackit->second->i_skip_until_fpos );
     }
 
     // propogate seek information //



More information about the vlc-commits mailing list