forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core.c
237 lines (198 loc) · 7.22 KB
/
core.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/*****************************************************************************
* core.c: Core libvlc new API functions : initialization
*****************************************************************************
* Copyright (C) 2005 VLC authors and VideoLAN
*
* Authors: Clément Stenac <[email protected]>
*
* 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.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "libvlc_internal.h"
#include <vlc_modules.h>
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <stdarg.h>
#include <limits.h>
#include <assert.h>
static_assert(LIBVLC_VERSION_MAJOR == PACKAGE_VERSION_MAJOR, "Major VLC version mismatch");
static_assert(LIBVLC_VERSION_MINOR == PACKAGE_VERSION_MINOR, "Minor VLC version mismatch");
static_assert(LIBVLC_VERSION_REVISION == PACKAGE_VERSION_REVISION, "VLC Revision version mismatch");
static_assert(LIBVLC_VERSION_EXTRA == PACKAGE_VERSION_EXTRA, "VLC Extra version mismatch");
static_assert(LIBVLC_ABI_VERSION_MAJOR == LIBVLC_ABI_MAJOR, "Major LibVLC version mismatch");
static_assert(LIBVLC_ABI_VERSION_MINOR == LIBVLC_ABI_MINOR, "Minor LibVLC version mismatch");
static_assert(LIBVLC_ABI_VERSION_MICRO == LIBVLC_ABI_MICRO, "Micro LibVLC version mismatch");
int libvlc_abi_version(void)
{
return LIBVLC_ABI_VERSION_INT;
}
libvlc_instance_t * libvlc_new( int argc, const char *const *argv )
{
libvlc_threads_init ();
libvlc_instance_t *p_new = malloc (sizeof (*p_new));
if (unlikely(p_new == NULL))
return NULL;
const char *my_argv[argc + 2];
my_argv[0] = "libvlc"; /* dummy arg0, skipped by getopt() et al */
for( int i = 0; i < argc; i++ )
my_argv[i + 1] = argv[i];
my_argv[argc + 1] = NULL; /* C calling conventions require a NULL */
libvlc_int_t *p_libvlc_int = libvlc_InternalCreate();
if (unlikely (p_libvlc_int == NULL))
goto error;
if (libvlc_InternalInit( p_libvlc_int, argc + 1, my_argv ))
{
libvlc_InternalDestroy( p_libvlc_int );
goto error;
}
p_new->p_libvlc_int = p_libvlc_int;
vlc_atomic_rc_init( &p_new->ref_count );
p_new->p_callback_list = NULL;
return p_new;
error:
free (p_new);
libvlc_threads_deinit ();
return NULL;
}
void libvlc_retain( libvlc_instance_t *p_instance )
{
assert( p_instance != NULL );
vlc_atomic_rc_inc( &p_instance->ref_count );
}
void libvlc_release( libvlc_instance_t *p_instance )
{
if(vlc_atomic_rc_dec( &p_instance->ref_count ))
{
libvlc_Quit( p_instance->p_libvlc_int );
libvlc_InternalCleanup( p_instance->p_libvlc_int );
libvlc_InternalDestroy( p_instance->p_libvlc_int );
free( p_instance );
libvlc_threads_deinit ();
}
}
void libvlc_set_exit_handler( libvlc_instance_t *p_i, void (*cb) (void *),
void *data )
{
libvlc_int_t *p_libvlc = p_i->p_libvlc_int;
libvlc_SetExitHandler( p_libvlc, cb, data );
}
void libvlc_set_user_agent (libvlc_instance_t *p_i,
const char *name, const char *http)
{
libvlc_int_t *p_libvlc = p_i->p_libvlc_int;
char *str;
var_SetString (p_libvlc, "user-agent", name);
if ((http != NULL)
&& (asprintf (&str, "%s LibVLC/"PACKAGE_VERSION, http) != -1))
{
var_SetString (p_libvlc, "http-user-agent", str);
free (str);
}
}
void libvlc_set_app_id(libvlc_instance_t *p_i, const char *id,
const char *version, const char *icon)
{
libvlc_int_t *p_libvlc = p_i->p_libvlc_int;
var_SetString(p_libvlc, "app-id", id ? id : "");
var_SetString(p_libvlc, "app-version", version ? version : "");
var_SetString(p_libvlc, "app-icon-name", icon ? icon : "");
}
const char * libvlc_get_version(void)
{
return VERSION_MESSAGE;
}
const char * libvlc_get_compiler(void)
{
return VLC_Compiler();
}
const char * libvlc_get_changeset(void)
{
extern const char psz_vlc_changeset[];
return psz_vlc_changeset;
}
void libvlc_free( void *ptr )
{
free( ptr );
}
static libvlc_module_description_t *module_description_list_get(
libvlc_instance_t *p_instance, const char *capability )
{
libvlc_module_description_t *p_list = NULL,
*p_actual = NULL,
*p_previous = NULL;
size_t count;
module_t **module_list = module_list_get( &count );
for (size_t i = 0; i < count; i++)
{
module_t *p_module = module_list[i];
if ( !module_provides( p_module, capability ) )
continue;
p_actual = ( libvlc_module_description_t * ) malloc( sizeof( libvlc_module_description_t ) );
if ( p_actual == NULL )
{
libvlc_printerr( "Not enough memory" );
libvlc_module_description_list_release( p_list );
module_list_free( module_list );
return NULL;
}
if ( p_list == NULL )
p_list = p_actual;
const char* name = module_get_object( p_module );
const char* shortname = module_GetShortName( p_module );
const char* longname = module_GetLongName( p_module );
const char* help = module_get_help( p_module );
p_actual->psz_name = name ? strdup( name ) : NULL;
p_actual->psz_shortname = shortname ? strdup( shortname ) : NULL;
p_actual->psz_longname = longname ? strdup( longname ) : NULL;
p_actual->psz_help = help ? strdup( help ) : NULL;
p_actual->p_next = NULL;
if ( p_previous )
p_previous->p_next = p_actual;
p_previous = p_actual;
}
module_list_free( module_list );
VLC_UNUSED( p_instance );
return p_list;
}
void libvlc_module_description_list_release( libvlc_module_description_t *p_list )
{
libvlc_module_description_t *p_actual, *p_before;
p_actual = p_list;
while ( p_actual )
{
free( p_actual->psz_name );
free( p_actual->psz_shortname );
free( p_actual->psz_longname );
free( p_actual->psz_help );
p_before = p_actual;
p_actual = p_before->p_next;
free( p_before );
}
}
libvlc_module_description_t *libvlc_audio_filter_list_get( libvlc_instance_t *p_instance )
{
return module_description_list_get( p_instance, "audio filter" );
}
libvlc_module_description_t *libvlc_video_filter_list_get( libvlc_instance_t *p_instance )
{
return module_description_list_get( p_instance, "video filter" );
}
int64_t libvlc_clock(void)
{
return US_FROM_VLC_TICK(vlc_tick_now());
}
const char vlc_module_name[] = "libvlc";