|
|
|
@ -146,17 +146,17 @@ static av_cold void uninit(AVFilterContext *ctx) |
|
|
|
|
av_freep(&s->zyklus); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static int config_props(AVFilterLink *inlink) |
|
|
|
|
static int config_props(AVFilterLink *outlink) |
|
|
|
|
{ |
|
|
|
|
AVFilterContext *ctx = inlink->src; |
|
|
|
|
AVFilterContext *ctx = outlink->src; |
|
|
|
|
MBContext *s = ctx->priv; |
|
|
|
|
|
|
|
|
|
if (av_image_check_size(s->w, s->h, 0, ctx) < 0) |
|
|
|
|
return AVERROR(EINVAL); |
|
|
|
|
|
|
|
|
|
inlink->w = s->w; |
|
|
|
|
inlink->h = s->h; |
|
|
|
|
inlink->time_base = av_inv_q(s->frame_rate); |
|
|
|
|
outlink->w = s->w; |
|
|
|
|
outlink->h = s->h; |
|
|
|
|
outlink->time_base = av_inv_q(s->frame_rate); |
|
|
|
|
|
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|