diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 15:38:49 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 15:40:15 +0200 |
commit | e2e992c077615efbbb539912f242316bd04faa69 (patch) | |
tree | 34304156ac942253f33cb51a3098496868e98dfa /libavfilter | |
parent | 1c0feee05930924a886584aab96c3669b79818b3 (diff) | |
download | ffmpeg-e2e992c077615efbbb539912f242316bd04faa69.tar.gz |
lavfi/asetnsamples: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/af_asetnsamples.c | 17 | ||||
-rw-r--r-- | libavfilter/avfilter.c | 1 |
2 files changed, 5 insertions, 13 deletions
diff --git a/libavfilter/af_asetnsamples.c b/libavfilter/af_asetnsamples.c index 6ecf5cb18e..37d3b93c1b 100644 --- a/libavfilter/af_asetnsamples.c +++ b/libavfilter/af_asetnsamples.c @@ -45,11 +45,11 @@ typedef struct { #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM static const AVOption asetnsamples_options[] = { -{ "pad", "pad last frame with zeros", OFFSET(pad), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS }, -{ "p", "pad last frame with zeros", OFFSET(pad), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS }, -{ "nb_out_samples", "set the number of per-frame output samples", OFFSET(nb_out_samples), AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX, FLAGS }, -{ "n", "set the number of per-frame output samples", OFFSET(nb_out_samples), AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX, FLAGS }, -{ NULL } + { "nb_out_samples", "set the number of per-frame output samples", OFFSET(nb_out_samples), AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX, FLAGS }, + { "n", "set the number of per-frame output samples", OFFSET(nb_out_samples), AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX, FLAGS }, + { "pad", "pad last frame with zeros", OFFSET(pad), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS }, + { "p", "pad last frame with zeros", OFFSET(pad), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS }, + { NULL } }; AVFILTER_DEFINE_CLASS(asetnsamples); @@ -57,13 +57,6 @@ AVFILTER_DEFINE_CLASS(asetnsamples); static av_cold int init(AVFilterContext *ctx, const char *args) { ASNSContext *asns = ctx->priv; - int err; - - asns->class = &asetnsamples_class; - av_opt_set_defaults(asns); - - if ((err = av_set_options_string(asns, args, "=", ":")) < 0) - return err; asns->next_out_pts = AV_NOPTS_VALUE; av_log(ctx, AV_LOG_VERBOSE, "nb_out_samples:%d pad:%d\n", asns->nb_out_samples, asns->pad); diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index cce7bc621d..49c7fef8d1 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -677,7 +677,6 @@ static const char *const filters_left_to_update[] = { "aevalsrc", "amerge", "aresample", - "asetnsamples", "atempo", "buffer", "flite", |