Commit f7da1235 authored by Michael Niedermayer's avatar Michael Niedermayer

escape130: give all av_log() a context

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 40d62960
...@@ -151,7 +151,7 @@ static int escape130_decode_frame(AVCodecContext *avctx, ...@@ -151,7 +151,7 @@ static int escape130_decode_frame(AVCodecContext *avctx,
old_cb_stride = s->frame.linesize[1]; old_cb_stride = s->frame.linesize[1];
old_cr_stride = s->frame.linesize[2]; old_cr_stride = s->frame.linesize[2];
av_log(NULL, AV_LOG_DEBUG, av_log(avctx, AV_LOG_DEBUG,
"Strides: %i, %i\n", "Strides: %i, %i\n",
new_y_stride, new_cb_stride); new_y_stride, new_cb_stride);
...@@ -296,7 +296,7 @@ static int escape130_decode_frame(AVCodecContext *avctx, ...@@ -296,7 +296,7 @@ static int escape130_decode_frame(AVCodecContext *avctx,
skip--; skip--;
} }
av_log(NULL, AV_LOG_DEBUG, av_log(avctx, AV_LOG_DEBUG,
"Escape sizes: %i, %i\n", "Escape sizes: %i, %i\n",
buf_size, get_bits_count(&gb) / 8); buf_size, get_bits_count(&gb) / 8);
......
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