summaryrefslogtreecommitdiff
path: root/libavfilter/internal.h
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-07-28 14:30:20 +0100
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-08-28 16:01:13 +0200
commite65e4cbbda03ca3c9087f069c9867d518415fca1 (patch)
tree4e4c8c0bb3a55bf36eb886eb5b8b057d282e2f69 /libavfilter/internal.h
parent86e5056575f55f070609dd3926605302f7d2280e (diff)
lavfi: Drop deprecated *_count suffixed variables
Deprecated in 06/2012.
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r--libavfilter/internal.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h
index 9c330d7b9c..b74e1bac62 100644
--- a/libavfilter/internal.h
+++ b/libavfilter/internal.h
@@ -170,11 +170,6 @@ static inline void ff_insert_inpad(AVFilterContext *f, unsigned index,
{
ff_insert_pad(index, &f->nb_inputs, offsetof(AVFilterLink, dstpad),
&f->input_pads, &f->inputs, p);
-#if FF_API_FOO_COUNT
-FF_DISABLE_DEPRECATION_WARNINGS
- f->input_count = f->nb_inputs;
-FF_ENABLE_DEPRECATION_WARNINGS
-#endif
}
/** Insert a new output pad for the filter. */
@@ -183,11 +178,6 @@ static inline void ff_insert_outpad(AVFilterContext *f, unsigned index,
{
ff_insert_pad(index, &f->nb_outputs, offsetof(AVFilterLink, srcpad),
&f->output_pads, &f->outputs, p);
-#if FF_API_FOO_COUNT
-FF_DISABLE_DEPRECATION_WARNINGS
- f->output_count = f->nb_outputs;
-FF_ENABLE_DEPRECATION_WARNINGS
-#endif
}
/**