[vlc-commits] demux:mkv: don't invalid the cues just because we don't use the extra information
Steve Lhomme
git at videolan.org
Sun Aug 6 22:26:06 CEST 2017
vlc | branch: master | Steve Lhomme <robUx4 at videolabs.io> | Fri Aug 4 14:29:02 2017 +0200| [f93e947f0df24e19bfb5b5a55ad70537ec3ffb1f] | committer: Jean-Baptiste Kempf
demux:mkv: don't invalid the cues just because we don't use the extra information
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f93e947f0df24e19bfb5b5a55ad70537ec3ffb1f
---
modules/demux/mkv/matroska_segment.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/demux/mkv/matroska_segment.cpp b/modules/demux/mkv/matroska_segment.cpp
index aa61878ba2..b4e7c06834 100644
--- a/modules/demux/mkv/matroska_segment.cpp
+++ b/modules/demux/mkv/matroska_segment.cpp
@@ -168,15 +168,15 @@ void matroska_segment_c::LoadCues( KaxCues *cues )
#if LIBMATROSKA_VERSION >= 0x010401
else if( MKV_IS_ID( el, KaxCueRelativePosition ) )
{
- b_invalid_cue = true; // since we do not support this type of cue: IGNORE
+ // IGNORE
}
else if( MKV_IS_ID( el, KaxCueBlockNumber ) )
{
- b_invalid_cue = true; // since we do not support this type of cue: IGNORE
+ // IGNORE
}
else if( MKV_IS_ID( el, KaxCueReference ) )
{
- b_invalid_cue = true; // since we do not support this type of cue: IGNORE
+ // IGNORE
}
else if( MKV_IS_ID( el, KaxCueDuration ) )
{
More information about the vlc-commits
mailing list