diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-16 16:09:37 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-16 16:09:37 +0100 |
commit | ecade984ac3ce5205f6276a9329e2b7bca09fa47 (patch) | |
tree | b3be8c61ad61a2ba7d12c028c48b561ae400f315 /libavfilter/graphdump.c | |
parent | 8a0187e43d22527899a346034df4c7e4713f5212 (diff) | |
parent | 42c7c61ab25809620b8c8809b3da73e25f5bbaaf (diff) | |
download | ffmpeg-ecade984ac3ce5205f6276a9329e2b7bca09fa47.tar.gz |
Merge commit '42c7c61ab25809620b8c8809b3da73e25f5bbaaf'
* commit '42c7c61ab25809620b8c8809b3da73e25f5bbaaf':
avfiltergraph: replace AVFilterGraph.filter_count with nb_filters
Conflicts:
doc/APIchanges
libavfilter/avfiltergraph.c
libavfilter/avfiltergraph.h
libavfilter/graphparser.c
libavfilter/version.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/graphdump.c')
-rw-r--r-- | libavfilter/graphdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphdump.c b/libavfilter/graphdump.c index 28e9bc9789..756f63dc49 100644 --- a/libavfilter/graphdump.c +++ b/libavfilter/graphdump.c @@ -62,7 +62,7 @@ static void avfilter_graph_dump_to_buf(AVBPrint *buf, AVFilterGraph *graph) { unsigned i, j, x, e; - for (i = 0; i < graph->filter_count; i++) { + for (i = 0; i < graph->nb_filters; i++) { AVFilterContext *filter = graph->filters[i]; unsigned max_src_name = 0, max_dst_name = 0; unsigned max_in_name = 0, max_out_name = 0; |