gui: macos: use float for rate
[vlc.git] / src / missing.c
blob4e8b7c919057b6e031cf3544a0d2ba4cf5b97b17
1 /*****************************************************************************
2 * missing.c: missing libvlccore symbols
3 *****************************************************************************
4 * Copyright (C) 2008-2011 Rémi Denis-Courmont
5 * Copyright (C) 2009-2014 VLC authors and VideoLAN
7 * Authors: Rémi Denis-Courmont <rem # videolan : org>
8 * Pierre Ynard <linkfanel # yahoo fr>
9 * Toralf Niebuhr <gmthor85 # aim com>
10 * Felix Paul Kühne <fkuehne # videolan org>
11 * Jean-Paul Saman <jpsaman # videolan org>
12 * Antoine Cellerier <dionoea # videolan org>
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU Lesser General Public License as published by
16 * the Free Software Foundation; either version 2.1 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Lesser General Public License for more details.
24 * You should have received a copy of the GNU Lesser General Public License
25 * along with this program; if not, write to the Free Software Foundation,
26 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
27 *****************************************************************************/
29 /** \file
30 * This file contains dummy replacement API for disabled features
33 #ifdef HAVE_CONFIG_H
34 # include "config.h"
35 #endif
37 #include <stdnoreturn.h>
39 #include <vlc_common.h>
40 #include <assert.h>
42 #ifndef ENABLE_SOUT
43 # include <vlc_sout.h>
45 void sdp_AddMedia (struct vlc_memstream *sdp, const char *type, const char *protocol,
46 int dport, unsigned pt, bool bw_indep, unsigned bw,
47 const char *ptname, unsigned clockrate, unsigned channels,
48 const char *fmtp)
50 VLC_UNUSED (sdp); VLC_UNUSED (type); VLC_UNUSED (protocol);
51 VLC_UNUSED (dport); VLC_UNUSED (pt); VLC_UNUSED (bw_indep);
52 VLC_UNUSED (bw); VLC_UNUSED (ptname); VLC_UNUSED (clockrate);
53 VLC_UNUSED (channels); VLC_UNUSED (fmtp);
54 assert (sdp == NULL);
57 void sdp_AddAttribute (struct vlc_memstream *sdp, const char *name, const char *fmt, ...)
59 VLC_UNUSED (sdp); VLC_UNUSED (name); VLC_UNUSED (fmt);
60 assert (sdp == NULL);
63 noreturn int sout_AccessOutControl(sout_access_out_t *out, int query, ...)
65 VLC_UNUSED (out); VLC_UNUSED (query);
66 vlc_assert_unreachable ();
69 noreturn void sout_AccessOutDelete(sout_access_out_t *out)
71 VLC_UNUSED (out);
72 vlc_assert_unreachable ();
75 #undef sout_AccessOutNew
76 sout_access_out_t *sout_AccessOutNew (vlc_object_t *obj,
77 const char *access, const char *name)
79 VLC_UNUSED (access); VLC_UNUSED (name);
80 msg_Err (obj, "Output support not compiled-in!");
81 return NULL;
84 noreturn ssize_t sout_AccessOutRead(sout_access_out_t *out, block_t *block)
86 VLC_UNUSED (out); VLC_UNUSED (block);
87 vlc_assert_unreachable ();
90 noreturn int sout_AccessOutSeek(sout_access_out_t *out, off_t offset)
92 VLC_UNUSED (out); VLC_UNUSED (offset);
93 vlc_assert_unreachable ();
96 noreturn ssize_t sout_AccessOutWrite(sout_access_out_t *out, block_t *block)
98 VLC_UNUSED (out); VLC_UNUSED (block);
99 vlc_assert_unreachable ();
102 #undef sout_AnnounceRegisterSDP
103 session_descriptor_t *sout_AnnounceRegisterSDP (vlc_object_t *obj,
104 const char *sdp,
105 const char *dst)
107 VLC_UNUSED (sdp); VLC_UNUSED (dst);
108 msg_Err (obj, "SDP export not compiled-in!");
109 return NULL;
112 #undef sout_AnnounceUnRegister
113 noreturn void sout_AnnounceUnRegister(vlc_object_t *obj,
114 session_descriptor_t *d)
116 VLC_UNUSED (obj); VLC_UNUSED (d);
117 vlc_assert_unreachable ();
120 #undef sout_EncoderCreate
121 encoder_t *sout_EncoderCreate( vlc_object_t *p_this )
123 msg_Err (p_this, "Encoding support not compiled-in!");
124 return NULL;
127 noreturn sout_input_t *sout_MuxAddStream(sout_mux_t *mux,
128 const es_format_t *fmt)
130 VLC_UNUSED (mux); VLC_UNUSED (fmt);
131 vlc_assert_unreachable ();
134 noreturn void sout_MuxDelete(sout_mux_t *mux)
136 VLC_UNUSED (mux);
137 vlc_assert_unreachable ();
140 noreturn void sout_MuxDeleteStream(sout_mux_t *mux, sout_input_t *input)
142 VLC_UNUSED (mux); VLC_UNUSED (input);
143 vlc_assert_unreachable ();
146 noreturn int sout_MuxGetStream(sout_mux_t *mux, unsigned n, vlc_tick_t *date)
148 (void) mux; (void) n; (void) date;
149 vlc_assert_unreachable ();
152 noreturn sout_mux_t *sout_MuxNew(sout_instance_t *instance, const char *mux,
153 sout_access_out_t *out)
155 VLC_UNUSED (instance); VLC_UNUSED (mux); VLC_UNUSED (out);
156 vlc_assert_unreachable ();
159 noreturn int sout_MuxSendBuffer(sout_mux_t *mux, sout_input_t *input,
160 block_t *block)
162 VLC_UNUSED (mux); VLC_UNUSED (input); VLC_UNUSED (block);
163 vlc_assert_unreachable ();
166 noreturn void sout_MuxFlush(sout_mux_t *mux, sout_input_t *input)
168 VLC_UNUSED (mux); VLC_UNUSED (input);
169 vlc_assert_unreachable ();
172 noreturn void sout_StreamChainDelete(sout_stream_t *first,
173 sout_stream_t *last)
175 (void) first; (void) last;
176 vlc_assert_unreachable ();
179 noreturn sout_stream_t *sout_StreamChainNew(sout_instance_t *sout,
180 const char *chain,
181 sout_stream_t *next,
182 sout_stream_t **last)
184 (void) sout; (void) chain; (void) next; (void) last;
185 vlc_assert_unreachable ();
188 int vlc_sdp_Start (struct vlc_memstream *sdp, vlc_object_t *obj, const char *cfg,
189 const struct sockaddr *src, size_t srclen,
190 const struct sockaddr *addr, size_t addrlen)
192 VLC_UNUSED (obj); VLC_UNUSED (cfg); VLC_UNUSED (src); VLC_UNUSED (srclen);
193 VLC_UNUSED (addr); VLC_UNUSED (addrlen);
194 return 0;
196 #endif /* !ENABLE_SOUT */
198 #ifndef ENABLE_VLM
199 # include <vlc_vlm.h>
201 noreturn int vlm_Control(vlm_t *vlm, int query, ...)
203 VLC_UNUSED (query);
204 VLC_UNUSED (vlm);
205 vlc_assert_unreachable ();
208 noreturn void vlm_Delete(vlm_t *vlm)
210 VLC_UNUSED (vlm);
211 vlc_assert_unreachable ();
214 noreturn int vlm_ExecuteCommand(vlm_t *vlm, const char *cmd,
215 vlm_message_t **pm)
217 VLC_UNUSED (vlm);
218 VLC_UNUSED (cmd);
219 VLC_UNUSED (pm);
220 vlc_assert_unreachable ();
223 noreturn vlm_message_t *vlm_MessageAdd(vlm_message_t *a, vlm_message_t *b)
225 VLC_UNUSED (a);
226 VLC_UNUSED (b);
227 vlc_assert_unreachable ();
230 noreturn void vlm_MessageDelete(vlm_message_t *m)
232 VLC_UNUSED (m);
233 vlc_assert_unreachable ();
236 vlm_message_t *vlm_MessageSimpleNew (const char *a)
238 VLC_UNUSED (a);
239 return NULL;
242 vlm_message_t *vlm_MessageNew (const char *a, const char *fmt, ...)
244 VLC_UNUSED (a);
245 VLC_UNUSED (fmt);
246 return vlm_MessageSimpleNew (a);
249 #undef vlm_New
250 vlm_t *vlm_New (libvlc_int_t *obj, const char *file)
252 msg_Err (obj, "VLM not compiled-in!");
253 (void) file;
254 return NULL;
256 #endif /* !ENABLE_VLM */
258 #ifndef UPDATE_CHECK
259 # include <vlc_update.h>
261 update_t *(update_New)(vlc_object_t *obj)
263 (void) obj;
264 return NULL;
267 noreturn void update_Delete(update_t *u)
269 (void) u;
270 vlc_assert_unreachable();
273 noreturn void update_Check(update_t *u, void (*cb)(void *, bool), void *opaque)
275 (void) u; (void) cb; (void) opaque;
276 vlc_assert_unreachable();
279 noreturn bool update_NeedUpgrade(update_t *u)
281 (void) u;
282 vlc_assert_unreachable();
285 noreturn void update_Download(update_t *u, const char *dir)
287 (void) u; (void) dir;
288 vlc_assert_unreachable();
291 noreturn update_release_t *update_GetRelease(update_t *u)
293 (void) u;
294 vlc_assert_unreachable();
296 #endif /* !UPDATE_CHECK */