aboutsummaryrefslogtreecommitdiff
path: root/lib/driver/avswitch.h
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-02 21:40:11 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-02 21:40:11 +0000
commit9458c6fcf07885c97e8b627b035c848267ee2d0c (patch)
treeb0f516f28bdc77c46d4c43f25af4da30f94e3940 /lib/driver/avswitch.h
parentce7f5539437fff074b1c3388d575660f24011f66 (diff)
downloadenigma2-9458c6fcf07885c97e8b627b035c848267ee2d0c.tar.gz
enigma2-9458c6fcf07885c97e8b627b035c848267ee2d0c.zip
avswitch
Diffstat (limited to 'lib/driver/avswitch.h')
-rw-r--r--lib/driver/avswitch.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/driver/avswitch.h b/lib/driver/avswitch.h
new file mode 100644
index 00000000..d8417692
--- /dev/null
+++ b/lib/driver/avswitch.h
@@ -0,0 +1,19 @@
+#ifndef __avswitch_h
+#define __avswitch_h
+
+class eAVSwitch
+{
+ static eAVSwitch *instance;
+
+ int avsfd;
+protected:
+public:
+ eAVSwitch();
+ ~eAVSwitch();
+
+ static eAVSwitch *getInstance();
+
+ void setColorFormat(int format);
+};
+
+#endif