Commit c885158b authored by Laurent Aimar's avatar Laurent Aimar

* mkv : spelling mistakes.

parent 4ce9191c
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mkv.cpp : matroska demuxer * mkv.cpp : matroska demuxer
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: mkv.cpp,v 1.11 2003/06/24 19:59:27 fenrir Exp $ * $Id: mkv.cpp,v 1.12 2003/06/24 23:00:32 fenrir Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -40,6 +40,8 @@ ...@@ -40,6 +40,8 @@
#include <cassert> #include <cassert>
#include <typeinfo> #include <typeinfo>
#include <wchar.h>
/* libebml and matroska */ /* libebml and matroska */
#include "ebml/EbmlHead.h" #include "ebml/EbmlHead.h"
#include "ebml/EbmlSubHead.h" #include "ebml/EbmlSubHead.h"
...@@ -455,7 +457,7 @@ static int Activate( vlc_object_t * p_this ) ...@@ -455,7 +457,7 @@ static int Activate( vlc_object_t * p_this )
#endif #endif
else else
{ {
msg_Dbg( p_input, "| | + Unknow (%s)", typeid(*el2).name() ); msg_Dbg( p_input, "| | + Unknown (%s)", typeid(*el2).name() );
} }
} }
p_sys->ep->Up(); p_sys->ep->Up();
...@@ -580,7 +582,7 @@ static int Activate( vlc_object_t * p_this ) ...@@ -580,7 +582,7 @@ static int Activate( vlc_object_t * p_this )
} }
else else
{ {
msg_Dbg( p_input, "| | | | + Unknow (%s)", typeid(*el4).name() ); msg_Dbg( p_input, "| | | | + Unknown (%s)", typeid(*el4).name() );
} }
} }
p_sys->ep->Up(); p_sys->ep->Up();
...@@ -640,7 +642,7 @@ static int Activate( vlc_object_t * p_this ) ...@@ -640,7 +642,7 @@ static int Activate( vlc_object_t * p_this )
} }
else else
{ {
msg_Dbg( p_input, "| | | | + Unknow (%s)", typeid(*el4).name() ); msg_Dbg( p_input, "| | | | + Unknown (%s)", typeid(*el4).name() );
} }
} }
p_sys->ep->Up(); p_sys->ep->Up();
...@@ -706,14 +708,14 @@ static int Activate( vlc_object_t * p_this ) ...@@ -706,14 +708,14 @@ static int Activate( vlc_object_t * p_this )
} }
else else
{ {
msg_Dbg( p_input, "| | | + Unknow (%s)", typeid(*el3).name() ); msg_Dbg( p_input, "| | | + Unknown (%s)", typeid(*el3).name() );
} }
} }
p_sys->ep->Up(); p_sys->ep->Up();
} }
else else
{ {
msg_Dbg( p_input, "| | + Unknow (%s)", typeid(*el2).name() ); msg_Dbg( p_input, "| | + Unknown (%s)", typeid(*el2).name() );
} }
#undef tk #undef tk
} }
...@@ -752,7 +754,7 @@ static int Activate( vlc_object_t * p_this ) ...@@ -752,7 +754,7 @@ static int Activate( vlc_object_t * p_this )
} }
else else
{ {
msg_Dbg( p_input, "| | | + Unknow (%s)", typeid(*el).name() ); msg_Dbg( p_input, "| | | + Unknown (%s)", typeid(*el).name() );
} }
} }
p_sys->ep->Up(); p_sys->ep->Up();
...@@ -779,7 +781,7 @@ static int Activate( vlc_object_t * p_this ) ...@@ -779,7 +781,7 @@ static int Activate( vlc_object_t * p_this )
} }
else else
{ {
msg_Dbg( p_input, "| | + Unknow (%s)", typeid(*el).name() ); msg_Dbg( p_input, "| | + Unknown (%s)", typeid(*el).name() );
} }
} }
p_sys->ep->Up(); p_sys->ep->Up();
...@@ -812,7 +814,7 @@ static int Activate( vlc_object_t * p_this ) ...@@ -812,7 +814,7 @@ static int Activate( vlc_object_t * p_this )
} }
else else
{ {
msg_Dbg( p_input, "| + Unknow (%s)", typeid(*el1).name() ); msg_Dbg( p_input, "| + Unknown (%s)", typeid(*el1).name() );
} }
} }
...@@ -2070,14 +2072,14 @@ static void LoadCues( input_thread_t *p_input ) ...@@ -2070,14 +2072,14 @@ static void LoadCues( input_thread_t *p_input )
} }
else else
{ {
msg_Dbg( p_input, " * Unknow (%s)", typeid(*el).name() ); msg_Dbg( p_input, " * Unknown (%s)", typeid(*el).name() );
} }
} }
ep->Up(); ep->Up();
} }
else else
{ {
msg_Dbg( p_input, " * Unknow (%s)", typeid(*el).name() ); msg_Dbg( p_input, " * Unknown (%s)", typeid(*el).name() );
} }
} }
ep->Up(); ep->Up();
...@@ -2095,7 +2097,7 @@ static void LoadCues( input_thread_t *p_input ) ...@@ -2095,7 +2097,7 @@ static void LoadCues( input_thread_t *p_input )
} }
else else
{ {
msg_Dbg( p_input, " * Unknow (%s)", typeid(*el).name() ); msg_Dbg( p_input, " * Unknown (%s)", typeid(*el).name() );
} }
} }
delete ep; delete ep;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment