]> git.sesse.net Git - vlc/blob - projects/macosx/framework/Sources/VLCLibrary.m
1770fad9431ff7746169214e2ea159a0cadd9ddc
[vlc] / projects / macosx / framework / Sources / VLCLibrary.m
1 /*****************************************************************************
2  * VLCLibrary.m: VLCKit.framework VLCLibrary implementation
3  *****************************************************************************
4  * Copyright (C) 2007 Pierre d'Herbemont
5  * Copyright (C) 2007 the VideoLAN team
6  * $Id$
7  *
8  * Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #import "VLCLibrary.h"
26 #import "VLCLibVLCBridging.h"
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33 #include <vlc/libvlc_structures.h>
34
35 static VLCLibrary * sharedLibrary = nil;
36
37 @implementation VLCLibrary
38 + (VLCLibrary *)sharedLibrary
39 {
40     if (!sharedLibrary)
41     {
42         /* Initialize a shared instance */
43         sharedLibrary = [[self alloc] init];
44     }
45     return sharedLibrary;
46 }
47
48 - (id)init
49 {
50     if (self = [super init])
51     {
52
53         NSArray *vlcParams = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"VLCParams"];
54         if (!vlcParams) {
55             NSMutableArray *defaultParams = [NSMutableArray array];
56             [defaultParams addObject:@"--no-video-title-show"];                     // Don't show the title on overlay when starting to play
57             [defaultParams addObject:@"--no-sout-keep"];
58             [defaultParams addObject:@"--vout=macosx"];                             // Select Mac OS X video output
59             [defaultParams addObject:@"--text-renderer=quartztext"];                // our CoreText-based renderer
60             [defaultParams addObject:@"--verbose=-1"];                              // Don't polute the stdio log
61             [defaultParams addObject:@"--syslog"];                                  // log to syslog
62             [defaultParams addObject:@"--log-verbose=4"];                           // log everything
63             [defaultParams addObject:@"--no-color"];                                // Don't use color in output (Xcode doesn't show it)
64             [defaultParams addObject:@"--no-media-library"];                        // We don't need the media library
65             [defaultParams addObject:@"--play-and-pause"];                          // We want every movie to pause instead of stopping at eof
66             [defaultParams addObject:@"--extraintf=macosx_dialog_provider"];        // Some extra dialog (login, progress) may come up from here
67             vlcParams = defaultParams;
68         }
69
70         NSUInteger paramNum = 0;
71         NSUInteger count = [vlcParams count];
72         const char *lib_vlc_params[count];
73         while (paramNum < count) {
74             NSString *vlcParam = [vlcParams objectAtIndex:paramNum];
75             lib_vlc_params[paramNum] = [vlcParam cStringUsingEncoding:NSASCIIStringEncoding];
76             paramNum++;
77         }
78         instance = (void *)libvlc_new( sizeof(lib_vlc_params)/sizeof(lib_vlc_params[0]), lib_vlc_params);
79         NSAssert(instance, @"libvlc failed to initialize");
80     }
81     return self;
82 }
83
84 - (NSString *)version
85 {
86     return [NSString stringWithUTF8String:libvlc_get_version()];
87 }
88
89 - (NSString *)changeset
90 {
91     return [NSString stringWithUTF8String:libvlc_get_changeset()];
92 }
93
94 - (void)dealloc
95 {
96     if( instance )
97         libvlc_release( instance );
98
99     if( self == sharedLibrary )
100         sharedLibrary = nil;
101
102     instance = nil;
103     [super dealloc];
104 }
105
106 @end
107
108 @implementation VLCLibrary (VLCLibVLCBridging)
109 + (void *)sharedInstance
110 {
111     return [self sharedLibrary].instance;
112 }
113
114 - (void *)instance
115 {
116     return instance;
117 }
118 @end
119