[FFmpeg-cvslog] avfilter/ass: better log level mapping
Clément Bœsch
git at videolan.org
Tue Sep 16 21:24:12 CEST 2014
ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Thu Sep 11 21:10:03 2014 +0200| [8a9c5db29e847b35a70e1866dde2a1d056e2a265] | committer: Clément Bœsch
avfilter/ass: better log level mapping
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8a9c5db29e847b35a70e1866dde2a1d056e2a265
---
libavfilter/vf_subtitles.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/libavfilter/vf_subtitles.c b/libavfilter/vf_subtitles.c
index 44273cb..c9c21a7 100644
--- a/libavfilter/vf_subtitles.c
+++ b/libavfilter/vf_subtitles.c
@@ -68,14 +68,14 @@ typedef struct {
/* libass supports a log level ranging from 0 to 7 */
static const int ass_libavfilter_log_level_map[] = {
- AV_LOG_QUIET, /* 0 */
- AV_LOG_PANIC, /* 1 */
- AV_LOG_FATAL, /* 2 */
- AV_LOG_ERROR, /* 3 */
- AV_LOG_WARNING, /* 4 */
- AV_LOG_INFO, /* 5 */
- AV_LOG_VERBOSE, /* 6 */
- AV_LOG_DEBUG, /* 7 */
+ [0] = AV_LOG_FATAL, /* MSGL_FATAL */
+ [1] = AV_LOG_ERROR, /* MSGL_ERR */
+ [2] = AV_LOG_WARNING, /* MSGL_WARN */
+ [3] = AV_LOG_WARNING, /* <undefined> */
+ [4] = AV_LOG_INFO, /* MSGL_INFO */
+ [5] = AV_LOG_INFO, /* <undefined> */
+ [6] = AV_LOG_VERBOSE, /* MSGL_V */
+ [7] = AV_LOG_DEBUG, /* MSGL_DBG2 */
};
static void ass_log(int ass_level, const char *fmt, va_list args, void *ctx)
More information about the ffmpeg-cvslog
mailing list