forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmissing.c
444 lines (380 loc) · 11.4 KB
/
missing.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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
/*****************************************************************************
* missing.c: missing libvlccore symbols
*****************************************************************************
* Copyright (C) 2008-2011 Rémi Denis-Courmont
* Copyright (C) 2009-2014 VLC authors and VideoLAN
* $Id$
*
* Authors: Rémi Denis-Courmont <rem # videolan : org>
* Pierre Ynard <linkfanel # yahoo fr>
* Toralf Niebuhr <gmthor85 # aim com>
* Felix Paul Kühne <fkuehne # videolan org>
* Jean-Paul Saman <jpsaman # videolan org>
* Antoine Cellerier <dionoea # videolan org>
*
* 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.
*****************************************************************************/
/** \file
* This file contains dummy replacement API for disabled features
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <assert.h>
#ifndef ENABLE_HTTPD
# include <vlc_httpd.h>
char *httpd_ClientIP (const httpd_client_t *cl, char *psz_ip, int *port)
{
(void) cl; (void) psz_ip; (void) port;
vlc_assert_unreachable ();
}
httpd_file_sys_t *httpd_FileDelete (httpd_file_t *file)
{
(void) file;
vlc_assert_unreachable ();
}
httpd_file_t *httpd_FileNew (httpd_host_t *host,
const char *url, const char *content_type,
const char *login, const char *password,
httpd_file_callback_t cb, httpd_file_sys_t *data)
{
(void) host;
(void) url; (void) content_type;
(void) login; (void) password;
(void) cb; (void) data;
vlc_assert_unreachable ();
}
void *httpd_HandlerDelete(httpd_handler_t *handler)
{
(void) handler;
vlc_assert_unreachable ();
}
httpd_handler_t *httpd_HandlerNew(httpd_host_t *host, const char *url,
const char *login, const char *password,
httpd_handler_callback_t cb,
void *data)
{
(void) host; (void) url;
(void) login; (void) password;
(void) cb; (void) data;
vlc_assert_unreachable ();
}
void httpd_HostDelete (httpd_host_t *h)
{
(void) h;
vlc_assert_unreachable ();
}
httpd_host_t *vlc_http_HostNew (vlc_object_t *obj)
{
msg_Err (obj, "HTTP server not compiled-in!");
return NULL;
}
httpd_host_t *vlc_https_HostNew (vlc_object_t *obj)
{
msg_Err (obj, "HTTPS server not compiled-in!");
return NULL;
}
httpd_host_t *vlc_rtsp_HostNew (vlc_object_t *obj)
{
msg_Err (obj, "RTSP server not compiled-in!");
return NULL;
}
void httpd_MsgAdd (httpd_message_t *m, const char *name, const char *fmt, ...)
{
(void) m; (void) name; (void) fmt;
vlc_assert_unreachable ();
}
const char *httpd_MsgGet (const httpd_message_t *m, const char *name)
{
(void) m; (void) name;
vlc_assert_unreachable ();
}
void httpd_RedirectDelete (httpd_redirect_t *r)
{
(void) r;
vlc_assert_unreachable ();
}
httpd_redirect_t *httpd_RedirectNew (httpd_host_t *host,
const char *dst, const char *src)
{
(void) host; (void) dst; (void) src;
vlc_assert_unreachable ();
}
char *httpd_ServerIP (const httpd_client_t *client, char *ip, int *port)
{
(void) client; (void) ip; (void) port;
vlc_assert_unreachable ();
}
void httpd_StreamDelete (httpd_stream_t *stream)
{
(void) stream;
vlc_assert_unreachable ();
}
int httpd_StreamHeader (httpd_stream_t *stream, uint8_t *data, int count)
{
(void) stream; (void) data; (void) count;
vlc_assert_unreachable ();
}
httpd_stream_t *httpd_StreamNew (httpd_host_t *host,
const char *url, const char *content_type,
const char *login, const char *password)
{
(void) host; (void) url; (void) content_type;
(void) login; (void) password;
vlc_assert_unreachable ();
}
int httpd_StreamSend (httpd_stream_t *stream, const block_t *p_block)
{
(void) stream; (void) p_block;
vlc_assert_unreachable ();
}
int httpd_StreamSetHTTPHeaders (httpd_stream_t * stream,
httpd_header * headers,
size_t i_headers)
{
(void) stream; (void) headers; (void) i_headers;
vlc_assert_unreachable ();
}
int httpd_UrlCatch (httpd_url_t *url, int request, httpd_callback_t cb,
httpd_callback_sys_t *data)
{
(void) url; (void) request; (void) cb; (void) data;
vlc_assert_unreachable ();
}
void httpd_UrlDelete (httpd_url_t *url)
{
(void) url;
vlc_assert_unreachable ();
}
httpd_url_t *httpd_UrlNew (httpd_host_t *host, const char *url,
const char *login, const char *password)
{
(void) host; (void) url; (void) login; (void) password;
vlc_assert_unreachable ();
}
#endif /* !ENABLE_HTTPD */
#ifndef ENABLE_SOUT
# include <vlc_sout.h>
void sdp_AddMedia (struct vlc_memstream *sdp, const char *type, const char *protocol,
int dport, unsigned pt, bool bw_indep, unsigned bw,
const char *ptname, unsigned clockrate, unsigned channels,
const char *fmtp)
{
VLC_UNUSED (sdp); VLC_UNUSED (type); VLC_UNUSED (protocol);
VLC_UNUSED (dport); VLC_UNUSED (pt); VLC_UNUSED (bw_indep);
VLC_UNUSED (bw); VLC_UNUSED (ptname); VLC_UNUSED (clockrate);
VLC_UNUSED (channels); VLC_UNUSED (fmtp);
assert (sdp == NULL);
}
void sdp_AddAttribute (struct vlc_memstream *sdp, const char *name, const char *fmt, ...)
{
VLC_UNUSED (sdp); VLC_UNUSED (name); VLC_UNUSED (fmt);
assert (sdp == NULL);
}
int sout_AccessOutControl (sout_access_out_t *out, int query, ...)
{
VLC_UNUSED (out); VLC_UNUSED (query);
vlc_assert_unreachable ();
}
void sout_AccessOutDelete (sout_access_out_t *out)
{
VLC_UNUSED (out);
vlc_assert_unreachable ();
}
#undef sout_AccessOutNew
sout_access_out_t *sout_AccessOutNew (vlc_object_t *obj,
const char *access, const char *name)
{
VLC_UNUSED (access); VLC_UNUSED (name);
msg_Err (obj, "Output support not compiled-in!");
return NULL;
}
ssize_t sout_AccessOutRead (sout_access_out_t *out, block_t *block)
{
VLC_UNUSED (out); VLC_UNUSED (block);
vlc_assert_unreachable ();
}
int sout_AccessOutSeek (sout_access_out_t *out, off_t offset)
{
VLC_UNUSED (out); VLC_UNUSED (offset);
vlc_assert_unreachable ();
}
ssize_t sout_AccessOutWrite (sout_access_out_t *out, block_t *block)
{
VLC_UNUSED (out); VLC_UNUSED (block);
vlc_assert_unreachable ();
}
#undef sout_AnnounceRegisterSDP
session_descriptor_t *sout_AnnounceRegisterSDP (vlc_object_t *obj,
const char *sdp,
const char *dst)
{
VLC_UNUSED (sdp); VLC_UNUSED (dst);
msg_Err (obj, "SDP export not compiled-in!");
return NULL;
}
#undef sout_AnnounceUnRegister
void sout_AnnounceUnRegister (vlc_object_t *obj, session_descriptor_t *d)
{
VLC_UNUSED (obj); VLC_UNUSED (d);
vlc_assert_unreachable ();
}
#undef sout_EncoderCreate
encoder_t *sout_EncoderCreate( vlc_object_t *p_this )
{
msg_Err (p_this, "Encoding support not compiled-in!");
return NULL;
}
sout_input_t *sout_MuxAddStream( sout_mux_t *mux, const es_format_t *fmt )
{
VLC_UNUSED (mux); VLC_UNUSED (fmt);
vlc_assert_unreachable ();
}
void sout_MuxDelete (sout_mux_t *mux)
{
VLC_UNUSED (mux);
vlc_assert_unreachable ();
}
void sout_MuxDeleteStream (sout_mux_t *mux, sout_input_t *input)
{
VLC_UNUSED (mux); VLC_UNUSED (input);
vlc_assert_unreachable ();
}
int sout_MuxGetStream (sout_mux_t *p_mux, unsigned int i_blocks, mtime_t *pi_dts)
{
VLC_UNUSED (p_mux); VLC_UNUSED (i_blocks); VLC_UNUSED (pi_dts);
vlc_assert_unreachable ();
}
sout_mux_t *sout_MuxNew (sout_instance_t *instance, const char *mux,
sout_access_out_t *out)
{
VLC_UNUSED (instance); VLC_UNUSED (mux); VLC_UNUSED (out);
vlc_assert_unreachable ();
}
int sout_MuxSendBuffer (sout_mux_t *mux, sout_input_t *input, block_t *block)
{
VLC_UNUSED (mux); VLC_UNUSED (input); VLC_UNUSED (block);
vlc_assert_unreachable ();
}
void sout_MuxFlush( sout_mux_t *mux, sout_input_t *input )
{
VLC_UNUSED (mux); VLC_UNUSED (input);
vlc_assert_unreachable ();
}
void sout_StreamChainDelete (sout_stream_t *p_first, sout_stream_t *p_last)
{
VLC_UNUSED (p_first); VLC_UNUSED (p_last);
vlc_assert_unreachable ();
}
sout_stream_t *sout_StreamChainNew (sout_instance_t *p_sout, const char *psz_chain,
sout_stream_t *p_next,
sout_stream_t **pp_last)
{
VLC_UNUSED (p_sout); VLC_UNUSED (psz_chain); VLC_UNUSED (p_next);
VLC_UNUSED (pp_last);
vlc_assert_unreachable ();
}
int vlc_sdp_Start (struct vlc_memstream *sdp, vlc_object_t *obj, const char *cfg,
const struct sockaddr *src, size_t srclen,
const struct sockaddr *addr, size_t addrlen)
{
VLC_UNUSED (obj); VLC_UNUSED (cfg); VLC_UNUSED (src); VLC_UNUSED (srclen);
VLC_UNUSED (addr); VLC_UNUSED (addrlen);
return 0;
}
#endif /* !ENABLE_SOUT */
#ifndef ENABLE_VLM
# include <vlc_vlm.h>
int vlm_Control (vlm_t *vlm, int query, ...)
{
VLC_UNUSED (query);
VLC_UNUSED (vlm);
vlc_assert_unreachable ();
}
void vlm_Delete (vlm_t *vlm)
{
VLC_UNUSED (vlm);
vlc_assert_unreachable ();
}
int vlm_ExecuteCommand (vlm_t *vlm, const char *cmd, vlm_message_t **pm)
{
VLC_UNUSED (vlm);
VLC_UNUSED (cmd);
VLC_UNUSED (pm);
vlc_assert_unreachable ();
}
vlm_message_t *vlm_MessageAdd (vlm_message_t *a, vlm_message_t *b)
{
VLC_UNUSED (a);
VLC_UNUSED (b);
vlc_assert_unreachable ();
}
void vlm_MessageDelete (vlm_message_t *m)
{
VLC_UNUSED (m);
vlc_assert_unreachable ();
}
vlm_message_t *vlm_MessageSimpleNew (const char *a)
{
VLC_UNUSED (a);
return NULL;
}
vlm_message_t *vlm_MessageNew (const char *a, const char *fmt, ...)
{
VLC_UNUSED (a);
VLC_UNUSED (fmt);
return vlm_MessageSimpleNew (a);
}
#undef vlm_New
vlm_t *vlm_New (vlc_object_t *obj)
{
msg_Err (obj, "VLM not compiled-in!");
return NULL;
}
#endif /* !ENABLE_VLM */
#ifndef UPDATE_CHECK
# include <vlc_update.h>
update_t *(update_New)(vlc_object_t *obj)
{
(void) obj;
return NULL;
}
void update_Delete(update_t *u)
{
(void) u;
vlc_assert_unreachable();
}
void update_Check(update_t *u, void (*cb)(void *, bool), void *opaque)
{
(void) u; (void) cb; (void) opaque;
vlc_assert_unreachable();
}
bool update_NeedUpgrade(update_t *u)
{
(void) u;
vlc_assert_unreachable();
}
void update_Download(update_t *u, const char *dir)
{
(void) u; (void) dir;
vlc_assert_unreachable();
}
update_release_t *update_GetRelease(update_t *u)
{
(void) u;
vlc_assert_unreachable();
}
#endif /* !UPDATE_CHECK */