mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2025-02-17 03:18:39 +00:00
avutil/log: fix negative log levels
These where broken by 7763118cae4eb468b032dbd29af15a011c2c233b Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1f8a6bef78
commit
49e040e868
@ -258,10 +258,12 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
|
||||
char line[LINE_SZ];
|
||||
static int is_atty;
|
||||
int type[2];
|
||||
unsigned tint = level & 0xff00;
|
||||
|
||||
level &= 0xff;
|
||||
unsigned tint = 0;
|
||||
|
||||
if (level >= 0) {
|
||||
tint = level & 0xff00;
|
||||
level &= 0xff;
|
||||
}
|
||||
|
||||
if (level > av_log_level)
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user