From 4796b654bee0e6c41c9657861c90581994040a3b Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Wed, 12 Jul 2006 21:08:46 +0000 Subject: Tidy up the formatting of tvtime method help texts to allow better wrapping by the front end. CVS patchset: 8123 CVS date: 2006/07/12 21:08:46 --- src/post/deinterlace/plugins/linearblend.c | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) (limited to 'src/post/deinterlace/plugins/linearblend.c') 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 ) -- cgit v1.2.3