mirror of https://git.ffmpeg.org/ffmpeg.git
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>
This commit is contained in:
parent
7832e05c35
commit
0e3d5bdc08
|
@ -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[] = {
|
||||
|
|
Loading…
Reference in New Issue