From e65e4cbbda03ca3c9087f069c9867d518415fca1 Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Tue, 28 Jul 2015 14:30:20 +0100 Subject: lavfi: Drop deprecated *_count suffixed variables Deprecated in 06/2012. --- libavfilter/internal.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'libavfilter/internal.h') 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 } /** -- cgit v1.2.1