Browse Source

Remove unnused var

Commited in SoC by Vitor Sessak on 2008-05-24 16:58:58

Originally committed as revision 13354 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak 17 years ago
parent
commit
5b31015a7f
1 changed files with 3 additions and 9 deletions
  1. +3
    -9
      libavfilter/graphparser.c

+ 3
- 9
libavfilter/graphparser.c View File

@@ -341,7 +341,6 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
{ {
int index = 0; int index = 0;
char chr = 0; char chr = 0;
int pad = 0;


AVFilterInOut *currInputs = NULL; AVFilterInOut *currInputs = NULL;


@@ -349,9 +348,7 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
AVFilterContext *filter; AVFilterContext *filter;
filters += consume_whitespace(filters); filters += consume_whitespace(filters);


pad = parse_inputs(&filters, &currInputs, &openLinks, log_ctx);

if(pad < 0)
if(parse_inputs(&filters, &currInputs, &openLinks, log_ctx) < 0)
goto fail; goto fail;


filter = parse_filter(&filters, graph, index, log_ctx); filter = parse_filter(&filters, graph, index, log_ctx);
@@ -362,17 +359,14 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
if(filter->input_count == 1 && !currInputs && !index) { if(filter->input_count == 1 && !currInputs && !index) {
// First input can be ommitted if it is "[in]" // First input can be ommitted if it is "[in]"
const char *tmp = "[in]"; const char *tmp = "[in]";
pad = parse_inputs(&tmp, &currInputs, &openLinks, log_ctx);
if(pad < 0)
if(parse_inputs(&tmp, &currInputs, &openLinks, log_ctx))
goto fail; goto fail;
} }


if(link_filter_inouts(filter, &currInputs, &openLinks, log_ctx) < 0) if(link_filter_inouts(filter, &currInputs, &openLinks, log_ctx) < 0)
goto fail; goto fail;


pad = parse_outputs(&filters, &currInputs, &openLinks, log_ctx);

if(pad < 0)
if(parse_outputs(&filters, &currInputs, &openLinks, log_ctx))
goto fail; goto fail;


filters += consume_whitespace(filters); filters += consume_whitespace(filters);


Loading…
Cancel
Save