Browse Source

vp9_parse: don't use AVCodecParserContext as av_log context.

Fixes trac ticket 3273.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Ronald S. Bultje Michael Niedermayer 12 years ago
parent
commit
847072873c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vp9_parser.c

+ 1
- 1
libavcodec/vp9_parser.c View File

@@ -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; \


Loading…
Cancel
Save