X-Git-Url: https://git.ao2.it/libam7xxx.git/blobdiff_plain/2eab93f5e228a7283f5cfc844974c4093dc505d4..8e74aa421beb9a1949e251835926c62850b5aa31:/examples/am7xxx-play.c diff --git a/examples/am7xxx-play.c b/examples/am7xxx-play.c index f5e6157..ad2ca6f 100644 --- a/examples/am7xxx-play.c +++ b/examples/am7xxx-play.c @@ -339,11 +339,13 @@ static int am7xxx_play(const char *input_format_string, } /* assign appropriate parts of buffer to image planes in picture_scaled */ - avpicture_fill((AVPicture *)picture_scaled, - out_buf, - (output_ctx.codec_ctx)->pix_fmt, - (output_ctx.codec_ctx)->width, - (output_ctx.codec_ctx)->height); + av_image_fill_arrays(picture_scaled->data, + picture_scaled->linesize, + out_buf, + (output_ctx.codec_ctx)->pix_fmt, + (output_ctx.codec_ctx)->width, + (output_ctx.codec_ctx)->height, + 1); sw_scale_ctx = sws_getCachedContext(NULL, (input_ctx.codec_ctx)->width,