Commit 8a9c5db2 authored by Clément Bœsch's avatar Clément Bœsch

avfilter/ass: better log level mapping

parent a87527ad
...@@ -68,14 +68,14 @@ typedef struct { ...@@ -68,14 +68,14 @@ typedef struct {
/* libass supports a log level ranging from 0 to 7 */ /* libass supports a log level ranging from 0 to 7 */
static const int ass_libavfilter_log_level_map[] = { static const int ass_libavfilter_log_level_map[] = {
AV_LOG_QUIET, /* 0 */ [0] = AV_LOG_FATAL, /* MSGL_FATAL */
AV_LOG_PANIC, /* 1 */ [1] = AV_LOG_ERROR, /* MSGL_ERR */
AV_LOG_FATAL, /* 2 */ [2] = AV_LOG_WARNING, /* MSGL_WARN */
AV_LOG_ERROR, /* 3 */ [3] = AV_LOG_WARNING, /* <undefined> */
AV_LOG_WARNING, /* 4 */ [4] = AV_LOG_INFO, /* MSGL_INFO */
AV_LOG_INFO, /* 5 */ [5] = AV_LOG_INFO, /* <undefined> */
AV_LOG_VERBOSE, /* 6 */ [6] = AV_LOG_VERBOSE, /* MSGL_V */
AV_LOG_DEBUG, /* 7 */ [7] = AV_LOG_DEBUG, /* MSGL_DBG2 */
}; };
static void ass_log(int ass_level, const char *fmt, va_list args, void *ctx) static void ass_log(int ass_level, const char *fmt, va_list args, void *ctx)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment