From 51e387d6cb7e2b69c73843dd4eadf8f3088e665c Mon Sep 17 00:00:00 2001 From: GetAway Date: Thu, 26 Apr 2018 09:09:24 +0200 Subject: [PATCH] fix HD51 mix-up letterbox<->panscan Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/f10ab4605634c1ed76973b098ad0c44d9225c4e6 Author: GetAway Date: 2018-04-26 (Thu, 26 Apr 2018) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- libarmbox/video_lib.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libarmbox/video_lib.h b/libarmbox/video_lib.h index 1631cb4..7a914fe 100644 --- a/libarmbox/video_lib.h +++ b/libarmbox/video_lib.h @@ -73,8 +73,12 @@ typedef enum { } DISPLAY_AR; typedef enum { - DISPLAY_AR_MODE_PANSCAN = 0, - DISPLAY_AR_MODE_LETTERBOX, + /* FIX for HD51 mix-up of letterbox / panscan + Standard is 1. PANSCAN 2. LETTERBOX + If next drivers are correct please revert + this and pzapit.cpp */ + DISPLAY_AR_MODE_LETTERBOX = 0, + DISPLAY_AR_MODE_PANSCAN, DISPLAY_AR_MODE_NONE, DISPLAY_AR_MODE_PANSCAN2 } DISPLAY_AR_MODE;