[vlc-commits] Reorder crop and aspect ratio order by commonality

Jean-Baptiste Kempf git at videolan.org
Wed May 7 11:52:35 CEST 2014


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed May  7 11:51:51 2014 +0200| [d09ff4709c937b5f32e4bb4a4db625b1b09c5c7c] | committer: Jean-Baptiste Kempf

Reorder crop and aspect ratio order by commonality

Close #11434

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d09ff4709c937b5f32e4bb4a4db625b1b09c5c7c
---

 src/video_output/vout_intf.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/video_output/vout_intf.c b/src/video_output/vout_intf.c
index 20e262a..5640a25 100644
--- a/src/video_output/vout_intf.c
+++ b/src/video_output/vout_intf.c
@@ -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" },



More information about the vlc-commits mailing list