mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi/ocv: fix build after fd6228e65
.
This commit is contained in:
parent
4a88989254
commit
51e71d6e11
@ -74,7 +74,7 @@ typedef struct {
|
||||
const AVClass *class;
|
||||
char *name;
|
||||
char *params;
|
||||
int (*init)(AVFilterContext *ctx);
|
||||
int (*init)(AVFilterContext *ctx, const char *args);
|
||||
void (*uninit)(AVFilterContext *ctx);
|
||||
void (*end_frame_filter)(AVFilterContext *ctx, IplImage *inimg, IplImage *outimg);
|
||||
void *priv;
|
||||
@ -86,7 +86,7 @@ typedef struct {
|
||||
double param3, param4;
|
||||
} SmoothContext;
|
||||
|
||||
static av_cold int smooth_init(AVFilterContext *ctx)
|
||||
static av_cold int smooth_init(AVFilterContext *ctx, const char *args)
|
||||
{
|
||||
OCVContext *ocv = ctx->priv;
|
||||
SmoothContext *smooth = ocv->priv;
|
||||
@ -252,7 +252,7 @@ typedef struct {
|
||||
IplConvKernel *kernel;
|
||||
} DilateContext;
|
||||
|
||||
static av_cold int dilate_init(AVFilterContext *ctx)
|
||||
static av_cold int dilate_init(AVFilterContext *ctx, const char *args)
|
||||
{
|
||||
OCVContext *ocv = ctx->priv;
|
||||
DilateContext *dilate = ocv->priv;
|
||||
@ -306,7 +306,7 @@ static void erode_end_frame_filter(AVFilterContext *ctx, IplImage *inimg, IplIma
|
||||
typedef struct {
|
||||
const char *name;
|
||||
size_t priv_size;
|
||||
int (*init)(AVFilterContext *ctx);
|
||||
int (*init)(AVFilterContext *ctx, const char *args);
|
||||
void (*uninit)(AVFilterContext *ctx);
|
||||
void (*end_frame_filter)(AVFilterContext *ctx, IplImage *inimg, IplImage *outimg);
|
||||
} OCVFilterEntry;
|
||||
@ -331,7 +331,7 @@ static av_cold int init(AVFilterContext *ctx)
|
||||
|
||||
if (!(ocv->priv = av_mallocz(entry->priv_size)))
|
||||
return AVERROR(ENOMEM);
|
||||
return ocv->init(ctx);
|
||||
return ocv->init(ctx, ocv->params);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user