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
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 *****************************************************************************/
30 * This file contains dummy replacement API for disabled features
37 #include <stdnoreturn.h>
39 #include <vlc_common.h>
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
,
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
);
57 void sdp_AddAttribute (struct vlc_memstream
*sdp
, const char *name
, const char *fmt
, ...)
59 VLC_UNUSED (sdp
); VLC_UNUSED (name
); VLC_UNUSED (fmt
);
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
)
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!");
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
,
107 VLC_UNUSED (sdp
); VLC_UNUSED (dst
);
108 msg_Err (obj
, "SDP export not compiled-in!");
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
, size_t owner_size
)
123 msg_Err (p_this
, "Encoding support not compiled-in!");
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
)
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
,
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
,
175 (void) first
; (void) last
;
176 vlc_assert_unreachable ();
179 noreturn sout_stream_t
*sout_StreamChainNew(sout_instance_t
*sout
,
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
);
196 #endif /* !ENABLE_SOUT */
199 # include <vlc_vlm.h>
201 noreturn
int vlm_Control(vlm_t
*vlm
, int query
, ...)
205 vlc_assert_unreachable ();
208 noreturn
void vlm_Delete(vlm_t
*vlm
)
211 vlc_assert_unreachable ();
214 noreturn
int vlm_ExecuteCommand(vlm_t
*vlm
, const char *cmd
,
220 vlc_assert_unreachable ();
223 noreturn vlm_message_t
*vlm_MessageAdd(vlm_message_t
*a
, vlm_message_t
*b
)
227 vlc_assert_unreachable ();
230 noreturn
void vlm_MessageDelete(vlm_message_t
*m
)
233 vlc_assert_unreachable ();
236 vlm_message_t
*vlm_MessageSimpleNew (const char *a
)
242 vlm_message_t
*vlm_MessageNew (const char *a
, const char *fmt
, ...)
246 return vlm_MessageSimpleNew (a
);
250 vlm_t
*vlm_New (libvlc_int_t
*obj
, const char *file
)
252 msg_Err (obj
, "VLM not compiled-in!");
256 #endif /* !ENABLE_VLM */
259 # include <vlc_update.h>
261 update_t
*(update_New
)(vlc_object_t
*obj
)
267 noreturn
void update_Delete(update_t
*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
)
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
)
294 vlc_assert_unreachable();
296 #endif /* !UPDATE_CHECK */
298 #include <vlc_threads.h>
299 #if defined(LIBVLC_USE_PTHREAD_CLEANUP)
300 noreturn
void vlc_control_cancel (vlc_cleanup_t
*cleaner
)
303 vlc_assert_unreachable ();