Commit e70ef78e authored by Antoine Cellerier's avatar Antoine Cellerier

* Switch b_strict to true in module_Need calls (we're requiring a specific module)

 * Add missing space in help string.
parent 4dc59a4f
...@@ -896,7 +896,7 @@ static const char *ppsz_clock_descriptions[] = ...@@ -896,7 +896,7 @@ static const char *ppsz_clock_descriptions[] =
"for example if you associated VLC with some media types and you " \ "for example if you associated VLC with some media types and you " \
"don't want a new instance of VLC to be opened each time you " \ "don't want a new instance of VLC to be opened each time you " \
"open a file in your file manager. This option will allow you " \ "open a file in your file manager. This option will allow you " \
"to play the file with the already running instance or enqueue it." \ "to play the file with the already running instance or enqueue it. " \
"This option require the D-Bus session daemon to be active " \ "This option require the D-Bus session daemon to be active " \
"and the running instance of VLC to use D-Bus control interface.") "and the running instance of VLC to use D-Bus control interface.")
......
...@@ -975,7 +975,8 @@ static void RunThread( vout_thread_t *p_vout) ...@@ -975,7 +975,8 @@ static void RunThread( vout_thread_t *p_vout)
p_vfilter->p_cfg = p_vout->p_vfilters_cfg[i]; p_vfilter->p_cfg = p_vout->p_vfilters_cfg[i];
p_vfilter->p_module = module_Need( p_vfilter, "video filter2", p_vfilter->p_module = module_Need( p_vfilter, "video filter2",
p_vout->psz_vfilters[i], 0 ); p_vout->psz_vfilters[i],
VLC_TRUE );
if( p_vfilter->p_module ) if( p_vfilter->p_module )
{ {
......
...@@ -140,7 +140,7 @@ int spu_ParseChain( spu_t *p_spu ) ...@@ -140,7 +140,7 @@ int spu_ParseChain( spu_t *p_spu )
p_spu->pp_filter[p_spu->i_filter]->p_cfg = p_cfg; p_spu->pp_filter[p_spu->i_filter]->p_cfg = p_cfg;
p_spu->pp_filter[p_spu->i_filter]->p_module = p_spu->pp_filter[p_spu->i_filter]->p_module =
module_Need( p_spu->pp_filter[p_spu->i_filter], module_Need( p_spu->pp_filter[p_spu->i_filter],
"sub filter", psz_name, 0 ); "sub filter", psz_name, VLC_TRUE );
if( p_spu->pp_filter[p_spu->i_filter]->p_module ) if( p_spu->pp_filter[p_spu->i_filter]->p_module )
{ {
filter_owner_sys_t *p_sys = malloc( sizeof(filter_owner_sys_t) ); filter_owner_sys_t *p_sys = malloc( sizeof(filter_owner_sys_t) );
...@@ -551,7 +551,8 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt, ...@@ -551,7 +551,8 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
if( psz_modulename && *psz_modulename ) if( psz_modulename && *psz_modulename )
{ {
p_spu->p_text->p_module = p_spu->p_text->p_module =
module_Need( p_spu->p_text, "text renderer", psz_modulename, VLC_TRUE ); module_Need( p_spu->p_text, "text renderer",
psz_modulename, VLC_TRUE );
} }
if( !p_spu->p_text->p_module ) if( !p_spu->p_text->p_module )
{ {
......
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