From ab1c6dc95c72181f93a9863ad87f238b530bec7b Mon Sep 17 00:00:00 2001 From: Luca Abeni Date: Thu, 8 Feb 2007 18:55:36 +0000 Subject: [PATCH] Directly access av_log_level instead of calling av_log_{set, get}_level() (which will be removed at the next avutil version increment) Originally committed as revision 7882 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 4 ++-- ffplay.c | 2 +- libavcodec/utils.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ffmpeg.c b/ffmpeg.c index 5542d64..bb0b577 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2084,7 +2084,7 @@ static void opt_me_threshold(const char *arg) static void opt_verbose(const char *arg) { verbose = atoi(arg); - av_log_set_level(atoi(arg)); + av_log_level = atoi(arg); } static void opt_frame_rate(const char *arg) @@ -3676,7 +3676,7 @@ static int opt_default(const char *opt, const char *arg){ #endif if(avctx_opts->debug) - av_log_set_level(AV_LOG_DEBUG); + av_log_level = AV_LOG_DEBUG; return 0; } diff --git a/ffplay.c b/ffplay.c index 830bfc6..feaae38 100644 --- a/ffplay.c +++ b/ffplay.c @@ -2385,7 +2385,7 @@ void opt_seek(const char *arg) static void opt_debug(const char *arg) { - av_log_set_level(99); + av_log_level = 99; debug = atoi(arg); } diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 61b0297..a9917fd 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1102,7 +1102,7 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) snprintf(buf + strlen(buf), buf_size - strlen(buf), ", %dx%d", enc->width, enc->height); - if(av_log_get_level() >= AV_LOG_DEBUG){ + if(av_log_level >= AV_LOG_DEBUG){ int g= ff_gcd(enc->time_base.num, enc->time_base.den); snprintf(buf + strlen(buf), buf_size - strlen(buf), ", %d/%d", -- 2.7.4