Commit f349703e authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/snowenc: change log level for iterative ME information to debug level

The printed stuff should be useless to the average user and its certainly
not an error.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b6229780
......@@ -1155,7 +1155,7 @@ static void iterative_me(SnowContext *s){
}
}
}
av_log(s->avctx, AV_LOG_ERROR, "pass:%d changed:%d\n", pass, change);
av_log(s->avctx, AV_LOG_DEBUG, "pass:%d changed:%d\n", pass, change);
if(!change)
break;
}
......
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