Commit cdc3f8f3 authored by Paul B Mahol's avatar Paul B Mahol

escape124: pass context to av_log()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent abf1e59e
...@@ -234,7 +234,7 @@ static int escape124_decode_frame(AVCodecContext *avctx, ...@@ -234,7 +234,7 @@ static int escape124_decode_frame(AVCodecContext *avctx,
if (!s->frame.data[0]) if (!s->frame.data[0])
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
av_log(NULL, AV_LOG_DEBUG, "Skipping frame\n"); av_log(avctx, AV_LOG_DEBUG, "Skipping frame\n");
*got_frame = 1; *got_frame = 1;
if ((ret = av_frame_ref(frame, &s->frame)) < 0) if ((ret = av_frame_ref(frame, &s->frame)) < 0)
...@@ -352,7 +352,7 @@ static int escape124_decode_frame(AVCodecContext *avctx, ...@@ -352,7 +352,7 @@ static int escape124_decode_frame(AVCodecContext *avctx,
skip--; skip--;
} }
av_log(NULL, AV_LOG_DEBUG, av_log(avctx, AV_LOG_DEBUG,
"Escape sizes: %i, %i, %i\n", "Escape sizes: %i, %i, %i\n",
frame_size, buf_size, get_bits_count(&gb) / 8); frame_size, 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