mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
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:
@ -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),
|
||||
|
Reference in New Issue
Block a user