diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-08-31 22:16:53 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-08-31 22:16:53 +0000 |
commit | 42e25c4c91d8214611b96bae08a05a04a1f3938d (patch) | |
tree | 191bff13a0c0b8c53a0b294eefb4d8564bd1b316 | |
parent | 7f789549f55541f8b73a7ee928dde234af08a4c6 (diff) | |
download | xine-lib-42e25c4c91d8214611b96bae08a05a04a1f3938d.tar.gz xine-lib-42e25c4c91d8214611b96bae08a05a04a1f3938d.tar.bz2 |
Move the help text out of the #if condition.
CVS patchset: 8186
CVS date: 2006/08/31 22:16:53
-rw-r--r-- | src/post/deinterlace/plugins/linearblend.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/post/deinterlace/plugins/linearblend.c b/src/post/deinterlace/plugins/linearblend.c index 448307b6d..f3e964778 100644 --- a/src/post/deinterlace/plugins/linearblend.c +++ b/src/post/deinterlace/plugins/linearblend.c @@ -302,14 +302,6 @@ static void deinterlace_scanline_linear_blend2_mmxext( uint8_t *output, emms(); } -static const char linearblendmethod_help[] = - "Avoids flicker by blurring consecutive frames of input. Use this if " - "you want to run your monitor at an arbitrary refresh rate and not use " - "much CPU, and are willing to sacrifice detail.\n" - "\n" - "Temporal mode evenly blurs content for least flicker, but with visible " - "trails on fast motion. From the linear blend deinterlacer in mplayer."; - static deinterlace_method_t linearblendmethod_mmxext = { "Linear Blend (mplayer)", @@ -327,6 +319,14 @@ static deinterlace_method_t linearblendmethod_mmxext = #endif +static const char linearblendmethod_help[] = + "Avoids flicker by blurring consecutive frames of input. Use this if " + "you want to run your monitor at an arbitrary refresh rate and not use " + "much CPU, and are willing to sacrifice detail.\n" + "\n" + "Temporal mode evenly blurs content for least flicker, but with visible " + "trails on fast motion. From the linear blend deinterlacer in mplayer."; + static deinterlace_method_t linearblendmethod = { "Linear Blend (mplayer)", |