diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-01-26 23:15:54 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-01-26 23:15:54 +0000 |
| commit | a2705e2beab9649b7ad70d0873aba014778e5d20 (patch) | |
| tree | d55a965c7261b7f9bee8e744e52572374014b5a3 /lib/driver/avswitch.cpp | |
| parent | 6c7144777d4e9001792e2843e9891f861b45dab9 (diff) | |
| download | enigma2-a2705e2beab9649b7ad70d0873aba014778e5d20.tar.gz enigma2-a2705e2beab9649b7ad70d0873aba014778e5d20.zip | |
add something which doesn't work
Diffstat (limited to 'lib/driver/avswitch.cpp')
| -rw-r--r-- | lib/driver/avswitch.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/driver/avswitch.cpp b/lib/driver/avswitch.cpp index 47a60cf3..09b1ec33 100644 --- a/lib/driver/avswitch.cpp +++ b/lib/driver/avswitch.cpp @@ -75,6 +75,7 @@ void eAVSwitch::setColorFormat(int format) char *cvbs="cvbs"; char *rgb="rgb"; char *svideo="svideo"; + char *yuv="yuv"; int fd; if((fd = open("/proc/stb/avs/0/colorformat", O_WRONLY)) < 0) { @@ -91,6 +92,9 @@ void eAVSwitch::setColorFormat(int format) case 2: write(fd, svideo, strlen(svideo)); break; + case 3: + write(fd, yuv, strlen(yuv)); + break; } close(fd); } |
