contrib: taglib: fetch patch from https://github.com/taglib/taglib/pull/309
[vlc/gmpfix.git] / src / missing.c
bloba19a798e3bc0fd3580cb0ab983cb2649c41a04cd
1 /*****************************************************************************
2 * missing.c: missing libvlccore symbols
3 *****************************************************************************
4 * Copyright (C) 2008 RĂ©mi Denis-Courmont
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 /** \file
22 * This file contains dummy replacement API for disabled features
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
29 #include <vlc_common.h>
30 #include <assert.h>
32 #ifndef ENABLE_HTTPD
33 # include <vlc_httpd.h>
35 char *httpd_ClientIP (const httpd_client_t *cl, char *psz_ip, int *port)
37 (void) cl; (void) psz_ip; (void) port;
38 assert (0);
41 void httpd_ClientModeBidir (httpd_client_t *cl)
43 (void) cl;
44 assert (0);
47 void httpd_ClientModeStream (httpd_client_t *cl)
49 (void) cl;
50 assert (0);
53 httpd_file_sys_t *httpd_FileDelete (httpd_file_t *file)
55 (void) file;
56 assert (0);
59 httpd_file_t *httpd_FileNew (httpd_host_t *host,
60 const char *url, const char *content_type,
61 const char *login, const char *password,
62 httpd_file_callback_t cb, httpd_file_sys_t *data)
64 (void) host;
65 (void) url; (void) content_type;
66 (void) login; (void) password;
67 (void) cb; (void) data;
68 assert (0);
71 httpd_handler_sys_t *httpd_HandlerDelete (httpd_handler_t *handler)
73 (void) handler;
74 assert (0);
77 httpd_handler_t *httpd_HandlerNew (httpd_host_t *host, const char *url,
78 const char *login, const char *password,
79 httpd_handler_callback_t cb,
80 httpd_handler_sys_t *data)
82 (void) host; (void) url;
83 (void) login; (void) password;
84 (void) cb; (void) data;
85 assert (0);
88 void httpd_HostDelete (httpd_host_t *h)
90 (void) h;
91 assert (0);
94 httpd_host_t *vlc_http_HostNew (vlc_object_t *obj)
96 msg_Err (obj, "HTTP server not compiled-in!");
97 return NULL;
100 httpd_host_t *vlc_https_HostNew (vlc_object_t *obj)
102 msg_Err (obj, "HTTPS server not compiled-in!");
103 return NULL;
106 httpd_host_t *vlc_rtsp_HostNew (vlc_object_t *obj)
108 msg_Err (obj, "RTSP server not compiled-in!");
109 return NULL;
112 void httpd_MsgAdd (httpd_message_t *m, const char *name, const char *fmt, ...)
114 (void) m; (void) name; (void) fmt;
115 assert (0);
118 const char *httpd_MsgGet (const httpd_message_t *m, const char *name)
120 (void) m; (void) name;
121 assert (0);
124 void httpd_RedirectDelete (httpd_redirect_t *r)
126 (void) r;
127 assert (0);
130 httpd_redirect_t *httpd_RedirectNew (httpd_host_t *host,
131 const char *dst, const char *src)
133 (void) host; (void) dst; (void) src;
134 assert (0);
137 char *httpd_ServerIP (const httpd_client_t *client, char *ip, int *port)
139 (void) client; (void) ip; (void) port;
140 assert (0);
143 void httpd_StreamDelete (httpd_stream_t *stream)
145 (void) stream;
146 assert (0);
149 int httpd_StreamHeader (httpd_stream_t *stream, uint8_t *data, int count)
151 (void) stream; (void) data; (void) count;
152 assert (0);
155 httpd_stream_t *httpd_StreamNew (httpd_host_t *host,
156 const char *url, const char *content_type,
157 const char *login, const char *password)
159 (void) host; (void) url; (void) content_type;
160 (void) login; (void) password;
161 assert (0);
164 int httpd_StreamSend (httpd_stream_t *stream, const block_t *p_block)
166 (void) stream; (void) p_block;
167 assert (0);
170 int httpd_UrlCatch (httpd_url_t *url, int request, httpd_callback_t cb,
171 httpd_callback_sys_t *data)
173 (void) url; (void) request; (void) cb; (void) data;
174 assert (0);
177 void httpd_UrlDelete (httpd_url_t *url)
179 (void) url;
180 assert (0);
183 httpd_url_t *httpd_UrlNew (httpd_host_t *host, const char *url,
184 const char *login, const char *password)
186 (void) host; (void) url; (void) login; (void) password;
187 assert (0);
189 #endif /* !ENABLE_HTTPD */
191 #ifndef ENABLE_SOUT
192 # include <vlc_sout.h>
194 char *sdp_AddMedia (char **sdp, const char *type, const char *protocol,
195 int dport, unsigned pt, bool bw_indep, unsigned bw,
196 const char *ptname, unsigned clockrate, unsigned channels,
197 const char *fmtp)
199 assert (*sdp == NULL);
200 return NULL;
203 char *sdp_AddAttribute (char **sdp, const char *name, const char *fmt, ...)
205 assert (*sdp == NULL);
206 return NULL;
209 int sout_AccessOutControl (sout_access_out_t *out, int query, ...)
211 assert (0);
214 void sout_AccessOutDelete (sout_access_out_t *out)
216 assert (0);
219 #undef sout_AccessOutNew
220 sout_access_out_t *sout_AccessOutNew (vlc_object_t *obj,
221 const char *access, const char *name)
223 msg_Err (obj, "Output support not compiled-in!");
224 return NULL;
227 ssize_t sout_AccessOutRead (sout_access_out_t *out, block_t *block)
229 assert (0);
232 int sout_AccessOutSeek (sout_access_out_t *out, off_t offset)
234 assert (0);
237 ssize_t sout_AccessOutWrite (sout_access_out_t *out, block_t *block)
239 assert (0);
242 #undef sout_AnnounceRegisterSDP
243 session_descriptor_t *sout_AnnounceRegisterSDP (vlc_object_t *obj,
244 const char *sdp,
245 const char *dst)
247 msg_Err (obj, "SDP export not compiled-in!");
248 return NULL;
251 #undef sout_AnnounceUnRegister
252 sout_AnnounceUnRegister (vlc_object_t *obj, session_descriptor_t *d)
254 assert (0);
257 #undef sout_EncoderCreate
258 encoder_t *sout_EncoderCreate( vlc_object_t *p_this )
260 msg_Err (p_this, "Encoding support not compiled-in!");
261 return NULL;
264 sout_input_t *sout_MuxAddStream (sout_mux_t *mux, es_format_t *fmt)
266 assert (0);
269 void sout_MuxDelete (sout_mux_t *mux)
271 assert (0);
274 void sout_MuxDeleteStream (sout_mux_t *mux, sout_input_t *input)
276 assert (0);
279 int sout_MuxGetStream (sout_mux_t *p_mux, int i_blocks, mtime_t *pi_dts)
281 assert (0);
284 sout_mux_t *sout_MuxNew (sout_instance_t *instance, const char *mux,
285 sout_access_out_t *out)
287 assert (0);
290 void sout_MuxSendBuffer (sout_mux_t *mux, sout_input_t *input, block_t *block)
292 assert (0);
295 void sout_StreamChainDelete (sout_stream_t *p_first, sout_stream_t *p_last)
297 assert (0);
300 sout_stream_t *sout_StreamChainNew (sout_instance_t *p_sout, char *psz_chain,
301 sout_stream_t *p_next,
302 sout_stream_t **pp_last)
304 assert (0);
307 char *vlc_sdp_Start (vlc_object_t *obj, const char *cfg,
308 const struct sockaddr *src, size_t srclen,
309 const struct sockaddr *addr, size_t addrlen)
311 return NULL;
313 #endif /* !ENABLE_SOUT */
315 #ifndef ENABLE_VLM
316 # include <vlc_vlm.h>
318 int vlm_Control (vlm_t *vlm, int query, ...)
320 VLC_UNUSED (vlm);
321 assert (0);
324 void vlm_Delete (vlm_t *vlm)
326 VLC_UNUSED (vlm);
327 assert (0);
330 int vlm_ExecuteCommand (vlm_t *vlm, const char *cmd, vlm_message_t **pm)
332 VLC_UNUSED (vlm);
333 VLC_UNUSED (cmd);
334 VLC_UNUSED (pm);
335 assert (0);
338 vlm_message_t *vlm_MessageAdd (vlm_message_t *a, vlm_message_t *b)
340 VLC_UNUSED (a);
341 VLC_UNUSED (b);
342 assert (0);
345 void vlm_MessageDelete (vlm_message_t *m)
347 VLC_UNUSED (m);
348 assert (0);
351 vlm_message_t *vlm_MessageSimpleNew (const char *a)
353 VLC_UNUSED (a);
354 return NULL;
357 vlm_message_t *vlm_MessageNew (const char *a, const char *fmt, ...)
359 VLC_UNUSED (a);
360 VLC_UNUSED (fmt);
361 return vlm_MessageSimpleNew (a);
364 #undef vlm_New
365 vlm_t *vlm_New (vlc_object_t *obj)
367 msg_Err (obj, "VLM not compiled-in!");
368 return NULL;
370 #endif /* !ENABLE_VLM */