Skip to content

Commit 63605a3

Browse files
committed
Delete the filters15_2pass_denoise_and_upscale filter and
Rename the rename existing filters. filters1->filters_2x/filters_lowres filters4->filters_2x/filters_highres filters6->filters_2x/filters_denoise filters15_1pass_denoise_and_upscale->filters_1.5x/filters_denoise Signed-off-by: Liang <xiaoxia.liang@intel.com>
1 parent 2d485c1 commit 63605a3

64 files changed

Lines changed: 57 additions & 56 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 54 additions & 31 deletions

ffmpeg/vf_raisr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ static const AVOption raisr_options[] = {
8282
{"bits", "bit depth", OFFSET(bits), AV_OPT_TYPE_INT, {.i64 = 8}, 8, 10, FLAGS},
8383
{"range", "input color range", OFFSET(range), AV_OPT_TYPE_STRING, {.str = "video"}, 0, 0, FLAGS},
8484
{"threadcount", "thread count", OFFSET(threadcount), AV_OPT_TYPE_INT, {.i64 = DEFAULT_THREADCOUNT}, MIN_THREADCOUNT, MAX_THREADCOUNT, FLAGS},
85-
{"filterfolder", "absolute filter folder path", OFFSET(filterfolder), AV_OPT_TYPE_STRING, {.str = "filters1"}, 0, 0, FLAGS},
85+
{"filterfolder", "absolute filter folder path", OFFSET(filterfolder), AV_OPT_TYPE_STRING, {.str = "filters_2x/filters_lowres"}, 0, 0, FLAGS},
8686
{"blending", "CT blending mode (1: Randomness, 2: CountOfBitsChanged)", OFFSET(blending), AV_OPT_TYPE_INT, {.i64 = BLENDING_COUNT_OF_BITS_CHANGED}, BLENDING_RANDOMNESS, BLENDING_COUNT_OF_BITS_CHANGED, FLAGS},
8787
{"passes", "passes to run (1: one pass, 2: two pass)", OFFSET(passes), AV_OPT_TYPE_INT, {.i64 = 1}, 1, 2, FLAGS},
8888
{"mode", "mode for two pass (1: upscale in 1st pass, 2: upscale in 2nd pass)", OFFSET(mode), AV_OPT_TYPE_INT, {.i64 = 1}, 1, 2, FLAGS},
@@ -105,7 +105,7 @@ static av_cold int init(AVFilterContext *ctx)
105105
strcpy(basepath, cwd);
106106
if (strcmp(raisr->filterfolder, "") == 0)
107107
{
108-
strcat(basepath, "/filters1");
108+
strcat(basepath, "/filters_2x/filters_lowres");
109109
}
110110
else
111111
{

ffmpeg/vf_raisr_opencl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ static const AVOption raisr_opencl_options[] = {
218218
{"range", "input color range", OFFSET(range), AV_OPT_TYPE_INT, {.i64 = VideoRange}, VideoRange, FullRange, FLAGS, "range"},
219219
{ "video", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = VideoRange }, INT_MIN, INT_MAX, FLAGS, "range" },
220220
{ "full", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FullRange }, INT_MIN, INT_MAX, FLAGS, "range" },
221-
{"filterfolder", "absolute filter folder path", OFFSET(filterfolder), AV_OPT_TYPE_STRING, {.str = "filters1"}, 0, 0, FLAGS},
221+
{"filterfolder", "absolute filter folder path", OFFSET(filterfolder), AV_OPT_TYPE_STRING, {.str = "filters_2x/filters_lowres"}, 0, 0, FLAGS},
222222
{"blending", "CT blending mode (1: Randomness, 2: CountOfBitsChanged)",
223223
OFFSET(blending), AV_OPT_TYPE_INT, {.i64 = CountOfBitsChanged}, Randomness, CountOfBitsChanged, FLAGS, "blending"},
224224
{ "Randomness", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = Randomness }, INT_MIN, INT_MAX, FLAGS, "blending" },

filters15_2pass_denoise_and_upscale/Qfactor_cohbin_2_10_2

Lines changed: 0 additions & 2 deletions
This file was deleted.

filters15_2pass_denoise_and_upscale/Qfactor_cohbin_2_8_2

Lines changed: 0 additions & 2 deletions
This file was deleted.

filters15_2pass_denoise_and_upscale/Qfactor_strbin_2_10_2

Lines changed: 0 additions & 2 deletions
This file was deleted.

filters15_2pass_denoise_and_upscale/Qfactor_strbin_2_8_2

Lines changed: 0 additions & 2 deletions
This file was deleted.
-102 KB
Binary file not shown.
-102 KB
Binary file not shown.
-102 KB
Binary file not shown.

0 commit comments

Comments
 (0)