diff options
Diffstat (limited to 'src/post/deinterlace/plugins/linearblend.c')
-rw-r--r-- | src/post/deinterlace/plugins/linearblend.c | 30 |
1 files changed, 10 insertions, 20 deletions
diff --git a/src/post/deinterlace/plugins/linearblend.c b/src/post/deinterlace/plugins/linearblend.c index 3b65e381c..448307b6d 100644 --- a/src/post/deinterlace/plugins/linearblend.c +++ b/src/post/deinterlace/plugins/linearblend.c @@ -302,6 +302,14 @@ 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)", @@ -314,16 +322,7 @@ static deinterlace_method_t linearblendmethod_mmxext = deinterlace_scanline_linear_blend2_mmxext, 0, 0, - { "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.", - "", - "Temporal mode evenly blurs content for least", - "flicker, but with visible trails on fast motion.", - "From the linear blend deinterlacer in mplayer.", - "" } + linearblendmethod_help }; #endif @@ -348,16 +347,7 @@ static deinterlace_method_t linearblendmethod = deinterlace_scanline_linear_blend2, 0, 0, - { "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.", - "", - "Temporal mode evenly blurs content for least", - "flicker, but with visible trails on fast motion.", - "From the linear blend deinterlacer in mplayer.", - "" } + linearblendmethod_help }; deinterlace_method_t *linearblend_get_method( void ) |