]> git.sesse.net Git - vlc/commitdiff
Fix preparsing and access plugin selection (oups)
authorRémi Denis-Courmont <rem@videolan.org>
Fri, 5 Jan 2007 10:41:33 +0000 (10:41 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Fri, 5 Jan 2007 10:41:33 +0000 (10:41 +0000)
src/input/access.c
src/input/input.c

index 8df8dbe4a37f7fcf0b69edd21884846689e1c20e..0fa511ddf528c805cf9344e4a88871caa7fb6d43 100644 (file)
@@ -95,7 +95,7 @@ static access_t *access2_InternalNew( vlc_object_t *p_obj, const char *psz_acces
     else
     {
         p_access->p_module =
-            module_Need( p_access, "access2", p_access->psz_access, b_quick );
+            module_Need( p_access, "access2", p_access->psz_access, VLC_TRUE );
     }
 
     if( p_access->p_module == NULL )
index 5904676b734c65709dd53a02177a028abfd423c7..e5c1c6e98523077f6187646671e169f7b6bb70bb 100644 (file)
@@ -2035,7 +2035,7 @@ static int InputSourceInit( input_thread_t *p_input,
 
         /* Now try a real access */
         in->p_access = access2_New( p_input, psz_access, psz_demux, psz_path,
-                                    VLC_TRUE );
+                                    p_input->b_preparsing );
 
         /* Access failed, URL encoded ? */
         if( in->p_access == NULL && strchr( psz_path, '%' ) )