From 005af8ce61d908a0259c9ad88eb2c0c959252979 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Tue, 21 Aug 2012 18:15:32 +0200 Subject: examples/muxing: cast sws_scale() argument to the expected one MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix warnings: muxing.c: In function ‘write_video_frame’: muxing.c:326:23: warning: passing argument 2 of ‘sws_scale’ from incompatible pointer type [enabled by default] --- doc/examples/muxing.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/examples/muxing.c b/doc/examples/muxing.c index 3209bb8..e7ab145 100644 --- a/doc/examples/muxing.c +++ b/doc/examples/muxing.c @@ -340,7 +340,8 @@ static void write_video_frame(AVFormatContext *oc, AVStream *st) } } fill_yuv_image(tmp_picture, frame_count, c->width, c->height); - sws_scale(img_convert_ctx, tmp_picture->data, tmp_picture->linesize, + sws_scale(img_convert_ctx, + (const uint8_t * const *)tmp_picture->data, tmp_picture->linesize, 0, c->height, picture->data, picture->linesize); } else { fill_yuv_image(picture, frame_count, c->width, c->height); -- cgit v1.1