mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avfilter/vf_libopencv: Make ocv_filter_entries const
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
536b42e858
commit
dc4a6e4d5a
@ -322,7 +322,7 @@ typedef struct OCVFilterEntry {
|
||||
void (*end_frame_filter)(AVFilterContext *ctx, IplImage *inimg, IplImage *outimg);
|
||||
} OCVFilterEntry;
|
||||
|
||||
static OCVFilterEntry ocv_filter_entries[] = {
|
||||
static const OCVFilterEntry ocv_filter_entries[] = {
|
||||
{ "dilate", sizeof(DilateContext), dilate_init, dilate_uninit, dilate_end_frame_filter },
|
||||
{ "erode", sizeof(DilateContext), dilate_init, dilate_uninit, erode_end_frame_filter },
|
||||
{ "smooth", sizeof(SmoothContext), smooth_init, NULL, smooth_end_frame_filter },
|
||||
@ -338,7 +338,7 @@ static av_cold int init(AVFilterContext *ctx)
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(ocv_filter_entries); i++) {
|
||||
OCVFilterEntry *entry = &ocv_filter_entries[i];
|
||||
const OCVFilterEntry *entry = &ocv_filter_entries[i];
|
||||
if (!strcmp(s->name, entry->name)) {
|
||||
s->init = entry->init;
|
||||
s->uninit = entry->uninit;
|
||||
|
Loading…
Reference in New Issue
Block a user