diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-01 20:40:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-01 20:47:48 +0200 |
commit | f7a02d5d694bcef993b0229c9e57f22421fed637 (patch) | |
tree | 1b35b174ddd5303c9c5abe8416031f4df9e2ea76 /ffmpeg.c | |
parent | 6278bc8a6c27c857974874caa5508341f090eb72 (diff) | |
download | ffmpeg-f7a02d5d694bcef993b0229c9e57f22421fed637.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |