Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-11 01:26:15 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-11 02:21:47 +0400
commit791da4706cc386bba2fe439f3b4bd20caf90c3d3 (patch)
treef25f425a186dc74b8861b119e90320769f51ba93 /libavfilter/vsrc_mandelbrot.c
parentbd85fee91481abd98c0adb37784f9acd3c9f1b94 (diff)
lavfi/mandelbrot: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vsrc_mandelbrot.c')
-rw-r--r--libavfilter/vsrc_mandelbrot.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/vsrc_mandelbrot.c b/libavfilter/vsrc_mandelbrot.c
index c91494b11d..d27215c2c3 100644
--- a/libavfilter/vsrc_mandelbrot.c
+++ b/libavfilter/vsrc_mandelbrot.c
@@ -122,13 +122,7 @@ AVFILTER_DEFINE_CLASS(mandelbrot);
static av_cold int init(AVFilterContext *ctx, const char *args)
{
MBContext *mb = ctx->priv;
- int err;
- mb->class = &mandelbrot_class;
- av_opt_set_defaults(mb);
-
- if ((err = (av_set_options_string(mb, args, "=", ":"))) < 0)
- return err;
mb->bailout *= mb->bailout;
mb->start_scale /=mb->h;