mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
cdxl: stop using deprecated avcodec_set_dimensions
This commit is contained in:
parent
f176e11cff
commit
d57e95cbd4
1 changed files with 1 additions and 3 deletions
|
|
@ -237,10 +237,8 @@ static int cdxl_decode_frame(AVCodecContext *avctx, void *data,
|
|||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
|
||||
if ((ret = av_image_check_size(w, h, 0, avctx)) < 0)
|
||||
if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
|
||||
return ret;
|
||||
if (w != avctx->width || h != avctx->height)
|
||||
avcodec_set_dimensions(avctx, w, h);
|
||||
|
||||
aligned_width = FFALIGN(c->avctx->width, 16);
|
||||
c->padded_bits = aligned_width - c->avctx->width;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue