[vlc-commits] avcommon: map vlc debug level to libavutil verbose instead of debug

Ilkka Ollakka git at videolan.org
Sat Oct 22 14:06:46 CEST 2016


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Sat Oct 22 14:06:00 2016 +0300| [65fa4a0ca3c71027ad8dc1c69fa03cae41572dfc] | committer: Ilkka Ollakka

avcommon: map vlc debug level to libavutil verbose instead of debug

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=65fa4a0ca3c71027ad8dc1c69fa03cae41572dfc
---

 modules/codec/avcodec/avcommon.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/codec/avcodec/avcommon.h b/modules/codec/avcodec/avcommon.h
index f612a36..f55ad95 100644
--- a/modules/codec/avcodec/avcommon.h
+++ b/modules/codec/avcodec/avcommon.h
@@ -75,7 +75,7 @@ static inline void vlc_init_avutil(vlc_object_t *obj)
             level = AV_LOG_WARNING;
             break;
         case VLC_MSG_DBG:
-            level = AV_LOG_DEBUG;
+            level = AV_LOG_VERBOSE;
         default:
             break;
         }



More information about the vlc-commits mailing list