]> git.sesse.net Git - vlc/blobdiff - src/missing.c
Improved debug messages
[vlc] / src / missing.c
index 87e24a40f385f24b1a9c1d1fd8eebd95a24c9310..3bfb41ff336cc7517c5f5d63ab96b2b0ee795735 100644 (file)
@@ -251,11 +251,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;
 }
 
@@ -272,11 +270,6 @@ encoder_t *sout_EncoderCreate( vlc_object_t *p_this )
     return NULL;
 }
 
-void sout_MethodRelease (announce_method_t *method)
-{
-    (void)method;
-}
-
 sout_input_t *sout_MuxAddStream (sout_mux_t *mux, es_format_t *fmt)
 {
     assert (0);
@@ -308,11 +301,6 @@ void sout_MuxSendBuffer (sout_mux_t *mux, sout_input_t *input, block_t *block)
     assert (0);
 }
 
-announce_method_t *sout_SAPMethod (void)
-{
-    return NULL;
-}
-
 void sout_StreamChainDelete (sout_stream_t *p_first, sout_stream_t *p_last)
 {
     assert (0);
@@ -399,26 +387,21 @@ vlm_t *vlm_New (vlc_object_t *obj)
 #ifndef MEDIA_LIBRARY
 #include<vlc_media_library.h>
 
-media_library_t* __ml_Hold ( vlc_object_t* p_this )
+#undef ml_Get
+media_library_t* ml_Get ( vlc_object_t* p_this )
 {
     VLC_UNUSED( p_this );
     return NULL;
 }
 
-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 )
+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 )
+void ml_Destroy( vlc_object_t * p_this )
 {
     VLC_UNUSED( p_this );
     assert( 0 );
@@ -434,7 +417,8 @@ ml_media_t* media_New( media_library_t* p_ml, int id, ml_select_e select, bool r
     return NULL;
 }
 
-int __ml_UpdateSimple( media_library_t *p_media_library, ml_select_e selected_type,
+#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 );
@@ -454,7 +438,7 @@ ml_ftree_t* ml_OpConnectChilds( ml_op_e op, ml_ftree_t* left, ml_ftree_t* right
     return NULL;
 }
 
-ml_ftree_t* __ml_FtreeSpec( ml_ftree_t* tree, ml_select_e crit, int limit,
+ml_ftree_t* ml_FtreeSpec( ml_ftree_t* tree, ml_select_e crit, int limit,
                                           char* sort )
 {
     VLC_UNUSED( tree );