From caa0175fcbc8d9531c4e3bf44a2dbba97a4da822 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 30 Jun 2015 14:38:19 +0200 Subject: [PATCH] (ffmpeg_core.c) Buildfix --- cores/ffmpeg_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/ffmpeg_core.c b/cores/ffmpeg_core.c index a0cd0484a6..590cd00065 100644 --- a/cores/ffmpeg_core.c +++ b/cores/ffmpeg_core.c @@ -1104,7 +1104,7 @@ static void decode_thread(void *data) { unsigned i; AVFrame *aud_frame, *vid_frame; - SwrContext *swr[audio_streams_num] = {NULL}; + SwrContext *swr[audio_streams_num]; void *conv_frame_buf = NULL; size_t frame_size = 0; int16_t *audio_buffer = NULL;