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

github.com/FFmpeg/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:21:21 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-11 02:21:47 +0400
commit169880e31d627925a3c27c703525da57af74f740 (patch)
tree633df43e71f0287d04c99cae0bc365652242f1ac /libavfilter/vsrc_cellauto.c
parent2040b428b45fa4f0167acc40a49771f92cd96769 (diff)
lavfi/cellauto: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vsrc_cellauto.c')
-rw-r--r--libavfilter/vsrc_cellauto.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavfilter/vsrc_cellauto.c b/libavfilter/vsrc_cellauto.c
index a48f04c3e1..3a4917a026 100644
--- a/libavfilter/vsrc_cellauto.c
+++ b/libavfilter/vsrc_cellauto.c
@@ -164,12 +164,6 @@ static int init(AVFilterContext *ctx, const char *args)
CellAutoContext *cellauto = ctx->priv;
int ret;
- cellauto->class = &cellauto_class;
- av_opt_set_defaults(cellauto);
-
- if ((ret = av_set_options_string(cellauto, args, "=", ":")) < 0)
- return ret;
-
if (!cellauto->w && !cellauto->filename && !cellauto->pattern)
av_opt_set(cellauto, "size", "320x518", 0);