Commit bdf3c466 authored by KO Myung-Hun's avatar KO Myung-Hun Committed by Jean-Baptiste Kempf

Do not use libdvdnav's read ahead cache on OS/2.

Using it causes libdvdnav to complain about 'demux error'.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 083e1bd9
...@@ -97,7 +97,11 @@ vlc_module_begin () ...@@ -97,7 +97,11 @@ vlc_module_begin ()
vlc_module_end () vlc_module_end ()
/* Shall we use libdvdnav's read ahead cache? */ /* Shall we use libdvdnav's read ahead cache? */
#ifdef __OS2__
#define DVD_READ_CACHE 0
#else
#define DVD_READ_CACHE 1 #define DVD_READ_CACHE 1
#endif
/***************************************************************************** /*****************************************************************************
* Local prototypes * Local prototypes
......
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