mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2025-10-30 12:06:40 +08:00
avfilter: Constify all AVFilters
This is possible now that the next-API is gone. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
committed by
James Almer
parent
85ba17f36d
commit
a04ad248a0
@@ -450,7 +450,7 @@ static const AVFilterPad outputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_vf_datascope = {
|
||||
const AVFilter ff_vf_datascope = {
|
||||
.name = "datascope",
|
||||
.description = NULL_IF_CONFIG_SMALL("Video data analysis."),
|
||||
.priv_size = sizeof(DatascopeContext),
|
||||
@@ -739,7 +739,7 @@ static const AVFilterPad pixscope_outputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_vf_pixscope = {
|
||||
const AVFilter ff_vf_pixscope = {
|
||||
.name = "pixscope",
|
||||
.description = NULL_IF_CONFIG_SMALL("Pixel data analysis."),
|
||||
.priv_size = sizeof(PixscopeContext),
|
||||
@@ -1145,7 +1145,7 @@ static const AVFilterPad oscilloscope_outputs[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
AVFilter ff_vf_oscilloscope = {
|
||||
const AVFilter ff_vf_oscilloscope = {
|
||||
.name = "oscilloscope",
|
||||
.description = NULL_IF_CONFIG_SMALL("2D Video Oscilloscope."),
|
||||
.priv_size = sizeof(OscilloscopeContext),
|
||||
|
||||
Reference in New Issue
Block a user