Commit f7a02d5d authored by Michael Niedermayer's avatar Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6278bc8a
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment