Browse Source

libvpxdec: stop using deprecated avcodec_set_dimensions

tags/n2.2-rc1
Anton Khirnov 12 years ago
parent
commit
b870582485
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavcodec/libvpxdec.c

+ 3
- 3
libavcodec/libvpxdec.c View File

@@ -90,9 +90,9 @@ static int vp8_decode(AVCodecContext *avctx,
if ((int) img->d_w != avctx->width || (int) img->d_h != avctx->height) {
av_log(avctx, AV_LOG_INFO, "dimension change! %dx%d -> %dx%d\n",
avctx->width, avctx->height, img->d_w, img->d_h);
if (av_image_check_size(img->d_w, img->d_h, 0, avctx))
return AVERROR_INVALIDDATA;
avcodec_set_dimensions(avctx, img->d_w, img->d_h);
ret = ff_set_dimensions(avctx, img->d_w, img->d_h);
if (ret < 0)
return ret;
}
if ((ret = ff_get_buffer(avctx, picture, 0)) < 0)
return ret;


Loading…
Cancel
Save