ffmpeg: initialize got_output, this silences a compiler warning from icc

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-04-01 20:40:09 +02:00
parent 6278bc8a6c
commit f7a02d5d69
1 changed files with 1 additions and 1 deletions

View File

@ -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) {