Merge remote-tracking branch 'libstb-hal-max/master'

Origin commit data
------------------
Branch: master
Commit: 054732aa1c
Author: Frankenstone <dampf_acc@online.de>
Date: 2018-03-20 (Tue, 20 Mar 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Frankenstone
2018-03-20 18:04:57 +01:00

View File

@@ -361,7 +361,8 @@ void cVideo::closeDevice(void)
int cVideo::setAspectRatio(int aspect, int mode) int cVideo::setAspectRatio(int aspect, int mode)
{ {
static const char *a[] = { "n/a", "4:3", "14:9", "16:9" }; 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", "letterbox", "bestfit", "nonlinear", "(unset)" };
static const char *m[] = { "letterbox", "panscan", "bestfit", "nonlinear", "(unset)" };
int n; int n;
lt_debug("%s: a:%d m:%d %s\n", __func__, aspect, mode, m[(mode < 0||mode > 3) ? 4 : mode]); lt_debug("%s: a:%d m:%d %s\n", __func__, aspect, mode, m[(mode < 0||mode > 3) ? 4 : mode]);