summaryrefslogtreecommitdiffstats
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-02-20 15:02:42 +0100
committerStefano Sabatini <stefasab@gmail.com>2013-02-20 19:07:48 +0100
commita2a1e20fa2c8eb32e2b5da3d06854691997fa075 (patch)
tree53b5a3b7b4d7094c4c9b368b4684fb76d84f9049 /libavfilter
parent49c8fe304f691a661eed2c3a31df273604c1df09 (diff)
downloadffmpeg-streaming-a2a1e20fa2c8eb32e2b5da3d06854691997fa075.zip
ffmpeg-streaming-a2a1e20fa2c8eb32e2b5da3d06854691997fa075.tar.gz
lavfi/decimate: use named options
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/version.h2
-rw-r--r--libavfilter/vf_decimate.c47
2 files changed, 26 insertions, 23 deletions
diff --git a/libavfilter/version.h b/libavfilter/version.h
index 791e95c..3a2db17 100644
--- a/libavfilter/version.h
+++ b/libavfilter/version.h
@@ -30,7 +30,7 @@
#define LIBAVFILTER_VERSION_MAJOR 3
#define LIBAVFILTER_VERSION_MINOR 38
-#define LIBAVFILTER_VERSION_MICRO 103
+#define LIBAVFILTER_VERSION_MICRO 104
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
diff --git a/libavfilter/vf_decimate.c b/libavfilter/vf_decimate.c
index 0d89b81..c5761ad 100644
--- a/libavfilter/vf_decimate.c
+++ b/libavfilter/vf_decimate.c
@@ -24,6 +24,7 @@
* Rich Felker.
*/
+#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/timestamp.h"
#include "libavcodec/dsputil.h"
@@ -33,6 +34,7 @@
#include "video.h"
typedef struct {
+ const AVClass *class;
int lo, hi; ///< lower and higher threshold number of differences
///< values for 8x8 blocks
@@ -50,6 +52,20 @@ typedef struct {
AVCodecContext *avctx; ///< codec context required for the DSPContext
} DecimateContext;
+#define OFFSET(x) offsetof(DecimateContext, x)
+#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
+
+static const AVOption decimate_options[] = {
+ { "max", "set the maximum number of consecutive dropped frames (positive), or the minimum interval between dropped frames (negative)",
+ OFFSET(max_drop_count), AV_OPT_TYPE_INT, {.i64=0}, INT_MIN, INT_MAX, FLAGS },
+ { "hi", "set high dropping threshold", OFFSET(hi), AV_OPT_TYPE_INT, {.i64=64*12}, INT_MIN, INT_MAX, FLAGS },
+ { "lo", "set low dropping threshold", OFFSET(lo), AV_OPT_TYPE_INT, {.i64=64*5}, INT_MIN, INT_MAX, FLAGS },
+ { "frac", "set fraction dropping threshold", OFFSET(frac), AV_OPT_TYPE_FLOAT, {.dbl=0.33}, 0, 1, FLAGS },
+ { NULL }
+};
+
+AVFILTER_DEFINE_CLASS(decimate);
+
/**
* Return 1 if the two planes are different, 0 otherwise.
*/
@@ -116,29 +132,14 @@ static int decimate_frame(AVFilterContext *ctx,
static av_cold int init(AVFilterContext *ctx, const char *args)
{
DecimateContext *decimate = ctx->priv;
+ static const char *shorthand[] = { "max", "hi", "lo", "frac", NULL };
+ int ret;
- /* set default values */
- decimate->drop_count = decimate->max_drop_count = 0;
- decimate->lo = 64*5;
- decimate->hi = 64*12;
- decimate->frac = 0.33;
-
- if (args) {
- char c1, c2, c3, c4;
- int n = sscanf(args, "%d%c%d%c%d%c%f%c",
- &decimate->max_drop_count, &c1,
- &decimate->hi, &c2, &decimate->lo, &c3,
- &decimate->frac, &c4);
- if (n != 1 &&
- (n != 3 || c1 != ':') &&
- (n != 5 || c1 != ':' || c2 != ':') &&
- (n != 7 || c1 != ':' || c2 != ':' || c3 != ':')) {
- av_log(ctx, AV_LOG_ERROR,
- "Invalid syntax for argument '%s': "
- "must be in the form 'max:hi:lo:frac'\n", args);
- return AVERROR(EINVAL);
- }
- }
+ decimate->class = &decimate_class;
+ av_opt_set_defaults(decimate);
+
+ if ((ret = av_opt_set_from_string(decimate, args, shorthand, "=", ":")) < 0)
+ return ret;
av_log(ctx, AV_LOG_VERBOSE, "max_drop_count:%d hi:%d lo:%d frac:%f\n",
decimate->max_drop_count, decimate->hi, decimate->lo, decimate->frac);
@@ -156,6 +157,7 @@ static av_cold void uninit(AVFilterContext *ctx)
DecimateContext *decimate = ctx->priv;
avfilter_unref_bufferp(&decimate->ref);
avcodec_close(decimate->avctx);
+ av_opt_free(decimate);
av_freep(&decimate->avctx);
}
@@ -260,4 +262,5 @@ AVFilter avfilter_vf_decimate = {
.query_formats = query_formats,
.inputs = decimate_inputs,
.outputs = decimate_outputs,
+ .priv_class = &decimate_class,
};
OpenPOWER on IntegriCloud