aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-07-09 22:06:01 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-07-09 22:06:01 +0000
commitec9149a16b290d45f797008ba6a00fc63b105b6c (patch)
tree1ca3aebdfab6c2e45a77d9a71002ad027cefa8a1
parent37d0bdecd1d2647b039fce9b96d77f82202ba2c3 (diff)
downloadenigma2-ec9149a16b290d45f797008ba6a00fc63b105b6c.tar.gz
enigma2-ec9149a16b290d45f797008ba6a00fc63b105b6c.zip
fix comment, add 16:9 letterbox
-rw-r--r--lib/driver/avswitch.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/driver/avswitch.cpp b/lib/driver/avswitch.cpp
index f9144f24..199a7855 100644
--- a/lib/driver/avswitch.cpp
+++ b/lib/driver/avswitch.cpp
@@ -104,13 +104,13 @@ void eAVSwitch::setAspectRatio(int ratio)
0-4:3 Letterbox
1-4:3 PanScan
2-16:9
- 3-16:9 forced
- 4-16:9 Letterbox
- 5-16:9 PanScan
+ 3-16:9 forced ("panscan")
+ 4-16:10 Letterbox
+ 5-16:10 PanScan
+ 6-16:9 forced ("letterbox")
*/
-
- char *aspect[] = {"4:3", "4:3", "any", "16:9", "16:10", "16:10"};
- char *policy[] = {"letterbox", "panscan", "bestfit", "panscan", "letterbox", "panscan"};
+ char *aspect[] = {"4:3", "4:3", "any", "16:9", "16:10", "16:10", "16:9", "16:9"};
+ char *policy[] = {"letterbox", "panscan", "bestfit", "panscan", "letterbox", "panscan", "letterbox"};
int fd;
if((fd = open("/proc/stb/video/aspect", O_WRONLY)) < 0) {