Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
7ac2f7e4
Commit
7ac2f7e4
authored
Apr 09, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil/log: factor "level != AV_LOG_INFO/8" checks out
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
dddacf78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
log.c
libavutil/log.c
+8
-4
No files found.
libavutil/log.c
View file @
7ac2f7e4
...
...
@@ -140,20 +140,24 @@ static void check_color_terminal(void)
static
void
colored_fputs
(
int
level
,
int
tint
,
const
char
*
str
)
{
int
local_use_color
;
if
(
!*
str
)
return
;
if
(
use_color
<
0
)
check_color_terminal
();
if
(
level
==
AV_LOG_INFO
/
8
)
local_use_color
=
0
;
else
local_use_color
=
use_color
;
#if defined(_WIN32) && !defined(__MINGW32CE__) && HAVE_SETCONSOLETEXTATTRIBUTE
if
(
use_color
&&
level
!=
AV_LOG_INFO
/
8
)
if
(
local_use_color
)
SetConsoleTextAttribute
(
con
,
background
|
color
[
level
]);
fputs
(
str
,
stderr
);
if
(
use_color
&&
level
!=
AV_LOG_INFO
/
8
)
if
(
local_use_color
)
SetConsoleTextAttribute
(
con
,
attr_orig
);
#else
if
(
use_color
==
1
&&
level
!=
AV_LOG_INFO
/
8
)
{
if
(
local_use_color
==
1
)
{
fprintf
(
stderr
,
"
\033
[%d;3%dm%s
\033
[0m"
,
(
color
[
level
]
>>
4
)
&
15
,
...
...
@@ -165,7 +169,7 @@ static void colored_fputs(int level, int tint, const char *str)
(
color
[
level
]
>>
16
)
&
0xff
,
tint
,
str
);
}
else
if
(
use_color
==
256
&&
level
!=
AV_LOG_INFO
/
8
)
{
}
else
if
(
local_use_color
==
256
)
{
fprintf
(
stderr
,
"
\033
[48;5;%dm
\033
[38;5;%dm%s
\033
[0m"
,
(
color
[
level
]
>>
16
)
&
0xff
,
...
...
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