[vlc-commits] demux:mkv: multiple cues is not an error for VLC but in the file

Steve Lhomme git at videolan.org
Tue Feb 13 11:38:18 CET 2018


vlc/vlc-3.0 | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Feb 13 09:17:03 2018 +0100| [fd6c4c78d15c8f23f472de7d4cba79cbc78ba47a] | committer: Hugo Beauzée-Luyssen

demux:mkv: multiple cues is not an error for VLC but in the file

Only warn about it

(cherry picked from commit ade2e4e480921d6fcbe38ddf5bdf19608793f6ce)
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=fd6c4c78d15c8f23f472de7d4cba79cbc78ba47a
---

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

diff --git a/modules/demux/mkv/matroska_segment.cpp b/modules/demux/mkv/matroska_segment.cpp
index a8ebd8b76d..7ccd716b9b 100644
--- a/modules/demux/mkv/matroska_segment.cpp
+++ b/modules/demux/mkv/matroska_segment.cpp
@@ -96,7 +96,7 @@ void matroska_segment_c::LoadCues( KaxCues *cues )
 
     if( b_cues )
     {
-        msg_Err( &sys.demuxer, "There can be only 1 Cues per section." );
+        msg_Warn( &sys.demuxer, "There can be only 1 Cues per section." );
         return;
     }
 



More information about the vlc-commits mailing list