]> git.sesse.net Git - vlc/commitdiff
mkv: fix declaration/definition mismatch of demux_sys_t
authorFelix Abecassis <felix.abecassis@gmail.com>
Mon, 12 May 2014 09:13:48 +0000 (11:13 +0200)
committerFelix Abecassis <felix.abecassis@gmail.com>
Mon, 12 May 2014 09:13:48 +0000 (11:13 +0200)
Kill many compiler warnings.

modules/demux/mkv/chapter_command.hpp
modules/demux/mkv/demux.hpp
modules/demux/mkv/mkv.cpp

index 7c8a3c185aaaddc829831035a00d579da763be40..80b3e458d3d08d6899347c822bd0a9c24e7b352c 100644 (file)
@@ -35,7 +35,7 @@ const binary MATROSKA_DVD_LEVEL_PG   = 0x18;
 const binary MATROSKA_DVD_LEVEL_PTT  = 0x10;
 const binary MATROSKA_DVD_LEVEL_CN   = 0x08;
 
-class demux_sys_t;
+struct demux_sys_t;
 
 class chapter_codec_cmds_c
 {
index c295f13d13d07292a49724fe7257dacfc486f6d2..f6b910bfffbd6b58ac0d2d8ea6e3e2cdb3e1044f 100644 (file)
@@ -326,7 +326,7 @@ private:
 };
 
 
-class demux_sys_t
+struct demux_sys_t
 {
 public:
     demux_sys_t( demux_t & demux )
index b2b85bb0ab724ee36e06cfd5f4a0992806302ec5..c1dd7810d659867569709d1a845943555a01dbb9 100644 (file)
@@ -73,7 +73,7 @@ vlc_module_begin ()
     add_shortcut( "mka", "mkv" )
 vlc_module_end ()
 
-class demux_sys_t;
+struct demux_sys_t;
 
 static int  Demux  ( demux_t * );
 static int  Control( demux_t *, int, va_list );