Commit 164fca39 authored by Justin Ruggles's avatar Justin Ruggles

atrac1: use correct context for av_log()

parent c298b2b8
......@@ -284,7 +284,7 @@ static int atrac1_decode_frame(AVCodecContext *avctx, void *data,
if (buf_size < 212 * q->channels) {
av_log(q,AV_LOG_ERROR,"Not enough data to decode!\n");
av_log(avctx, AV_LOG_ERROR, "Not enough data to decode!\n");
return AVERROR_INVALIDDATA;
}
......
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