diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-05 16:11:22 +0200 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-05 16:11:22 +0200 |
commit | 43e2e172dfbd734947c30bdbfa8f19b7ca95576d (patch) | |
tree | ca119d48d13e8f9905f10b0cba11ddbb77f811d2 /libavfilter/avfiltergraph.c | |
parent | 2751d5f0ba2e4da18fe72d91d317423f1662dd9b (diff) | |
parent | e65e4cbbda03ca3c9087f069c9867d518415fca1 (diff) | |
download | ffmpeg-43e2e172dfbd734947c30bdbfa8f19b7ca95576d.tar.gz |
Merge commit 'e65e4cbbda03ca3c9087f069c9867d518415fca1'
* commit 'e65e4cbbda03ca3c9087f069c9867d518415fca1':
lavfi: Drop deprecated *_count suffixed variables
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r-- | libavfilter/avfiltergraph.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index bd3853f0b7..b42983140a 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -135,12 +135,6 @@ int avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter) graph->filters = filters; graph->filters[graph->nb_filters++] = filter; -#if FF_API_FOO_COUNT -FF_DISABLE_DEPRECATION_WARNINGS - graph->filter_count_unused = graph->nb_filters; -FF_ENABLE_DEPRECATION_WARNINGS -#endif - filter->graph = graph; return 0; @@ -206,12 +200,6 @@ AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph, graph->filters = filters; graph->filters[graph->nb_filters++] = s; -#if FF_API_FOO_COUNT -FF_DISABLE_DEPRECATION_WARNINGS - graph->filter_count_unused = graph->nb_filters; -FF_ENABLE_DEPRECATION_WARNINGS -#endif - s->graph = graph; return s; |