From f7a02d5d694bcef993b0229c9e57f22421fed637 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 1 Apr 2013 20:40:09 +0200 Subject: [PATCH] ffmpeg: initialize got_output, this silences a compiler warning from icc Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index e17305c2fc..fac491b2f3 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1776,7 +1776,7 @@ static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output) static int output_packet(InputStream *ist, const AVPacket *pkt) { int ret = 0, i; - int got_output; + int got_output = 0; AVPacket avpkt; if (!ist->saw_first_ts) {