]> git.sesse.net Git - vlc/blobdiff - src/misc/modules.c
* src/misc/*, src/extras/libc.c: bunch of WinCE fixes.
[vlc] / src / misc / modules.c
index cc0457224b4cb05e65e66dfb3dd3f34bc711f152..3dd6ed6aa472a61940bb644a16669422df73b00a 100644 (file)
@@ -91,6 +91,7 @@
 #include "vlc_video.h"
 #include "video_output.h"
 #include "vout_synchro.h"
+#include "vlc_spu.h"
 
 #include "audio_output.h"
 #include "aout_internal.h"
@@ -429,9 +430,9 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
             int i_dummy, i_short = i_shortcuts;
             char *psz_name = psz_shortcuts;
 
-            /* Let's drop modules with a 0 score (unless they are
+            /* Let's drop modules with a <= 0 score (unless they are
              * explicitly requested) */
-            b_trash = !p_module->i_score;
+            b_trash = p_module->i_score <= 0;
 
             while( i_short > 0 )
             {
@@ -475,8 +476,8 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
                 continue;
             }
         }
-        /* If we didn't require a shortcut, trash zero-scored plugins */
-        else if( !p_module->i_score )
+        /* If we didn't require a shortcut, trash <= 0 scored plugins */
+        else if( p_module->i_score <= 0 )
         {
             continue;
         }
@@ -612,8 +613,16 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
     }
     else if( p_first == NULL )
     {
-        msg_Err( p_this, "no %s module matched \"%s\"",
+        if( !strcmp( psz_capability, "access_demux" ) )
+        {
+            msg_Warn( p_this, "no %s module matched \"%s\"",
+                 psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
+        }
+        else
+        {  
+            msg_Err( p_this, "no %s module matched \"%s\"",
                  psz_capability, (psz_name && *psz_name) ? psz_name : "any" );
+        }
     }
     else if( psz_name != NULL && *psz_name )
     {
@@ -667,8 +676,11 @@ void __module_Unneed( vlc_object_t * p_this, module_t * p_module )
 static void AllocateAllPlugins( vlc_object_t *p_this )
 {
     /* Yes, there are two NULLs because we replace one with "plugin-path". */
-    char *          path[] = { "modules", PLUGIN_PATH, "plugins", NULL,
-                               NULL };
+#ifdef WIN32
+    char *          path[] = { "modules", "", "plugins", 0, 0 };
+#else
+    char *          path[] = { "modules", PLUGIN_PATH, "plugins", 0, 0 };
+#endif
 
     char **         ppsz_path = path;
     char *          psz_fullpath;
@@ -679,12 +691,14 @@ static void AllocateAllPlugins( vlc_object_t *p_this )
 
     for( ; *ppsz_path != NULL ; ppsz_path++ )
     {
-#if defined( SYS_BEOS ) || defined( SYS_DARWIN ) \
-     || ( defined( WIN32 ) && !defined( UNDER_CE ) )
+        if( !(*ppsz_path)[0] ) continue;
+
+#if defined( SYS_BEOS ) || defined( SYS_DARWIN ) || defined( WIN32 )
 
         /* Handle relative as well as absolute paths */
 #ifdef WIN32
-        if( !(*ppsz_path)[0] || (*ppsz_path)[1] != ':' )
+        if( (*ppsz_path)[0] != '\\' && (*ppsz_path)[0] != '/' &&
+            (*ppsz_path)[1] != ':' )
 #else
         if( (*ppsz_path)[0] != '/' )
 #endif
@@ -733,11 +747,10 @@ static void AllocatePluginDir( vlc_object_t *p_this, const char *psz_dir,
 {
 #if defined( UNDER_CE ) || defined( _MSC_VER )
 #ifdef UNDER_CE
-    wchar_t psz_path[MAX_PATH + 256];
+    wchar_t psz_wpath[MAX_PATH + 256];
     wchar_t psz_wdir[MAX_PATH];
-#else
-    char psz_path[MAX_PATH + 256];
 #endif
+    char psz_path[MAX_PATH + 256];
     WIN32_FIND_DATA finddata;
     HANDLE handle;
     unsigned int rc;
@@ -754,22 +767,27 @@ static void AllocatePluginDir( vlc_object_t *p_this, const char *psz_dir,
     }
 
 #if defined( UNDER_CE ) || defined( _MSC_VER )
+#ifdef UNDER_CE
     MultiByteToWideChar( CP_ACP, 0, psz_dir, -1, psz_wdir, MAX_PATH );
 
     rc = GetFileAttributes( psz_wdir );
-    if( !(rc & FILE_ATTRIBUTE_DIRECTORY) )
-    {
-        /* Not a directory */
-        return;
-    }
+    if( !(rc & FILE_ATTRIBUTE_DIRECTORY) ) return; /* Not a directory */
 
     /* Parse all files in the directory */
-#ifdef UNDER_CE
-    swprintf( psz_path, L"%s\\*.*", psz_dir );
+    swprintf( psz_wpath, L"%ls\\*", psz_wdir );
 #else
-    sprintf( psz_path, "%s\\*.*", psz_dir );
+    rc = GetFileAttributes( psz_dir );
+    if( !(rc & FILE_ATTRIBUTE_DIRECTORY) ) return; /* Not a directory */
 #endif
+
+    /* Parse all files in the directory */
+    sprintf( psz_path, "%s\\*", psz_dir );
+
+#ifdef UNDER_CE
+    handle = FindFirstFile( psz_wpath, &finddata );
+#else
     handle = FindFirstFile( psz_path, &finddata );
+#endif
     if( handle == INVALID_HANDLE_VALUE )
     {
         /* Empty directory */
@@ -781,40 +799,35 @@ static void AllocatePluginDir( vlc_object_t *p_this, const char *psz_dir,
     {
 #ifdef UNDER_CE
         unsigned int i_len = wcslen( finddata.cFileName );
-        swprintf( psz_path, L"%s\\%s", psz_dir, finddata.cFileName );
+        swprintf( psz_wpath, L"%ls\\%ls", psz_wdir, finddata.cFileName );
+        sprintf( psz_path, "%s\\%ls", psz_dir, finddata.cFileName );
 #else
         unsigned int i_len = strlen( finddata.cFileName );
+        sprintf( psz_path, "%s\\%s", psz_dir, finddata.cFileName );
+#endif
+
         /* Skip ".", ".." and anything starting with "." */
         if( !*finddata.cFileName || *finddata.cFileName == '.' )
         {
             if( !FindNextFile( handle, &finddata ) ) break;
             continue;
         }
-        sprintf( psz_path, "%s\\%s", psz_dir, finddata.cFileName );
-#endif
 
+#ifdef UNDER_CE
+        if( GetFileAttributes( psz_wpath ) & FILE_ATTRIBUTE_DIRECTORY )
+#else
         if( GetFileAttributes( psz_path ) & FILE_ATTRIBUTE_DIRECTORY )
+#endif
         {
             AllocatePluginDir( p_this, psz_path, i_maxdepth - 1 );
         }
         else if( i_len > strlen( LIBEXT )
-#ifdef UNDER_CE
-                )
-#else
                   /* We only load files ending with LIBEXT */
                   && !strncasecmp( psz_path + strlen( psz_path)
                                    - strlen( LIBEXT ),
                                    LIBEXT, strlen( LIBEXT ) ) )
-#endif
         {
-#ifdef UNDER_CE
-            char psz_filename[MAX_PATH];
-            WideCharToMultiByte( CP_ACP, WC_DEFAULTCHAR, psz_path, -1,
-                                 psz_filename, MAX_PATH, NULL, NULL );
-            psz_file = psz_filename;
-#else
             psz_file = psz_path;
-#endif
 
             AllocatePluginFile( p_this, psz_file, 0, 0 );
         }
@@ -1255,12 +1268,21 @@ static int LoadModule( vlc_object_t *p_this, char *psz_file,
     }
 
 #elif defined(HAVE_DL_WINDOWS)
+#ifdef UNDER_CE
+    {
+        wchar_t psz_wfile[MAX_PATH];
+        MultiByteToWideChar( CP_ACP, 0, psz_file, -1, psz_wfile, MAX_PATH );
+        handle = LoadLibrary( psz_wfile );
+    }
+#else
     handle = LoadLibrary( psz_file );
+#endif
     if( handle == NULL )
     {
         char *psz_err = GetWindowsError();
         msg_Warn( p_this, "cannot load module `%s' (%s)", psz_file, psz_err );
         free( psz_err );
+        return -1;
     }
 
 #elif defined(HAVE_DL_DLOPEN) && defined(RTLD_NOW)
@@ -1517,13 +1539,17 @@ static void CacheLoad( vlc_object_t *p_this )
     if( p_this->p_libvlc->p_module_bank->b_cache_delete )
     {
         msg_Dbg( p_this, "removing plugins cache file %s", psz_filename );
+#if !defined( UNDER_CE )
         unlink( psz_filename );
+#else
+        msg_Err( p_this, "FIXME, unlink not implemented" );
+#endif
         return;
     }
 
     msg_Dbg( p_this, "loading plugins cache file %s", psz_filename );
 
-    file = fopen( psz_filename, "r" );
+    file = fopen( psz_filename, "rb" );
     if( !file )
     {
         msg_Warn( p_this, "could not open plugins cache file %s for reading",
@@ -1797,7 +1823,7 @@ static void CacheSave( vlc_object_t *p_this )
 
     msg_Dbg( p_this, "saving plugins cache file %s", psz_filename );
 
-    file = fopen( psz_filename, "w" );
+    file = fopen( psz_filename, "wb" );
     if( !file )
     {
         msg_Warn( p_this, "could not open plugins cache file %s for writing",