From ad868bfefb79f351e578890f740fb6133573d901 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Wed, 23 Jul 2008 19:59:13 +0200 Subject: [PATCH] vout: Given that 16:10 is the most common display ratio, put it first. --- src/video_output/vout_intf.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/video_output/vout_intf.c b/src/video_output/vout_intf.c index 3a496b831f..9a6a0af86a 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 -- 2.39.2