[vlc-devel] [PATCH 1/2] demux:mkv: don't invalid the cues just because we don't use the extra information
Steve Lhomme
robux4 at videolabs.io
Fri Aug 4 14:29:02 CEST 2017
---
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 8cbe84eb7a..7bca3ed880 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 ) )
{
--
2.12.1
More information about the vlc-devel
mailing list