diff options
Diffstat (limited to 'src/post/deinterlace/plugins/greedy2frame.c')
-rw-r--r-- | src/post/deinterlace/plugins/greedy2frame.c | 33 |
1 files changed, 11 insertions, 22 deletions
diff --git a/src/post/deinterlace/plugins/greedy2frame.c b/src/post/deinterlace/plugins/greedy2frame.c index 739f13538..dac7d488c 100644 --- a/src/post/deinterlace/plugins/greedy2frame.c +++ b/src/post/deinterlace/plugins/greedy2frame.c @@ -51,39 +51,28 @@ static int GreedyTwoFrameThreshold2 = 8; #include "greedy2frame_template.c" #undef IS_SSE -static deinterlace_setting_t settings[] = -{ - { - "Greedy 2 Frame Luma Threshold", - SETTING_SLIDER, - &GreedyTwoFrameThreshold, - 4, 0, 128, 1, - 0 - }, - { - "Greedy 2 Frame Chroma Threshold", - SETTING_SLIDER, - &GreedyTwoFrameThreshold2, - 8, 0, 128, 1, - 0 - } -}; - static deinterlace_method_t greedymethod = { - DEINTERLACE_PLUGIN_API_VERSION, "Greedy - 2-frame (DScaler)", "Greedy2Frame", 4, MM_ACCEL_X86_MMXEXT, 0, - 2, - settings, 0, 0, 0, DeinterlaceGreedy2Frame_SSE, - 1 + 1, + { "", + "", + "", + "", + "", + "", + "", + "", + "", + "" } }; #ifdef BUILD_TVTIME_PLUGINS |