avfilter/f_streamselect: Deduplicate AVClasses

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2021-09-10 22:31:11 +02:00
parent cf724beade
commit a10a300606
1 changed files with 2 additions and 5 deletions

View File

@ -48,7 +48,7 @@ static const AVOption streamselect_options[] = {
{ NULL } { NULL }
}; };
AVFILTER_DEFINE_CLASS(streamselect); AVFILTER_DEFINE_CLASS_EXT(streamselect, "(a)streamselect", streamselect_options);
static int process_frame(FFFrameSync *fs) static int process_frame(FFFrameSync *fs)
{ {
@ -327,18 +327,15 @@ const AVFilter ff_vf_streamselect = {
.flags = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_DYNAMIC_OUTPUTS, .flags = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_DYNAMIC_OUTPUTS,
}; };
#define astreamselect_options streamselect_options
AVFILTER_DEFINE_CLASS(astreamselect);
const AVFilter ff_af_astreamselect = { const AVFilter ff_af_astreamselect = {
.name = "astreamselect", .name = "astreamselect",
.description = NULL_IF_CONFIG_SMALL("Select audio streams"), .description = NULL_IF_CONFIG_SMALL("Select audio streams"),
.priv_class = &streamselect_class,
.init = init, .init = init,
.query_formats = query_formats, .query_formats = query_formats,
.process_command = process_command, .process_command = process_command,
.uninit = uninit, .uninit = uninit,
.activate = activate, .activate = activate,
.priv_size = sizeof(StreamSelectContext), .priv_size = sizeof(StreamSelectContext),
.priv_class = &astreamselect_class,
.flags = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_DYNAMIC_OUTPUTS, .flags = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_DYNAMIC_OUTPUTS,
}; };