]> git.sesse.net Git - vlc/blobdiff - modules/demux/mkv/mkv.hpp
mkv: use DIR_SEP_CHAR when applicable.
[vlc] / modules / demux / mkv / mkv.hpp
index 0b8964e416fda70b18eb44e462e20cbfe64f9b47..49119ad6c94de13c51f6521248937889cfea1e35 100644 (file)
@@ -38,7 +38,6 @@
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
-#undef gettext
 
 #include <inttypes.h>
 
@@ -120,16 +119,6 @@ extern "C" {
 
 #define MKVD_TIMECODESCALE 1000000
 
-/**
- * What's between a directory and a filename?
- */
-#if defined( WIN32 )
-    #define DIRECTORY_SEPARATOR '\\'
-#else
-    #define DIRECTORY_SEPARATOR '/'
-#endif
-
-
 #define MKV_IS_ID( el, C ) ( EbmlId( (*el) ) == C::ClassInfos.GlobalId )