[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 09:22:26 CET 2018


vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Feb 13 09:17:03 2018 +0100| [ade2e4e480921d6fcbe38ddf5bdf19608793f6ce] | committer: Steve Lhomme

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

Only warn about it

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

 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 9f6d43edda..512a948526 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