diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-01 13:56:17 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-01 13:56:17 +0000 |
commit | aa0650937d72c51a33cce9a326f0ffc133b65916 (patch) | |
tree | f48110880dd866dd316fba4d3638504ea5c2e28b /src | |
parent | 42e25c4c91d8214611b96bae08a05a04a1f3938d (diff) | |
download | xine-lib-aa0650937d72c51a33cce9a326f0ffc133b65916.tar.gz xine-lib-aa0650937d72c51a33cce9a326f0ffc133b65916.tar.bz2 |
Fix building on amd64 and x86 too, by moving the constant at the top.
CVS patchset: 8187
CVS date: 2006/09/01 13:56:17
Diffstat (limited to 'src')
-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 f3e964778..96e56063f 100644 --- a/src/post/deinterlace/plugins/linearblend.c +++ b/src/post/deinterlace/plugins/linearblend.c @@ -38,6 +38,14 @@ #include "deinterlace.h" #include "plugins.h" +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 void deinterlace_scanline_linear_blend( uint8_t *output, deinterlace_scanline_data_t *data, int width ) @@ -319,14 +327,6 @@ 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)", |