Commit 730d079b authored by Michael Niedermayer's avatar Michael Niedermayer

ffv1: fix log level of FF_DEBUG_PICT_INFO

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f1add01d
...@@ -1991,7 +1991,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac ...@@ -1991,7 +1991,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
} }
if(avctx->debug&FF_DEBUG_PICT_INFO) if(avctx->debug&FF_DEBUG_PICT_INFO)
av_log(avctx, AV_LOG_ERROR, "keyframe:%d coder:%d\n", p->key_frame, f->ac); av_log(avctx, AV_LOG_DEBUG, "keyframe:%d coder:%d\n", p->key_frame, f->ac);
buf_p= buf + buf_size; buf_p= buf + buf_size;
for(i=f->slice_count-1; i>=0; i--){ for(i=f->slice_count-1; i>=0; i--){
......
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