Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
c452d079
Commit
c452d079
authored
May 05, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i_verbose has been privatized
parent
47ee4e3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
src/control/log.c
src/control/log.c
+5
-2
No files found.
src/control/log.c
View file @
c452d079
...
...
@@ -23,6 +23,7 @@
*****************************************************************************/
#include "libvlc_internal.h"
#include "../libvlc.h"
#include <vlc/libvlc.h>
struct
libvlc_log_t
...
...
@@ -43,7 +44,8 @@ unsigned libvlc_get_log_verbosity( const libvlc_instance_t *p_instance, libvlc_e
{
if
(
p_instance
)
{
return
p_instance
->
p_libvlc_int
->
i_verbose
;
libvlc_priv_t
*
p_priv
=
libvlc_priv
(
p_instance
->
p_libvlc_int
);
return
p_priv
->
i_verbose
;
}
RAISEZERO
(
"Invalid VLC instance!"
);
}
...
...
@@ -52,7 +54,8 @@ void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level, li
{
if
(
p_instance
)
{
p_instance
->
p_libvlc_int
->
i_verbose
=
level
;
libvlc_priv_t
*
p_priv
=
libvlc_priv
(
p_instance
->
p_libvlc_int
);
p_priv
->
i_verbose
=
level
;
}
else
RAISEVOID
(
"Invalid VLC instance!"
);
...
...
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