nuv: Use the correct context for av_image_check_size

pull/206/head
Vittorio Giovara 9 years ago
parent 64250d94b7
commit 709c0f79d8
  1. 2
      libavformat/nuv.c

@ -198,7 +198,7 @@ static int nuv_header(AVFormatContext *s)
return AVERROR(ENOMEM);
ctx->v_id = vst->index;
ret = av_image_check_size(width, height, 0, ctx);
ret = av_image_check_size(width, height, 0, s);
if (ret < 0)
return ret;

Loading…
Cancel
Save