git.cweiske.de
/
enigma2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
157948826fe5d4af8c24a9ac78e5a3c8b3657d38
[enigma2.git]
/
lib
/
driver
/
avswitch.h
1
#ifndef __avswitch_h
2
#define __avswitch_h
3
4
class eAVSwitch
5
{
6
static eAVSwitch *instance;
7
8
protected:
9
public:
10
eAVSwitch();
11
~eAVSwitch();
12
13
static eAVSwitch *getInstance();
14
15
void setColorFormat(int format);
16
void setAspectRatio(int ratio);
17
void setVideomode(int mode);
18
};
19
20
#endif