diff options
author | Jun Zhao <barryjzhao@tencent.com> | 2019-10-23 11:25:40 +0800 |
---|---|---|
committer | Jun Zhao <barryjzhao@tencent.com> | 2019-10-23 15:47:27 +0800 |
commit | 0e3d5bdc0802898cb39d64c0dbfff81b77117547 (patch) | |
tree | 6c584aa843262b864116c67e9bb03e0707abf5d5 /libavfilter | |
parent | 7832e05c35eee0b272957ba7e7d5abcc0c1d9173 (diff) | |
download | ffmpeg-streaming-0e3d5bdc0802898cb39d64c0dbfff81b77117547.zip ffmpeg-streaming-0e3d5bdc0802898cb39d64c0dbfff81b77117547.tar.gz |
lavfi/bilateral: Clean the option description and unused code
Clean the option description and unused code.
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_bilateral.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavfilter/vf_bilateral.c b/libavfilter/vf_bilateral.c index 31578a0..3c9d800 100644 --- a/libavfilter/vf_bilateral.c +++ b/libavfilter/vf_bilateral.c @@ -58,18 +58,13 @@ typedef struct BilateralContext { static const AVOption bilateral_options[] = { { "sigmaS", "set spatial sigma", OFFSET(sigmaS), AV_OPT_TYPE_FLOAT, {.dbl=0.1}, 0.0, 10, FLAGS }, - { "sigmaR", "set sigma range", OFFSET(sigmaR), AV_OPT_TYPE_FLOAT, {.dbl=0.1}, 0.0, 1, FLAGS }, + { "sigmaR", "set range sigma", OFFSET(sigmaR), AV_OPT_TYPE_FLOAT, {.dbl=0.1}, 0.0, 1, FLAGS }, { "planes", "set planes to filter", OFFSET(planes), AV_OPT_TYPE_INT, {.i64=1}, 0, 0xF, FLAGS }, { NULL } }; AVFILTER_DEFINE_CLASS(bilateral); -typedef struct ThreadData { - int height; - int width; -} ThreadData; - static int query_formats(AVFilterContext *ctx) { static const enum AVPixelFormat pix_fmts[] = { |