avfilter/avfilter: Add FFFilter, hide internals of AVFilter

This patch is analogous to 20f972701806be20a77f808db332d9489343bb78:
It hides the internal part of AVFilter by adding a new internal
structure FFFilter (declared in filters.h) that has an AVFilter
as its first member; the internal part of AVFilter is moved to
this new structure.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-01-09 02:42:11 +01:00
parent 9bbab3255b
commit 7ab7d9c3c0
462 changed files with 3595 additions and 3611 deletions

View File

@ -542,12 +542,12 @@ static const AVFilterPad compand_outputs[] = {
};
const AVFilter ff_af_compand = {
.name = "compand",
.description = NULL_IF_CONFIG_SMALL(
const FFFilter ff_af_compand = {
.p.name = "compand",
.p.description = NULL_IF_CONFIG_SMALL(
"Compress or expand audio dynamic range."),
.p.priv_class = &compand_class,
.priv_size = sizeof(CompandContext),
.priv_class = &compand_class,
.init = init,
.uninit = uninit,
FILTER_INPUTS(compand_inputs),