summaryrefslogtreecommitdiff
path: root/libavutil/log.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-04-20 14:44:32 +0100
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-04-20 19:20:57 +0100
commiteaa2d123f0a643664721593d248ece6bcd85f1e6 (patch)
treecb7919c22182b882d88421b8caa3808fd0e5567a /libavutil/log.c
parentbd5ad8b23d0f7d469ca30d03deca879993eb0431 (diff)
log: Print a full backtrace along with error messages under Valgrind
Useful to understand where and in what execution state a certain message is generated. It is enabled only when optimizations are disabled, since function names are not printed otherwise. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavutil/log.c')
-rw-r--r--libavutil/log.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libavutil/log.c b/libavutil/log.c
index 7f2cb08597..37427efaf1 100644
--- a/libavutil/log.c
+++ b/libavutil/log.c
@@ -40,6 +40,12 @@
#include "internal.h"
#include "log.h"
+#if HAVE_VALGRIND_VALGRIND_H
+#include <valgrind/valgrind.h>
+/* this is the log level at which valgrind will output a full backtrace */
+#define BACKTRACE_LOGLEVEL AV_LOG_ERROR
+#endif
+
static int av_log_level = AV_LOG_INFO;
static int flags;
@@ -164,6 +170,11 @@ void av_log_default_callback(void *avcl, int level, const char *fmt, va_list vl)
}
colored_fputs(av_clip(level >> 3, 0, NB_LEVELS - 1), tint >> 8, line);
av_strlcpy(prev, line, sizeof line);
+
+#if CONFIG_VALGRIND_BACKTRACE
+ if (level <= BACKTRACE_LOGLEVEL)
+ VALGRIND_PRINTF_BACKTRACE("");
+#endif
}
static void (*av_log_callback)(void*, int, const char*, va_list) =