[vlc-commits] 360p is still low resolution
Rémi Denis-Courmont
git at videolan.org
Sat Apr 7 18:25:58 CEST 2012
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Apr 7 19:14:06 2012 +0300| [9e4f91d7f00c18a7320e88fbc9da93f55c5f6e0c] | committer: Rémi Denis-Courmont
360p is still low resolution
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9e4f91d7f00c18a7320e88fbc9da93f55c5f6e0c
---
src/libvlc-module.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/libvlc-module.c b/src/libvlc-module.c
index c7d52f5..483695c 100644
--- a/src/libvlc-module.c
+++ b/src/libvlc-module.c
@@ -739,11 +739,12 @@ static const char *const ppsz_clock_descriptions[] =
"resolution is closest to (but not higher than) this setting, " \
"in number of lines. Use this option if you don't have enough CPU " \
"power or network bandwith to play higher resolutions.")
-static const int pi_prefres[] = { -1, 1080, 720, 576, 320 };
+static const int pi_prefres[] = { -1, 1080, 720, 576, 360, 240 };
static const char *const ppsz_prefres[] = {
N_("Best available"), N_("Full HD (1080p)"), N_("HD (720p)"),
N_("Standard Definition (576 or 480 lines)"),
- N_("Low definition (320 lines)")
+ N_("Low Definition (360 lines)"),
+ N_("Very Low Definition (240 lines)"),
};
#define INPUT_REPEAT_TEXT N_("Input repetitions")
More information about the vlc-commits
mailing list