Commit 84707287 authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Michael Niedermayer

vp9_parse: don't use AVCodecParserContext as av_log context.

Fixes trac ticket 3273.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ee16e0ca
......@@ -77,7 +77,7 @@ static int parse(AVCodecParserContext *ctx,
idx += a; \
if (sz > size) { \
s->n_frames = 0; \
av_log(ctx, AV_LOG_ERROR, \
av_log(avctx, AV_LOG_ERROR, \
"Superframe packet size too big: %d > %d\n", \
sz, size); \
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