From 8e74aa421beb9a1949e251835926c62850b5aa31 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Thu, 30 Jun 2016 18:02:45 +0200 Subject: [PATCH] am7xxx-play: get rd of the deprecated function avpicture_fill() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This also fixes this warning: warning: ‘avpicture_fill’ is deprecated --- examples/am7xxx-play.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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, -- 2.1.4