Browse Source

lavc/libx264: remap X264_LOG_INFO loglevel from AV_LOG_INFO to VERBOSE

AV_LOG_INFO is more geared towards messages to be read by the user, the
statistics shown by libx264 with X264_LOG_INFO are more useful at the
debugging level.

Help reducing the log spam.
tags/n1.0
Stefano Sabatini 13 years ago
parent
commit
911519caec
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libx264.c

+ 1
- 1
libavcodec/libx264.c View File

@@ -79,7 +79,7 @@ static void X264_log(void *p, int level, const char *fmt, va_list args)
static const int level_map[] = {
[X264_LOG_ERROR] = AV_LOG_ERROR,
[X264_LOG_WARNING] = AV_LOG_WARNING,
[X264_LOG_INFO] = AV_LOG_INFO,
[X264_LOG_INFO] = AV_LOG_VERBOSE,
[X264_LOG_DEBUG] = AV_LOG_DEBUG
};



Loading…
Cancel
Save