From 011f009ecea7d1ccdce726e1e7ccd47c2e47396d Mon Sep 17 00:00:00 2001 From: max_10 Date: Mon, 18 Dec 2017 23:46:35 +0100 Subject: [PATCH] fix video policy --- libarmbox/video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libarmbox/video.cpp b/libarmbox/video.cpp index 1bf4a65..83d4a09 100644 --- a/libarmbox/video.cpp +++ b/libarmbox/video.cpp @@ -361,7 +361,7 @@ 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", "letterbox", "bestfit", "nonlinear", "(unset)" }; + static const char *m[] = { "panscan", "bestfit", "letterbox", "nonlinear", "(unset)" }; int n; lt_debug("%s: a:%d m:%d %s\n", __func__, aspect, mode, m[(mode < 0||mode > 3) ? 4 : mode]);