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
32167b7e
Commit
32167b7e
authored
Nov 29, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Repack libvlc internal data
parent
c5dac996
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/libvlc.h
src/libvlc.h
+1
-1
src/misc/messages.c
src/misc/messages.c
+2
-2
No files found.
src/libvlc.h
View file @
32167b7e
...
...
@@ -172,7 +172,7 @@ typedef struct libvlc_priv_t
bool
playlist_active
;
/* Messages */
int
i_verbose
;
///< info messages
signed
char
i_verbose
;
///< info messages
bool
b_color
;
///< color messages?
bool
b_stats
;
///< Whether to collect stats
...
...
src/misc/messages.c
View file @
32167b7e
...
...
@@ -255,7 +255,7 @@ static const char msg_color[4][8] = { WHITE, RED, YELLOW, GRAY };
static
void
PrintColorMsg
(
void
*
d
,
int
type
,
const
msg_item_t
*
p_item
,
const
char
*
format
,
va_list
ap
)
{
const
int
*
pverbose
=
d
;
const
signed
char
*
pverbose
=
d
;
FILE
*
stream
=
stderr
;
if
(
*
pverbose
<
0
||
*
pverbose
<
(
type
-
VLC_MSG_ERR
))
...
...
@@ -281,7 +281,7 @@ static void PrintColorMsg (void *d, int type, const msg_item_t *p_item,
static
void
PrintMsg
(
void
*
d
,
int
type
,
const
msg_item_t
*
p_item
,
const
char
*
format
,
va_list
ap
)
{
const
int
*
pverbose
=
d
;
const
signed
char
*
pverbose
=
d
;
FILE
*
stream
=
stderr
;
if
(
*
pverbose
<
0
||
*
pverbose
<
(
type
-
VLC_MSG_ERR
))
...
...
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