From f4ad480fc07ec1b356ffcf6f100f3785c772a55b Mon Sep 17 00:00:00 2001 From: max_10 Date: Tue, 20 Mar 2018 11:42:39 +0100 Subject: [PATCH] armbox: fix video policy again Conflicts: libarmbox/video.cpp --- libarmbox/video.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libarmbox/video.cpp b/libarmbox/video.cpp index 769d174..5af682e 100644 --- a/libarmbox/video.cpp +++ b/libarmbox/video.cpp @@ -362,7 +362,8 @@ void cVideo::closeDevice(void) int cVideo::setAspectRatio(int aspect, int mode) { static const char *a[] = { "n/a", "4:3", "14:9", "16:9" }; - static const char *m[] = { "panscan", "bestfit", "letterbox", "nonlinear", "(unset)" }; +// static const char *m[] = { "panscan", "letterbox", "bestfit", "nonlinear", "(unset)" }; + static const char *m[] = { "letterbox", "panscan", "bestfit", "nonlinear", "(unset)" }; int n; lt_debug("%s: a:%d m:%d %s\n", __func__, aspect, mode, m[(mode < 0||mode > 3) ? 4 : mode]);