Commit 7a05e561 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove msg_SubscriptionSetVerbosity

parent 9d660f1e
...@@ -120,7 +120,6 @@ typedef void (*msg_callback_t) (msg_cb_data_t *, const msg_item_t *); ...@@ -120,7 +120,6 @@ typedef void (*msg_callback_t) (msg_cb_data_t *, const msg_item_t *);
VLC_API msg_subscription_t* msg_Subscribe( libvlc_int_t *, msg_callback_t, msg_cb_data_t * ) VLC_USED; VLC_API msg_subscription_t* msg_Subscribe( libvlc_int_t *, msg_callback_t, msg_cb_data_t * ) VLC_USED;
VLC_API void msg_Unsubscribe( msg_subscription_t * ); VLC_API void msg_Unsubscribe( msg_subscription_t * );
VLC_API void msg_SubscriptionSetVerbosity( msg_subscription_t *, const int);
/* Enable or disable a certain object debug messages */ /* Enable or disable a certain object debug messages */
VLC_API void msg_EnableObjectPrinting( vlc_object_t *, const char * psz_object ); VLC_API void msg_EnableObjectPrinting( vlc_object_t *, const char * psz_object );
......
...@@ -281,7 +281,6 @@ msg_Generic ...@@ -281,7 +281,6 @@ msg_Generic
msg_GenericVa msg_GenericVa
msg_Subscribe msg_Subscribe
msg_Unsubscribe msg_Unsubscribe
msg_SubscriptionSetVerbosity
msleep msleep
mstrtime mstrtime
mwait mwait
......
...@@ -200,18 +200,6 @@ void msg_Unsubscribe (msg_subscription_t *sub) ...@@ -200,18 +200,6 @@ void msg_Unsubscribe (msg_subscription_t *sub)
free (sub); free (sub);
} }
void msg_SubscriptionSetVerbosity( msg_subscription_t *sub, const int i_verbosity )
{
if( i_verbosity < 0 || i_verbosity > 2 ) return;
msg_bank_t *bank = libvlc_bank ( sub->instance );
vlc_rwlock_wrlock (&bank->lock);
sub->verbosity = i_verbosity;
vlc_rwlock_unlock (&bank->lock);
}
/***************************************************************************** /*****************************************************************************
* msg_*: print a message * msg_*: print a message
***************************************************************************** *****************************************************************************
......
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