diff options
author | Daniel Meyerholt <dxm523@googlemail.com> | 2011-06-13 16:37:01 +0200 |
---|---|---|
committer | Daniel Meyerholt <dxm523@googlemail.com> | 2011-06-13 16:37:01 +0200 |
commit | 863d9b4f3b106c7d3a1753a7108fb4bd95b451f2 (patch) | |
tree | 29e5c59e177a1896e6a6dd556bd38736f6c6eb5a | |
parent | c55d873a8e3ae1e0405f5b189b57fa602f2858ff (diff) | |
download | vdr-plugin-vdrrip-863d9b4f3b106c7d3a1753a7108fb4bd95b451f2.tar.gz vdr-plugin-vdrrip-863d9b4f3b106c7d3a1753a7108fb4bd95b451f2.tar.bz2 |
* Added more descriptive deinterlacer strings in UI
-rwxr-xr-x | menu-vdrrip.c | 3 |
1 files changed, 2 insertions, 1 deletions
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")); } |