Browse Source

map warning levels between libx264 and libavutil

Originally committed as revision 9607 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Benoit Fouet 18 years ago
parent
commit
3709f0d706
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libx264.c

+ 1
- 1
libavcodec/libx264.c View File

@@ -38,7 +38,7 @@ 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_ERROR,
[X264_LOG_WARNING] = AV_LOG_WARNING,
[X264_LOG_INFO] = AV_LOG_INFO,
[X264_LOG_DEBUG] = AV_LOG_DEBUG
};


Loading…
Cancel
Save