From b7fe9c7a0899758b405dd4243c76017382e818b6 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 10 May 2012 20:03:29 +0200 Subject: [PATCH] ffmpeg: fix pointer type (const) warning Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index c13a15b4fb..b169701077 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1760,7 +1760,7 @@ static void do_audio_out(AVFormatContext *s, OutputStream *ost, buftmp = audio_buf; size_out = swr_convert(ost->swr, ( uint8_t*[]){buftmp}, allocated_audio_buf_size / (enc->channels * osize), - buf, + (const uint8_t **)buf, size / (dec->channels * isize)); if (size_out < 0) { av_log(NULL, AV_LOG_FATAL, "swr_convert failed\n");