X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmissing.c;h=6a6ec19aa5981161189534916a14755c23b303e3;hb=487b7594aadd2aac678fe8c75607738f43aba6aa;hp=06c2b1b19de0ba47cacc8fdb069090af26356ba8;hpb=a0bc270c37df7f28c5d9fa2f5070f3c5638a6efc;p=vlc diff --git a/src/missing.c b/src/missing.c index 06c2b1b19d..6a6ec19aa5 100644 --- a/src/missing.c +++ b/src/missing.c @@ -32,23 +32,27 @@ #ifndef ENABLE_HTTPD # include -char *httpd_ClientIP (const httpd_client_t *cl, char *psz_ip) +char *httpd_ClientIP (const httpd_client_t *cl, char *psz_ip, int *port) { + (void) cl; (void) psz_ip; (void) port; assert (0); } void httpd_ClientModeBidir (httpd_client_t *cl) { + (void) cl; assert (0); } void httpd_ClientModeStream (httpd_client_t *cl) { + (void) cl; assert (0); } httpd_file_sys_t *httpd_FileDelete (httpd_file_t *file) { + (void) file; assert (0); } @@ -58,11 +62,16 @@ httpd_file_t *httpd_FileNew (httpd_host_t *host, const vlc_acl_t *acl, httpd_file_callback_t cb, httpd_file_sys_t *data) { + (void) host; + (void) url; (void) content_type; + (void) login; (void) password; (void) acl; + (void) cb; (void) data; assert (0); } httpd_handler_sys_t *httpd_HandlerDelete (httpd_handler_t *handler) { + (void) handler; assert (0); } @@ -72,52 +81,76 @@ httpd_handler_t *httpd_HandlerNew (httpd_host_t *host, const char *url, httpd_handler_callback_t cb, httpd_handler_sys_t *data) { + (void) host; (void) url; + (void) login; (void) password; (void) acl; + (void) cb; (void) data; assert (0); } void httpd_HostDelete (httpd_host_t *h) { + (void) h; assert (0); } -httpd_host_t *httpd_HostNew (vlc_object_t *obj, const char *host, int port) +httpd_host_t *vlc_http_HostNew (vlc_object_t *obj) { - return httpd_TLSHostNew (obj, host, port, NULL, NULL, NULL, NULL); + 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; assert (0); } const char *httpd_MsgGet (const httpd_message_t *m, const char *name) { + (void) m; (void) name; assert (0); } void httpd_RedirectDelete (httpd_redirect_t *r) { + (void) r; assert (0); } httpd_redirect_t *httpd_RedirectNew (httpd_host_t *host, const char *dst, const char *src) { + (void) host; (void) dst; (void) src; assert (0); } -char *httpd_ServerIP (const httpd_client_t *client, char *ip) +char *httpd_ServerIP (const httpd_client_t *client, char *ip, int *port) { + (void) client; (void) ip; (void) port; assert (0); } void httpd_StreamDelete (httpd_stream_t *stream) { + (void) stream; assert (0); } int httpd_StreamHeader (httpd_stream_t *stream, uint8_t *data, int count) { + (void) stream; (void) data; (void) count; assert (0); } @@ -126,30 +159,27 @@ httpd_stream_t *httpd_StreamNew (httpd_host_t *host, const char *login, const char *password, const vlc_acl_t *acl) { + (void) host; (void) url; (void) content_type; + (void) login; (void) password; (void) acl; assert (0); } int httpd_StreamSend (httpd_stream_t *stream, uint8_t *data, int count) { + (void) stream; (void) data; (void) count; assert (0); } -httpd_host_t *httpd_TLSHostNew (vlc_object_t *obj, const char *host, int port, - const char *cert, const char *key, - const char *ca, const char *crl) -{ - msg_Err (obj, "VLC httpd support not compiled-in!"); - return NULL; -} - 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; assert (0); } void httpd_UrlDelete (httpd_url_t *url) { + (void) url; assert (0); } @@ -157,6 +187,7 @@ httpd_url_t *httpd_UrlNew (httpd_host_t *host, const char *url, const char *login, const char *password, const vlc_acl_t *acl) { + (void) host; (void) url; (void) login; (void) password; (void) acl; assert (0); } @@ -164,6 +195,7 @@ httpd_url_t *httpd_UrlNewUnique (httpd_host_t *host, const char *url, const char *login, const char *password, const vlc_acl_t *acl) { + (void) host; (void) url; (void) login; (void) password; (void) acl; assert (0); } #endif /* !ENABLE_HTTPD */ @@ -222,11 +254,9 @@ ssize_t sout_AccessOutWrite (sout_access_out_t *out, block_t *block) #undef sout_AnnounceRegisterSDP session_descriptor_t *sout_AnnounceRegisterSDP (vlc_object_t *obj, const char *sdp, - const char *dst, - announce_method_t *method) + const char *dst) { msg_Err (obj, "SDP export not compiled-in!"); - assert (method == NULL); return NULL; } @@ -236,9 +266,11 @@ sout_AnnounceUnRegister (vlc_object_t *obj, session_descriptor_t *d) assert (0); } -void sout_MethodRelease (announce_method_t *method) +#undef sout_EncoderCreate +encoder_t *sout_EncoderCreate( vlc_object_t *p_this ) { - (void)method; + msg_Err (p_this, "Encoding support not compiled-in!"); + return NULL; } sout_input_t *sout_MuxAddStream (sout_mux_t *mux, es_format_t *fmt) @@ -256,34 +288,30 @@ void sout_MuxDeleteStream (sout_mux_t *mux, sout_input_t *input) assert (0); } -sout_mux_t *sout_MuxNew (sout_instance_t *instance, char *mux, - sout_access_out_t *out) +int sout_MuxGetStream (sout_mux_t *p_mux, int i_blocks, mtime_t *pi_dts) { assert (0); } -void sout_MuxSendBuffer (sout_mux_t *mux, sout_input_t *input, block_t *block) +sout_mux_t *sout_MuxNew (sout_instance_t *instance, const char *mux, + sout_access_out_t *out) { assert (0); } -announce_method_t *sout_SAPMethod (void) -{ - return NULL; -} - -void sout_StreamDelete (sout_stream_t *stream) +void sout_MuxSendBuffer (sout_mux_t *mux, sout_input_t *input, block_t *block) { assert (0); } -sout_stream_t *sout_StreamNew (sout_instance_t *instance, char *chain) +void sout_StreamChainDelete (sout_stream_t *p_first, sout_stream_t *p_last) { assert (0); } -void sout_UpdateStatistic (sout_instance_t *instance, sout_statistic_t stat, - int value) +sout_stream_t *sout_StreamChainNew (sout_instance_t *p_sout, char *psz_chain, + sout_stream_t *p_next, + sout_stream_t **pp_last) { assert (0); } @@ -301,37 +329,146 @@ char *vlc_sdp_Start (vlc_object_t *obj, const char *cfg, int vlm_Control (vlm_t *vlm, int query, ...) { + VLC_UNUSED (vlm); assert (0); } void vlm_Delete (vlm_t *vlm) { + VLC_UNUSED (vlm); assert (0); } int vlm_ExecuteCommand (vlm_t *vlm, const char *cmd, vlm_message_t **pm) { + VLC_UNUSED (vlm); + VLC_UNUSED (cmd); + VLC_UNUSED (pm); assert (0); } vlm_message_t *vlm_MessageAdd (vlm_message_t *a, vlm_message_t *b) { + VLC_UNUSED (a); + VLC_UNUSED (b); assert (0); } void vlm_MessageDelete (vlm_message_t *m) { + VLC_UNUSED (m); assert (0); } -vlm_message_t *vlm_MessageNew (const char *a, const char *fmt, ...) +vlm_message_t *vlm_MessageSimpleNew (const char *a) { + VLC_UNUSED (a); return NULL; } -vlm_t *__vlm_New (vlc_object_t *obj) +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 MEDIA_LIBRARY +#include + +#undef ml_Get +media_library_t* ml_Get ( vlc_object_t* p_this ) +{ + VLC_UNUSED( p_this ); + return NULL; +} + +media_library_t* ml_Create ( vlc_object_t *p_this, char* psz_name ) +{ + VLC_UNUSED( p_this ); + VLC_UNUSED( psz_name ); + return NULL; +} + +void ml_Destroy( vlc_object_t * p_this ) +{ + VLC_UNUSED( p_this ); + assert( 0 ); +} + +ml_media_t* media_New( media_library_t* p_ml, int id, ml_select_e select, bool reload ) +{ + VLC_UNUSED( p_ml ); + VLC_UNUSED( id ); + VLC_UNUSED( select ); + VLC_UNUSED( reload ); + assert( 0 ); + return NULL; +} + +#undef ml_UpdateSimple +int ml_UpdateSimple( media_library_t *p_media_library, ml_select_e selected_type, + const char* psz_lvalue, int id, ... ) +{ + VLC_UNUSED( p_media_library ); + VLC_UNUSED( selected_type ); + VLC_UNUSED( psz_lvalue ); + VLC_UNUSED( id ); + assert( 0 ); + return 0; +} + +ml_ftree_t* ml_OpConnectChilds( ml_op_e op, ml_ftree_t* left, ml_ftree_t* right ) +{ + VLC_UNUSED( op ); + VLC_UNUSED( left ); + VLC_UNUSED( right ); + assert( 0 ); + return NULL; +} + +ml_ftree_t* ml_FtreeSpec( ml_ftree_t* tree, ml_select_e crit, int limit, + char* sort ) +{ + VLC_UNUSED( tree ); + VLC_UNUSED( crit ); + VLC_UNUSED( limit ); + VLC_UNUSED( sort ); + assert( 0 ); + return NULL; +} + +void ml_PlaySmartPlaylistBasedOn( media_library_t* p_ml, + ml_ftree_t* p_tree ) +{ + VLC_UNUSED( p_ml ); + VLC_UNUSED( p_tree ); + assert( 0 ); +} + +void ml_DeletePersonTypeFromMedia( ml_media_t* p_media, const char *psz_role ) +{ + VLC_UNUSED( p_media ); + VLC_UNUSED( psz_role ); + assert( 0 ); +} + +ml_person_t* ml_GetPersonsFromMedia( media_library_t* p_ml, + ml_media_t* p_media, + const char *psz_role ) +{ + VLC_UNUSED( p_ml ); + VLC_UNUSED( p_media ); + VLC_UNUSED( psz_role ); + assert( 0 ); + return NULL; +} +#endif /* !MEDIA_LIBRARY */