From: Antonio Ospite Date: Thu, 30 Jun 2016 16:02:45 +0000 (+0200) Subject: am7xxx-play: get rd of the deprecated function avpicture_fill() X-Git-Tag: v0.1.7~35 X-Git-Url: https://git.ao2.it/libam7xxx.git/commitdiff_plain/8e74aa421beb9a1949e251835926c62850b5aa31?hp=2eab93f5e228a7283f5cfc844974c4093dc505d4 am7xxx-play: get rd of the deprecated function avpicture_fill() This also fixes this warning: warning: ‘avpicture_fill’ is deprecated --- 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,