diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-16 08:57:34 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-04-19 12:41:59 +0100 |
commit | c253340ae6f74ffd8798bbd476e46d1b33a2d56e (patch) | |
tree | c4f175dea6dcc18f0f5cdf3a2b92cde58a9de91b /cmdutils.c | |
parent | b8d7f3186e86234f6255f5e8ee9e98573b4d9a6e (diff) | |
download | ffmpeg-c253340ae6f74ffd8798bbd476e46d1b33a2d56e.tar.gz |
log: Introduce a more verbose debug level
And deprecate av_dlog macro.
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index af8354aa19..c4a78199f3 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -724,6 +724,7 @@ int opt_loglevel(void *optctx, const char *opt, const char *arg) { "info" , AV_LOG_INFO }, { "verbose", AV_LOG_VERBOSE }, { "debug" , AV_LOG_DEBUG }, + { "trace" , AV_LOG_TRACE }, }; char *tail; int level; |