summaryrefslogtreecommitdiff
path: root/libavfilter/vf_fps.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-02-25 21:21:29 +0100
committerAnton Khirnov <anton@khirnov.net>2013-04-09 19:04:15 +0200
commitf13ab29925883b4245da4129694af3af378d67be (patch)
tree02869ec1f184f9cff82952d575a2122d7f7c9086 /libavfilter/vf_fps.c
parenta39c154049a2d0c4fb02a5c74f58d6986ec21cec (diff)
vf_fps: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_fps.c')
-rw-r--r--libavfilter/vf_fps.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/libavfilter/vf_fps.c b/libavfilter/vf_fps.c
index 74e4d248a4..074dd5fff5 100644
--- a/libavfilter/vf_fps.c
+++ b/libavfilter/vf_fps.c
@@ -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,