Commit 0dfcd7e7 authored by Michael Niedermayer's avatar Michael Niedermayer

range coder test code: decoding errors are av_log_error not debug.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 21fdf1cc
......@@ -148,7 +148,7 @@ STOP_TIMER("put_rac")
for(i=0; i<SIZE; i++){
START_TIMER
if( (r[i]&1) != get_rac(&c, state) )
av_log(NULL, AV_LOG_DEBUG, "rac failure at %d\n", i);
av_log(NULL, AV_LOG_ERROR, "rac failure at %d\n", i);
STOP_TIMER("get_rac")
}
......
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