[vlc-commits] demux:mkv: log the position we'll ignore blocks from
Steve Lhomme
git at videolan.org
Wed Feb 14 16:48:10 CET 2018
vlc/vlc-3.0 | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Wed Feb 14 09:26:40 2018 +0100| [05e32ec4dd3b4ae01090be46b407948b6edb2750] | committer: Hugo Beauzée-Luyssen
demux:mkv: log the position we'll ignore blocks from
(cherry picked from commit 7f53a24527edc5a07b815bab7f189c0b2847f1f2)
Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=05e32ec4dd3b4ae01090be46b407948b6edb2750
---
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 7ccd716b9b..7b49b4889f 100644
--- a/modules/demux/mkv/matroska_segment.cpp
+++ b/modules/demux/mkv/matroska_segment.cpp
@@ -888,8 +888,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