Commit 4c66af61 authored by Diego Biurrun's avatar Diego Biurrun

rangecoder-test: Set error message log level to error, instead of debug

parent 90558e84
...@@ -115,6 +115,7 @@ int ff_rac_terminate(RangeCoder *c) ...@@ -115,6 +115,7 @@ int ff_rac_terminate(RangeCoder *c)
#define SIZE 10240 #define SIZE 10240
#include "libavutil/lfg.h" #include "libavutil/lfg.h"
#include "libavutil/log.h"
int main(void) int main(void)
{ {
...@@ -150,7 +151,7 @@ STOP_TIMER("put_rac") ...@@ -150,7 +151,7 @@ STOP_TIMER("put_rac")
for (i = 0; i < SIZE; i++) { for (i = 0; i < SIZE; i++) {
START_TIMER START_TIMER
if ((r[i] & 1) != get_rac(&c, state)) 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") 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