[FFmpeg-cvslog] avcodec/libopenh264enc: use AV_LOG_TRACE instead of DEBUG+1

Michael Niedermayer git at videolan.org
Thu Sep 10 15:16:31 CEST 2015


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Thu Sep 10 13:22:46 2015 +0200| [dfd3fd67bbfdfb01fd5fabc6fcea001694c0a97e] | committer: Michael Niedermayer

avcodec/libopenh264enc: use AV_LOG_TRACE instead of DEBUG+1

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dfd3fd67bbfdfb01fd5fabc6fcea001694c0a97e
---

 libavcodec/libopenh264enc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/libopenh264enc.c b/libavcodec/libopenh264enc.c
index f72426b..33b7f6c 100644
--- a/libavcodec/libopenh264enc.c
+++ b/libavcodec/libopenh264enc.c
@@ -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;



More information about the ffmpeg-cvslog mailing list