]> git.sesse.net Git - vlc/commitdiff
Reorder crop and aspect ratio order by commonality
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 7 May 2014 09:51:51 +0000 (11:51 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 7 May 2014 09:51:51 +0000 (11:51 +0200)
Close #11434

src/video_output/vout_intf.c

index 20e262a405de7ca9cfd518c538335cd055ba96ab..5640a2565550b77f5a90e6c69de93d2e837d88bc 100644 (file)
@@ -98,12 +98,12 @@ static const struct
     { "", N_("Default") },
     { "16:10", "16:10" },
     { "16:9", "16:9" },
+    { "4:3", "4:3" },
     { "185:100", "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" },
 };
@@ -114,9 +114,9 @@ static const struct
     char psz_label[8];
 } p_aspect_ratio_values[] = {
     { "", N_("Default") },
-    { "1:1", "1:1" },
-    { "4:3", "4:3" },
     { "16:9", "16:9" },
+    { "4:3", "4:3" },
+    { "1:1", "1:1" },
     { "16:10", "16:10" },
     { "221:100", "2.21:1" },
     { "235:100", "2.35:1" },