diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2005-05-15 00:47:38 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2005-05-15 00:47:38 +0000 |
commit | 342e0637ab545fe9def530ecf7fb0ac88ab2ade7 (patch) | |
tree | 90aa11cdfe8c624dd4ac8277cea5a4f40622c2cf /src/post/deinterlace/plugins/greedy2frame.c | |
parent | 54611d6a05095957875bcfa984976a4c84554ea8 (diff) | |
download | xine-lib-342e0637ab545fe9def530ecf7fb0ac88ab2ade7.tar.gz xine-lib-342e0637ab545fe9def530ecf7fb0ac88ab2ade7.tar.bz2 |
nothing to see here.
i'm just renaming variables and stuff to make it somewhat closer to tvtime's cvs.
CVS patchset: 7543
CVS date: 2005/05/15 00:47:38
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 |