Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
7a05e561
Commit
7a05e561
authored
Aug 18, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove msg_SubscriptionSetVerbosity
parent
9d660f1e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
14 deletions
+0
-14
include/vlc_messages.h
include/vlc_messages.h
+0
-1
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/misc/messages.c
src/misc/messages.c
+0
-12
No files found.
include/vlc_messages.h
View file @
7a05e561
...
@@ -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
);
...
...
src/libvlccore.sym
View file @
7a05e561
...
@@ -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
...
...
src/misc/messages.c
View file @
7a05e561
...
@@ -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
*****************************************************************************
*****************************************************************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment