Commit b13cc646 authored by Felix Paul Kühne's avatar Felix Paul Kühne

src/missing: remove return after assert case since this is only needed for...

src/missing: remove return after assert case since this is only needed for non-debug builds which are not used by developers anyway
parent 842ef35f
...@@ -45,14 +45,12 @@ char *httpd_ClientIP (const httpd_client_t *cl, char *psz_ip, int *port) ...@@ -45,14 +45,12 @@ char *httpd_ClientIP (const httpd_client_t *cl, char *psz_ip, int *port)
{ {
(void) cl; (void) psz_ip; (void) port; (void) cl; (void) psz_ip; (void) port;
assert (0); assert (0);
return NULL;
} }
httpd_file_sys_t *httpd_FileDelete (httpd_file_t *file) httpd_file_sys_t *httpd_FileDelete (httpd_file_t *file)
{ {
(void) file; (void) file;
assert (0); assert (0);
return NULL;
} }
httpd_file_t *httpd_FileNew (httpd_host_t *host, httpd_file_t *httpd_FileNew (httpd_host_t *host,
...@@ -65,14 +63,12 @@ httpd_file_t *httpd_FileNew (httpd_host_t *host, ...@@ -65,14 +63,12 @@ httpd_file_t *httpd_FileNew (httpd_host_t *host,
(void) login; (void) password; (void) login; (void) password;
(void) cb; (void) data; (void) cb; (void) data;
assert (0); assert (0);
return NULL;
} }
httpd_handler_sys_t *httpd_HandlerDelete (httpd_handler_t *handler) httpd_handler_sys_t *httpd_HandlerDelete (httpd_handler_t *handler)
{ {
(void) handler; (void) handler;
assert (0); assert (0);
return NULL;
} }
httpd_handler_t *httpd_HandlerNew (httpd_host_t *host, const char *url, httpd_handler_t *httpd_HandlerNew (httpd_host_t *host, const char *url,
...@@ -84,7 +80,6 @@ httpd_handler_t *httpd_HandlerNew (httpd_host_t *host, const char *url, ...@@ -84,7 +80,6 @@ httpd_handler_t *httpd_HandlerNew (httpd_host_t *host, const char *url,
(void) login; (void) password; (void) login; (void) password;
(void) cb; (void) data; (void) cb; (void) data;
assert (0); assert (0);
return NULL;
} }
void httpd_HostDelete (httpd_host_t *h) void httpd_HostDelete (httpd_host_t *h)
...@@ -121,7 +116,6 @@ const char *httpd_MsgGet (const httpd_message_t *m, const char *name) ...@@ -121,7 +116,6 @@ const char *httpd_MsgGet (const httpd_message_t *m, const char *name)
{ {
(void) m; (void) name; (void) m; (void) name;
assert (0); assert (0);
return NULL;
} }
void httpd_RedirectDelete (httpd_redirect_t *r) void httpd_RedirectDelete (httpd_redirect_t *r)
...@@ -135,14 +129,12 @@ httpd_redirect_t *httpd_RedirectNew (httpd_host_t *host, ...@@ -135,14 +129,12 @@ httpd_redirect_t *httpd_RedirectNew (httpd_host_t *host,
{ {
(void) host; (void) dst; (void) src; (void) host; (void) dst; (void) src;
assert (0); assert (0);
return NULL;
} }
char *httpd_ServerIP (const httpd_client_t *client, char *ip, int *port) char *httpd_ServerIP (const httpd_client_t *client, char *ip, int *port)
{ {
(void) client; (void) ip; (void) port; (void) client; (void) ip; (void) port;
assert (0); assert (0);
return NULL;
} }
void httpd_StreamDelete (httpd_stream_t *stream) void httpd_StreamDelete (httpd_stream_t *stream)
...@@ -155,7 +147,6 @@ int httpd_StreamHeader (httpd_stream_t *stream, uint8_t *data, int count) ...@@ -155,7 +147,6 @@ int httpd_StreamHeader (httpd_stream_t *stream, uint8_t *data, int count)
{ {
(void) stream; (void) data; (void) count; (void) stream; (void) data; (void) count;
assert (0); assert (0);
return 0;
} }
httpd_stream_t *httpd_StreamNew (httpd_host_t *host, httpd_stream_t *httpd_StreamNew (httpd_host_t *host,
...@@ -165,14 +156,12 @@ httpd_stream_t *httpd_StreamNew (httpd_host_t *host, ...@@ -165,14 +156,12 @@ httpd_stream_t *httpd_StreamNew (httpd_host_t *host,
(void) host; (void) url; (void) content_type; (void) host; (void) url; (void) content_type;
(void) login; (void) password; (void) login; (void) password;
assert (0); assert (0);
return NULL;
} }
int httpd_StreamSend (httpd_stream_t *stream, const block_t *p_block) int httpd_StreamSend (httpd_stream_t *stream, const block_t *p_block)
{ {
(void) stream; (void) p_block; (void) stream; (void) p_block;
assert (0); assert (0);
return 0;
} }
int httpd_StreamSetHTTPHeaders (httpd_stream_t * stream, int httpd_StreamSetHTTPHeaders (httpd_stream_t * stream,
...@@ -181,7 +170,6 @@ int httpd_StreamSetHTTPHeaders (httpd_stream_t * stream, ...@@ -181,7 +170,6 @@ int httpd_StreamSetHTTPHeaders (httpd_stream_t * stream,
{ {
(void) stream; (void) headers; (void) i_headers; (void) stream; (void) headers; (void) i_headers;
assert (0); assert (0);
return 0;
} }
int httpd_UrlCatch (httpd_url_t *url, int request, httpd_callback_t cb, int httpd_UrlCatch (httpd_url_t *url, int request, httpd_callback_t cb,
...@@ -189,7 +177,6 @@ int httpd_UrlCatch (httpd_url_t *url, int request, httpd_callback_t cb, ...@@ -189,7 +177,6 @@ int httpd_UrlCatch (httpd_url_t *url, int request, httpd_callback_t cb,
{ {
(void) url; (void) request; (void) cb; (void) data; (void) url; (void) request; (void) cb; (void) data;
assert (0); assert (0);
return 0;
} }
void httpd_UrlDelete (httpd_url_t *url) void httpd_UrlDelete (httpd_url_t *url)
...@@ -203,7 +190,6 @@ httpd_url_t *httpd_UrlNew (httpd_host_t *host, const char *url, ...@@ -203,7 +190,6 @@ httpd_url_t *httpd_UrlNew (httpd_host_t *host, const char *url,
{ {
(void) host; (void) url; (void) login; (void) password; (void) host; (void) url; (void) login; (void) password;
assert (0); assert (0);
return NULL;
} }
#endif /* !ENABLE_HTTPD */ #endif /* !ENABLE_HTTPD */
...@@ -220,21 +206,18 @@ char *sdp_AddMedia (char **sdp, const char *type, const char *protocol, ...@@ -220,21 +206,18 @@ char *sdp_AddMedia (char **sdp, const char *type, const char *protocol,
VLC_UNUSED (bw); VLC_UNUSED (ptname); VLC_UNUSED (clockrate); VLC_UNUSED (bw); VLC_UNUSED (ptname); VLC_UNUSED (clockrate);
VLC_UNUSED (channels); VLC_UNUSED (fmtp); VLC_UNUSED (channels); VLC_UNUSED (fmtp);
assert (*sdp == NULL); assert (*sdp == NULL);
return NULL;
} }
char *sdp_AddAttribute (char **sdp, const char *name, const char *fmt, ...) char *sdp_AddAttribute (char **sdp, const char *name, const char *fmt, ...)
{ {
VLC_UNUSED (sdp); VLC_UNUSED (name); VLC_UNUSED (fmt); VLC_UNUSED (sdp); VLC_UNUSED (name); VLC_UNUSED (fmt);
assert (*sdp == NULL); assert (*sdp == NULL);
return NULL;
} }
int sout_AccessOutControl (sout_access_out_t *out, int query, ...) int sout_AccessOutControl (sout_access_out_t *out, int query, ...)
{ {
VLC_UNUSED (out); VLC_UNUSED (query); VLC_UNUSED (out); VLC_UNUSED (query);
assert (0); assert (0);
return 0;
} }
void sout_AccessOutDelete (sout_access_out_t *out) void sout_AccessOutDelete (sout_access_out_t *out)
...@@ -256,21 +239,18 @@ ssize_t sout_AccessOutRead (sout_access_out_t *out, block_t *block) ...@@ -256,21 +239,18 @@ ssize_t sout_AccessOutRead (sout_access_out_t *out, block_t *block)
{ {
VLC_UNUSED (out); VLC_UNUSED (block); VLC_UNUSED (out); VLC_UNUSED (block);
assert (0); assert (0);
return 0;
} }
int sout_AccessOutSeek (sout_access_out_t *out, off_t offset) int sout_AccessOutSeek (sout_access_out_t *out, off_t offset)
{ {
VLC_UNUSED (out); VLC_UNUSED (offset); VLC_UNUSED (out); VLC_UNUSED (offset);
assert (0); assert (0);
return 0;
} }
ssize_t sout_AccessOutWrite (sout_access_out_t *out, block_t *block) ssize_t sout_AccessOutWrite (sout_access_out_t *out, block_t *block)
{ {
VLC_UNUSED (out); VLC_UNUSED (block); VLC_UNUSED (out); VLC_UNUSED (block);
assert (0); assert (0);
return 0;
} }
#undef sout_AnnounceRegisterSDP #undef sout_AnnounceRegisterSDP
...@@ -288,7 +268,6 @@ int sout_AnnounceUnRegister (vlc_object_t *obj, session_descriptor_t *d) ...@@ -288,7 +268,6 @@ int sout_AnnounceUnRegister (vlc_object_t *obj, session_descriptor_t *d)
{ {
VLC_UNUSED (obj); VLC_UNUSED (d); VLC_UNUSED (obj); VLC_UNUSED (d);
assert (0); assert (0);
return 0;
} }
#undef sout_EncoderCreate #undef sout_EncoderCreate
...@@ -302,7 +281,6 @@ sout_input_t *sout_MuxAddStream (sout_mux_t *mux, es_format_t *fmt) ...@@ -302,7 +281,6 @@ sout_input_t *sout_MuxAddStream (sout_mux_t *mux, es_format_t *fmt)
{ {
VLC_UNUSED (mux); VLC_UNUSED (fmt); VLC_UNUSED (mux); VLC_UNUSED (fmt);
assert (0); assert (0);
return NULL;
} }
void sout_MuxDelete (sout_mux_t *mux) void sout_MuxDelete (sout_mux_t *mux)
...@@ -321,7 +299,6 @@ int sout_MuxGetStream (sout_mux_t *p_mux, int i_blocks, mtime_t *pi_dts) ...@@ -321,7 +299,6 @@ int sout_MuxGetStream (sout_mux_t *p_mux, int i_blocks, mtime_t *pi_dts)
{ {
VLC_UNUSED (p_mux); VLC_UNUSED (i_blocks); VLC_UNUSED (pi_dts); VLC_UNUSED (p_mux); VLC_UNUSED (i_blocks); VLC_UNUSED (pi_dts);
assert (0); assert (0);
return 0;
} }
sout_mux_t *sout_MuxNew (sout_instance_t *instance, const char *mux, sout_mux_t *sout_MuxNew (sout_instance_t *instance, const char *mux,
...@@ -329,14 +306,12 @@ sout_mux_t *sout_MuxNew (sout_instance_t *instance, const char *mux, ...@@ -329,14 +306,12 @@ sout_mux_t *sout_MuxNew (sout_instance_t *instance, const char *mux,
{ {
VLC_UNUSED (instance); VLC_UNUSED (mux); VLC_UNUSED (out); VLC_UNUSED (instance); VLC_UNUSED (mux); VLC_UNUSED (out);
assert (0); assert (0);
return NULL;
} }
int sout_MuxSendBuffer (sout_mux_t *mux, sout_input_t *input, block_t *block) int sout_MuxSendBuffer (sout_mux_t *mux, sout_input_t *input, block_t *block)
{ {
VLC_UNUSED (mux); VLC_UNUSED (input); VLC_UNUSED (block); VLC_UNUSED (mux); VLC_UNUSED (input); VLC_UNUSED (block);
assert (0); assert (0);
return 0;
} }
void sout_StreamChainDelete (sout_stream_t *p_first, sout_stream_t *p_last) void sout_StreamChainDelete (sout_stream_t *p_first, sout_stream_t *p_last)
...@@ -352,7 +327,6 @@ sout_stream_t *sout_StreamChainNew (sout_instance_t *p_sout, char *psz_chain, ...@@ -352,7 +327,6 @@ sout_stream_t *sout_StreamChainNew (sout_instance_t *p_sout, char *psz_chain,
VLC_UNUSED (p_sout); VLC_UNUSED (psz_chain); VLC_UNUSED (p_next); VLC_UNUSED (p_sout); VLC_UNUSED (psz_chain); VLC_UNUSED (p_next);
VLC_UNUSED (pp_last); VLC_UNUSED (pp_last);
assert (0); assert (0);
return NULL;
} }
char *vlc_sdp_Start (vlc_object_t *obj, const char *cfg, char *vlc_sdp_Start (vlc_object_t *obj, const char *cfg,
...@@ -373,7 +347,6 @@ int vlm_Control (vlm_t *vlm, int query, ...) ...@@ -373,7 +347,6 @@ int vlm_Control (vlm_t *vlm, int query, ...)
VLC_UNUSED (query); VLC_UNUSED (query);
VLC_UNUSED (vlm); VLC_UNUSED (vlm);
assert (0); assert (0);
return 0;
} }
void vlm_Delete (vlm_t *vlm) void vlm_Delete (vlm_t *vlm)
...@@ -388,7 +361,6 @@ int vlm_ExecuteCommand (vlm_t *vlm, const char *cmd, vlm_message_t **pm) ...@@ -388,7 +361,6 @@ int vlm_ExecuteCommand (vlm_t *vlm, const char *cmd, vlm_message_t **pm)
VLC_UNUSED (cmd); VLC_UNUSED (cmd);
VLC_UNUSED (pm); VLC_UNUSED (pm);
assert (0); assert (0);
return 0;
} }
vlm_message_t *vlm_MessageAdd (vlm_message_t *a, vlm_message_t *b) vlm_message_t *vlm_MessageAdd (vlm_message_t *a, vlm_message_t *b)
...@@ -396,7 +368,6 @@ vlm_message_t *vlm_MessageAdd (vlm_message_t *a, vlm_message_t *b) ...@@ -396,7 +368,6 @@ vlm_message_t *vlm_MessageAdd (vlm_message_t *a, vlm_message_t *b)
VLC_UNUSED (a); VLC_UNUSED (a);
VLC_UNUSED (b); VLC_UNUSED (b);
assert (0); assert (0);
return NULL;
} }
void vlm_MessageDelete (vlm_message_t *m) void vlm_MessageDelete (vlm_message_t *m)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment