X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmissing.c;h=613e08069c2cf0c5f37ad7d39710c17de9eb0fb3;hb=098b32ee0d83c6cb5f6a6a16d298687ca7e8556b;hp=3e678cfe8408be258baf4973f58e1c985aee02b8;hpb=4362a469b5203cc57a17d4acb9354e8d03925478;p=vlc diff --git a/src/missing.c b/src/missing.c index 3e678cfe84..613e08069c 100644 --- a/src/missing.c +++ b/src/missing.c @@ -292,7 +292,12 @@ void sout_MuxDeleteStream (sout_mux_t *mux, sout_input_t *input) assert (0); } -sout_mux_t *sout_MuxNew (sout_instance_t *instance, char *mux, +int sout_MuxGetStream (sout_mux_t *p_mux, int i_blocks, mtime_t *pi_dts) +{ + assert (0); +} + +sout_mux_t *sout_MuxNew (sout_instance_t *instance, const char *mux, sout_access_out_t *out) { assert (0); @@ -308,12 +313,14 @@ announce_method_t *sout_SAPMethod (void) return NULL; } -void sout_StreamDelete (sout_stream_t *stream) +void sout_StreamChainDelete (sout_stream_t *p_first, sout_stream_t *p_last) { assert (0); } -sout_stream_t *sout_StreamNew (sout_instance_t *instance, char *chain) +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); } @@ -337,37 +344,153 @@ 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_Hold +media_library_t* ml_Hold ( vlc_object_t* p_this ) +{ + VLC_UNUSED( p_this ); + return NULL; +} + +#undef ml_Release +void ml_Release ( vlc_object_t* p_this ) +{ + VLC_UNUSED( p_this ); + assert( 0 ); +} + +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 */