Commit dfd3fd67 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/libopenh264enc: use AV_LOG_TRACE instead of DEBUG+1

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent fd8b90f5
......@@ -79,7 +79,7 @@ static int libopenh264_to_ffmpeg_log_level (
int libopenh264_log_level
)
{
if (libopenh264_log_level >= WELS_LOG_DETAIL) return AV_LOG_DEBUG + 1;
if (libopenh264_log_level >= WELS_LOG_DETAIL) return AV_LOG_TRACE;
else if (libopenh264_log_level >= WELS_LOG_DEBUG) return AV_LOG_DEBUG;
else if (libopenh264_log_level >= WELS_LOG_INFO) return AV_LOG_INFO;
else if (libopenh264_log_level >= WELS_LOG_WARNING) return AV_LOG_WARNING;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment