/***************************************************************************** * VLCLibrary.m: VLCKit.framework VLCLibrary implementation ***************************************************************************** * Copyright (C) 2007 Pierre d'Herbemont * Copyright (C) 2007 VLC authors and VideoLAN * $Id$ * * Authors: Pierre d'Herbemont * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #import "VLCLibrary.h" #import "VLCLibVLCBridging.h" #if TARGET_OS_IPHONE # include "vlc-plugins.h" #endif #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include static VLCLibrary * sharedLibrary = nil; @implementation VLCLibrary + (VLCLibrary *)sharedLibrary { if (!sharedLibrary) { /* Initialize a shared instance */ sharedLibrary = [[self alloc] init]; } return sharedLibrary; } - (id)init { if (self = [super init]) { NSArray *vlcParams; #if TARGET_OS_IPHONE vlcParams = [NSArray arrayWithObjects:@"--play-and-pause", @"--no-color", @"--no-video-title-show", @"--verbose=3", @"--avcodec-fast", @"--avcodec-skiploopfilter=all", @"--no-stats", @"--no-plugins-cache", @"--vout=vout_ios2", nil]; #else vlcParams = [[NSUserDefaults standardUserDefaults] objectForKey:@"VLCParams"]; if (!vlcParams) { 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-video-title-show"]; // Don't show the title on overlay when starting to play [defaultParams addObject:@"--verbose=4"]; // Let's not wreck the logs [defaultParams addObject:@"--no-sout-keep"]; [defaultParams addObject:@"--vout=macosx"]; // Select Mac OS X video output [defaultParams addObject:@"--text-renderer=quartztext"]; // our CoreText-based renderer [defaultParams addObject:@"--extraintf=macosx_dialog_provider"]; // Some extra dialog (login, progress) may come up from here [[NSUserDefaults standardUserDefaults] setObject:defaultParams forKey:@"VLCParams"]; [[NSUserDefaults standardUserDefaults] synchronize]; vlcParams = defaultParams; } #endif NSUInteger paramNum = 0; NSUInteger count = [vlcParams count]; const char *lib_vlc_params[count]; while (paramNum < count) { NSString *vlcParam = [vlcParams objectAtIndex:paramNum]; lib_vlc_params[paramNum] = [vlcParam cStringUsingEncoding:NSASCIIStringEncoding]; paramNum++; } unsigned argc = sizeof(lib_vlc_params)/sizeof(lib_vlc_params[0]); instance = libvlc_new(argc, lib_vlc_params); NSAssert(instance, @"libvlc failed to initialize"); } return self; } - (NSString *)version { return [NSString stringWithUTF8String:libvlc_get_version()]; } - (NSString *)changeset { return [NSString stringWithUTF8String:libvlc_get_changeset()]; } - (void)dealloc { if (instance) libvlc_release(instance); if (self == sharedLibrary) sharedLibrary = nil; instance = nil; [super dealloc]; } @end @implementation VLCLibrary (VLCLibVLCBridging) + (void *)sharedInstance { return [self sharedLibrary].instance; } - (void *)instance { return instance; } @end