Browse Source

graphparser: fix the order in which unlabeled input links are returned.

tags/n0.11
Anton Khirnov 13 years ago
parent
commit
7af99a01c4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/graphparser.c

+ 1
- 1
libavfilter/graphparser.c View File

@@ -242,7 +242,7 @@ static int link_filter_inouts(AVFilterContext *filt_ctx,
} else { } else {
p->filter_ctx = filt_ctx; p->filter_ctx = filt_ctx;
p->pad_idx = pad; p->pad_idx = pad;
insert_inout(open_inputs, p);
append_inout(open_inputs, &p);
} }
} }




Loading…
Cancel
Save