From 36ab79488e47d06d54e022822e2520eba07685db Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 10 May 2012 20:02:49 +0200 Subject: [PATCH] ffmpeg: fix uninitialized variable warning Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index c5d78fe6d2..a8387c124d 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -878,7 +878,7 @@ static FilterGraph *init_simple_filtergraph(InputStream *ist, OutputStream *ost) static void init_input_filter(FilterGraph *fg, AVFilterInOut *in) { - InputStream *ist; + InputStream *ist = NULL; enum AVMediaType type = in->filter_ctx->input_pads[in->pad_idx].type; int i;