From 863d9b4f3b106c7d3a1753a7108fb4bd95b451f2 Mon Sep 17 00:00:00 2001 From: Daniel Meyerholt Date: Mon, 13 Jun 2011 16:37:01 +0200 Subject: * Added more descriptive deinterlacer strings in UI --- menu-vdrrip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/menu-vdrrip.c b/menu-vdrrip.c index 7616411..d7d3f2f 100755 --- a/menu-vdrrip.c +++ b/menu-vdrrip.c @@ -37,6 +37,7 @@ static const char *DVBScaleWidths[] = { "352", "480", "544", "688", "704", "720" static const char *DVBScaleHeights[] = { "288", "576" }; static const char *CropModes[] = { "crop width & height", "crop only height"}; static const char *PPDeint[] = { "off", "fd", "lb", "li", "ci", "md", }; +static const char *PPDeintDescriptions[] = { "off", "fd (FFmpeg deinterlacing)", "lb (linear blend)", "li (linear interpolating)", "ci (cubic interpolating)", "md (median deinterlacing)" }; // --- cMenuVdrrip --------------------------------------------------------- @@ -937,7 +938,7 @@ void cMenuVdrripMovie::OSDCreate() { asprintf(&s, tr("- postprocessing Filters(%s):"), M->getPPValues() ? M->getPPValues() : "off"); AddColItem(new cOsdItem(s)); FREE(s); - Add(new cMenuEditStraItem("deinterlacing", &MovOSD.PPDeinterlace, NUMPPDEINT, PPDeint)); + Add(new cMenuEditStraItem("deinterlacing", &MovOSD.PPDeinterlace, NUMPPDEINT, PPDeintDescriptions)); Add(new cMenuEditBoolItem("deblocking", &MovOSD.PPDeblock, "off", "on")); } -- cgit v1.2.3