summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-03-24 09:10:42 +0100
committerClément Bœsch <ubitux@gmail.com>2013-03-24 12:26:25 +0100
commite62587bc5e72fd77a0463c16b55ccefd2982eb6f (patch)
treeda92782953ae3f8946c1701e393fc2c73f710e2d
parent5dc074d32119bc6068b262bd92214abd66f01de0 (diff)
lavfi/overlay: use standard options parsing.
-rw-r--r--libavfilter/vf_overlay.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/libavfilter/vf_overlay.c b/libavfilter/vf_overlay.c
index e7d213ccd1..57871419e2 100644
--- a/libavfilter/vf_overlay.c
+++ b/libavfilter/vf_overlay.c
@@ -119,15 +119,6 @@ AVFILTER_DEFINE_CLASS(overlay);
static av_cold int init(AVFilterContext *ctx, const char *args)
{
OverlayContext *over = ctx->priv;
- static const char *shorthand[] = { "x", "y", NULL };
- int ret;
-
- over->class = &overlay_class;
- av_opt_set_defaults(over);
-
- ret = av_opt_set_from_string(over, args, shorthand, "=", ":");
- if (ret < 0)
- return ret;
if (over->allow_packed_rgb) {
av_log(ctx, AV_LOG_WARNING,
@@ -141,8 +132,6 @@ static av_cold void uninit(AVFilterContext *ctx)
{
OverlayContext *over = ctx->priv;
- av_opt_free(over);
-
av_frame_free(&over->overpicref);
ff_bufqueue_discard_all(&over->queue_main);
ff_bufqueue_discard_all(&over->queue_over);
@@ -660,6 +649,8 @@ static const AVFilterPad avfilter_vf_overlay_outputs[] = {
{ NULL }
};
+static const char *const shorthand[] = { "x", "y", NULL };
+
AVFilter avfilter_vf_overlay = {
.name = "overlay",
.description = NULL_IF_CONFIG_SMALL("Overlay a video source on top of the input."),
@@ -674,4 +665,5 @@ AVFilter avfilter_vf_overlay = {
.inputs = avfilter_vf_overlay_inputs,
.outputs = avfilter_vf_overlay_outputs,
.priv_class = &overlay_class,
+ .shorthand = shorthand,
};