]> git.sesse.net Git - vlc/blobdiff - projects/macosx/framework/Sources/VLCLibrary.m
MobileVLCKit: updated libvlc initialization to current API
[vlc] / projects / macosx / framework / Sources / VLCLibrary.m
index c7ef7e726378fbb3f17cb2292b52d13a5c2f567c..913f0d1cbafd19cd82830190155efc195f7c0b6f 100644 (file)
@@ -58,11 +58,9 @@ static VLCLibrary * sharedLibrary = nil;
             NSMutableArray *defaultParams = [NSMutableArray array];
             [defaultParams addObject:@"--play-and-pause"];                          // We want every movie to pause instead of stopping at eof
             [defaultParams addObject:@"--no-color"];                                // Don't use color in output (Xcode doesn't show it)
-            [defaultParams addObject:@"--no-media-library"];                        // We don't need the media library
             [defaultParams addObject:@"--no-video-title-show"];                     // Don't show the title on overlay when starting to play
             [defaultParams addObject:@"--verbose=-1"];                               // Let's not wreck the logs
 #if TARGET_OS_IPHONE
-            [defaultParams addObject:@"--ignore-config"];                           // We don't need the config
 //            [defaultParams addObject:@"--ffmpeg-fast"];                             // Let's disable this as it is error-prone
             [defaultParams addObject:@"--ffmpeg-skiploopfilter=all"];
 #else
@@ -83,11 +81,7 @@ static VLCLibrary * sharedLibrary = nil;
             paramNum++;
         }
         unsigned argc = sizeof(lib_vlc_params)/sizeof(lib_vlc_params[0]);
-#if TARGET_OS_IPHONE
-        instance = libvlc_new_with_builtins(argc, lib_vlc_params, vlc_builtins_modules);
-#else
         instance = libvlc_new(argc, lib_vlc_params);
-#endif
         NSAssert(instance, @"libvlc failed to initialize");
     }
     return self;