[vlc-devel] commit: vout: Given that 16:10 is the most common display ratio, put it first. (Pierre d'Herbemont )
git version control
git at videolan.org
Thu Jul 24 00:01:52 CEST 2008
vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Wed Jul 23 19:59:13 2008 +0200| [ad868bfefb79f351e578890f740fb6133573d901]
vout: Given that 16:10 is the most common display ratio, put it first.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ad868bfefb79f351e578890f740fb6133573d901
---
src/video_output/vout_intf.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/video_output/vout_intf.c b/src/video_output/vout_intf.c
index 3a496b8..9a6a0af 100644
--- a/src/video_output/vout_intf.c
+++ b/src/video_output/vout_intf.c
@@ -176,16 +176,16 @@ static const struct
const char *psz_label;
} p_crop_values[] = {
{ "", N_("Default") },
- { "1:1", "1:1" },
- { "4:3", "4:3" },
- { "16:9", "16:9" },
{ "16:10", "16:10" },
- { "5:4", "5:4" },
- { "5:3", "5:3" },
+ { "16:9", "16:9" },
{ "1.85:1", "1.85:1" },
{ "221:100", "2.21:1" },
{ "235:100", "2.35:1" },
{ "239:100", "2.39:1" },
+ { "5:3", "5:3" },
+ { "4:3", "4:3" },
+ { "5:4", "5:4" },
+ { "1:1", "1:1" },
{ NULL, NULL } };
static const struct
More information about the vlc-devel
mailing list