]> git.sesse.net Git - vlc/commitdiff
* Switch b_strict to true in module_Need calls (we're requiring a specific module)
authorAntoine Cellerier <dionoea@videolan.org>
Sun, 15 Apr 2007 20:46:28 +0000 (20:46 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Sun, 15 Apr 2007 20:46:28 +0000 (20:46 +0000)
 * Add missing space in help string.

src/libvlc-module.c
src/video_output/video_output.c
src/video_output/vout_subpictures.c

index 4a1dd3ee0d55a3c9e73b44617de452f814a84966..e28c3c4414f6da0446226f3277573ddafdbd0217 100644 (file)
@@ -896,7 +896,7 @@ static const char *ppsz_clock_descriptions[] =
     "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 " \
     "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 " \
     "and the running instance of VLC to use D-Bus control interface.")
 
index ed3fe443b898e2a695658e654a097bd3118363e2..cdb156d91599c8d40da154b479e4661300826575 100644 (file)
@@ -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_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 )
                 {
index 89eb203867d2b2922b3dd72e6e9400f1be0ad412..02d0e06efd467e01381f24ee4089d9a0657cce52 100644 (file)
@@ -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_module =
             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 )
         {
             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,
             if( psz_modulename && *psz_modulename )
             {
                 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 )
             {