Commit 36ab7948 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: fix uninitialized variable warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent afcb6711
......@@ -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;
......
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