From 4fa5ae9db143e351f36986c1ed1f507c1b66a8d0 Mon Sep 17 00:00:00 2001 From: Chris Tallon Date: Mon, 8 Aug 2005 18:43:22 +0000 Subject: [PATCH] Updates for meanings of constants --- video.h | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/video.h b/video.h index 6bd9dd2..6b0c80e 100644 --- a/video.h +++ b/video.h @@ -57,9 +57,18 @@ class Video const static UCHAR ASPECT16X9 = 1; // Video modes - AV_SET_VID_MODE - const static UCHAR NORMAL = 0; // If aspect==4:3, 4:3 unknown / 16:9 chop sides - // If aspect==16:9, 4:3 unknown / 16:9 stretch middle over all screen - const static UCHAR LETTERBOX = 1; // If aspect==4:3, 4:3 unknown / 16:9 letterbox at top of screen (!!) + const static UCHAR NORMAL = 0; + // if aspect==4:3 && source==4:3, output==correct-4:3 + // if aspect==4:3 && source==16:9, output==chop sides + // if aspect==16:9 && source==4:3, output==not tested, unknown + // if aspect==16:9 && source==16:9, output==stretch middle over all screen + const static UCHAR LETTERBOX = 1; + // if aspect==4:3 && source==4:3, output==not tested, unknown + // if aspect==4:3 && source==16:9, output==16:9 letterbox at top of screen + // if aspect==16:9 && source==4:3, output==not tested, unknown + // if aspect==16:9 && source==16:9 output== + + // If aspect==4:3, 4:3 unknown / 16:9 letterbox at top of screen (!!) // If aspect==16:9, 4:3 unknown / 16:9 proper 16:9 mode const static UCHAR UNKNOWN2 = 2; const static UCHAR QUARTER = 3; -- 2.39.2