mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
lavfi: add priv_class for some forgotten filters.
This allows to print the options available when using commands such as ffmpeg -help full.
This commit is contained in:
parent
8a12c96d27
commit
a5b765236b
@ -747,4 +747,5 @@ AVFilter avfilter_af_ebur128 = {
|
||||
.query_formats = query_formats,
|
||||
.inputs = ebur128_inputs,
|
||||
.outputs = NULL,
|
||||
.priv_class = &ebur128_class,
|
||||
};
|
||||
|
@ -283,4 +283,5 @@ AVFilter avfilter_vf_delogo = {
|
||||
|
||||
.inputs = avfilter_vf_delogo_inputs,
|
||||
.outputs = avfilter_vf_delogo_outputs,
|
||||
.priv_class = &delogo_class,
|
||||
};
|
||||
|
@ -327,4 +327,5 @@ AVFilter avfilter_vf_edgedetect = {
|
||||
.query_formats = query_formats,
|
||||
.inputs = edgedetect_inputs,
|
||||
.outputs = edgedetect_outputs,
|
||||
.priv_class = &edgedetect_class,
|
||||
};
|
||||
|
@ -417,4 +417,5 @@ AVFilter avfilter_vsrc_mandelbrot = {
|
||||
.query_formats = query_formats,
|
||||
.inputs = NULL,
|
||||
.outputs = mandelbrot_outputs,
|
||||
.priv_class = &mandelbrot_class,
|
||||
};
|
||||
|
@ -384,4 +384,5 @@ AVFilter avfilter_vsrc_mptestsrc = {
|
||||
|
||||
.inputs = NULL,
|
||||
.outputs = mptestsrc_outputs,
|
||||
.priv_class = &mptestsrc_class,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user