[FFmpeg-cvslog] lavfi/boxblur: use standard options parsing.
Clément Bœsch
git at videolan.org
Sun Mar 24 12:33:29 CET 2013
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Sun Mar 24 08:56:02 2013 +0100| [a36d903601b94ff5cd24d64df3c748a1c1d89397] | committer: Clément Bœsch
lavfi/boxblur: use standard options parsing.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a36d903601b94ff5cd24d64df3c748a1c1d89397
---
libavfilter/vf_boxblur.c | 22 ++++++++--------------
1 file changed, 8 insertions(+), 14 deletions(-)
diff --git a/libavfilter/vf_boxblur.c b/libavfilter/vf_boxblur.c
index 3c72ddb..76803d0 100644
--- a/libavfilter/vf_boxblur.c
+++ b/libavfilter/vf_boxblur.c
@@ -105,19 +105,6 @@ AVFILTER_DEFINE_CLASS(boxblur);
static av_cold int init(AVFilterContext *ctx, const char *args)
{
BoxBlurContext *boxblur = ctx->priv;
- static const char *shorthand[] = {
- "luma_radius", "luma_power",
- "chroma_radius", "chroma_power",
- "alpha_radius", "alpha_power",
- NULL
- };
- int ret;
-
- boxblur->class = &boxblur_class;
- av_opt_set_defaults(boxblur);
-
- if ((ret = av_opt_set_from_string(boxblur, args, shorthand, "=", ":")) < 0)
- return ret;
/* fill missing params */
if (!boxblur->chroma_param.radius_expr) {
@@ -145,7 +132,6 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&boxblur->temp[0]);
av_freep(&boxblur->temp[1]);
- av_opt_free(boxblur);
}
static int query_formats(AVFilterContext *ctx)
@@ -381,6 +367,13 @@ static const AVFilterPad avfilter_vf_boxblur_outputs[] = {
{ NULL }
};
+static const char *const shorthand[] = {
+ "luma_radius", "luma_power",
+ "chroma_radius", "chroma_power",
+ "alpha_radius", "alpha_power",
+ NULL
+};
+
AVFilter avfilter_vf_boxblur = {
.name = "boxblur",
.description = NULL_IF_CONFIG_SMALL("Blur the input."),
@@ -393,4 +386,5 @@ AVFilter avfilter_vf_boxblur = {
.outputs = avfilter_vf_boxblur_outputs,
.priv_class = &boxblur_class,
+ .shorthand = shorthand,
};
More information about the ffmpeg-cvslog
mailing list