]> git.sesse.net Git - vlc/commitdiff
Same thing as previous commit.
authorRémi Denis-Courmont <rem@videolan.org>
Wed, 3 Jan 2007 22:40:51 +0000 (22:40 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Wed, 3 Jan 2007 22:40:51 +0000 (22:40 +0000)
Do not ignore access specification; do not fallback to vcd, file whatever.
It sucks (e.g. if following an HTTP URL you really should only try to
use the HTTP plugin, and this is the proper and only way to do it).

Again MRLSplit might need to be improved (not sure how)

src/input/input.c

index e5c1c6e98523077f6187646671e169f7b6bb70bb..5904676b734c65709dd53a02177a028abfd423c7 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,
-                                    p_input->b_preparsing );
+                                    VLC_TRUE );
 
         /* Access failed, URL encoded ? */
         if( in->p_access == NULL && strchr( psz_path, '%' ) )