mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-04 14:22:12 +00:00
set log level to AV_LOG_DEBUG if -debug ... is used
Originally committed as revision 4359 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fc565b22fc
commit
1ab1f099eb
1
ffmpeg.c
1
ffmpeg.c
@ -2291,6 +2291,7 @@ static void opt_error_concealment(const char *arg)
|
||||
static void opt_debug(const char *arg)
|
||||
{
|
||||
debug = atoi(arg);
|
||||
av_log_set_level(AV_LOG_DEBUG);
|
||||
}
|
||||
|
||||
static void opt_vismv(const char *arg)
|
||||
|
2
ffplay.c
2
ffplay.c
@ -1179,6 +1179,8 @@ static int stream_component_open(VideoState *is, int stream_index)
|
||||
codec = avcodec_find_decoder(enc->codec_id);
|
||||
enc->debug_mv = debug_mv;
|
||||
enc->debug = debug;
|
||||
if(debug)
|
||||
av_log_set_level(AV_LOG_DEBUG);
|
||||
enc->workaround_bugs = workaround_bugs;
|
||||
enc->lowres = lowres;
|
||||
if(lowres) enc->flags |= CODEC_FLAG_EMU_EDGE;
|
||||
|
Loading…
Reference in New Issue
Block a user