summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-01 20:40:09 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-01 20:47:48 +0200
commitf7a02d5d694bcef993b0229c9e57f22421fed637 (patch)
tree1b35b174ddd5303c9c5abe8416031f4df9e2ea76 /ffmpeg.c
parent6278bc8a6c27c857974874caa5508341f090eb72 (diff)
ffmpeg: initialize got_output, this silences a compiler warning from icc
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
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) {