]> git.sesse.net Git - vlc/commitdiff
Do not try rtmp access unless requested (as all other network modules).
authorLaurent Aimar <fenrir@videolan.org>
Tue, 19 Aug 2008 20:35:08 +0000 (22:35 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 19 Aug 2008 20:35:08 +0000 (22:35 +0200)
modules/access/rtmp/access.c

index 2c0b3238ea648a287d6abc01e995c78347abeff5..c0bf34706f7bb6802dbdc5feb4fbc7e16a29dae2 100644 (file)
@@ -57,7 +57,7 @@ vlc_module_begin();
     add_integer( "rtmp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
                  CACHING_LONGTEXT, true );
 
-    set_capability( "access", 10 );
+    set_capability( "access", 0 );
     set_callbacks( Open, Close );
     add_shortcut( "rtmp" );
 vlc_module_end();