mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
vf_fps: switch to an AVOptions-based system.
This commit is contained in:
parent
a39c154049
commit
f13ab29925
@ -69,20 +69,10 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
|
||||
FPSContext *s = ctx->priv;
|
||||
int ret;
|
||||
|
||||
s->class = &class;
|
||||
av_opt_set_defaults(s);
|
||||
|
||||
if ((ret = av_set_options_string(s, args, "=", ":")) < 0) {
|
||||
av_log(ctx, AV_LOG_ERROR, "Error parsing the options string %s.\n",
|
||||
args);
|
||||
return ret;
|
||||
}
|
||||
|
||||
if ((ret = av_parse_video_rate(&s->framerate, s->fps)) < 0) {
|
||||
av_log(ctx, AV_LOG_ERROR, "Error parsing framerate %s.\n", s->fps);
|
||||
return ret;
|
||||
}
|
||||
av_opt_free(s);
|
||||
|
||||
if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFrame*))))
|
||||
return AVERROR(ENOMEM);
|
||||
@ -290,6 +280,7 @@ AVFilter avfilter_vf_fps = {
|
||||
.uninit = uninit,
|
||||
|
||||
.priv_size = sizeof(FPSContext),
|
||||
.priv_class = &class,
|
||||
|
||||
.inputs = avfilter_vf_fps_inputs,
|
||||
.outputs = avfilter_vf_fps_outputs,
|
||||
|
Loading…
Reference in New Issue
Block a user