Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-08 16:48:24 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-12-08 21:31:32 +0400
commitf7da12350ea82ad7193bc593b83b38607a8f4c40 (patch)
tree31a0bd6d8ce8d689441b8abba3f9da065735fedf /libavcodec/escape130.c
parent40d62960951010f7ff004d2c2bb1a70e5ea24d1e (diff)
escape130: give all av_log() a context
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/escape130.c')
-rw-r--r--libavcodec/escape130.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/escape130.c b/libavcodec/escape130.c
index e3722c51c8..be5327cf3a 100644
--- a/libavcodec/escape130.c
+++ b/libavcodec/escape130.c
@@ -151,7 +151,7 @@ static int escape130_decode_frame(AVCodecContext *avctx,
old_cb_stride = s->frame.linesize[1];
old_cr_stride = s->frame.linesize[2];
- av_log(NULL, AV_LOG_DEBUG,
+ av_log(avctx, AV_LOG_DEBUG,
"Strides: %i, %i\n",
new_y_stride, new_cb_stride);
@@ -296,7 +296,7 @@ static int escape130_decode_frame(AVCodecContext *avctx,
skip--;
}
- av_log(NULL, AV_LOG_DEBUG,
+ av_log(avctx, AV_LOG_DEBUG,
"Escape sizes: %i, %i\n",
buf_size, get_bits_count(&gb) / 8);