From: RĂ©mi Denis-Courmont Date: Fri, 5 Jan 2007 10:41:33 +0000 (+0000) Subject: Fix preparsing and access plugin selection (oups) X-Git-Tag: 0.9.0-test0~8889 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b2ba6d7b5421c6b6e605803bcdd0688e51479261;p=vlc Fix preparsing and access plugin selection (oups) --- diff --git a/src/input/access.c b/src/input/access.c index 8df8dbe4a3..0fa511ddf5 100644 --- a/src/input/access.c +++ b/src/input/access.c @@ -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 ) diff --git a/src/input/input.c b/src/input/input.c index 5904676b73..e5c1c6e985 100644 --- a/src/input/input.c +++ b/src/input/input.c @@ -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, '%' ) )