summaryrefslogtreecommitdiff
path: root/dxr3configdata.h
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2009-04-01 07:45:34 +0200
committerChristian Gmeiner <christian.gmeiner@gmail.com>2009-04-01 07:45:34 +0200
commite44398be1970c48479bef9a0296b479cd71ab5eb (patch)
treed2e75619fe81f2328b3be315beda2a03cba83797 /dxr3configdata.h
parentecc3dd09be579348e8a17e968415fecaaed47d84 (diff)
downloadvdr-plugin-dxr3-e44398be1970c48479bef9a0296b479cd71ab5eb.tar.gz
vdr-plugin-dxr3-e44398be1970c48479bef9a0296b479cd71ab5eb.tar.bz2
improve cDxr3Interface::ConfigureDevice
Diffstat (limited to 'dxr3configdata.h')
-rw-r--r--dxr3configdata.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/dxr3configdata.h b/dxr3configdata.h
index ecb61df..95111b4 100644
--- a/dxr3configdata.h
+++ b/dxr3configdata.h
@@ -24,14 +24,15 @@
#define _DXR3_CONFIGDATA_H_
#include "dxr3singleton.h"
+#include <linux/em8300.h>
// ==================================
//! possible video modes
enum eVideoMode
{
- PAL = 0, ///< use PAL as videomode
- PAL60, ///< use PAL60 as videomode
- NTSC ///< use NTSC as videomode
+ PAL = EM8300_VIDEOMODE_PAL,
+ PAL60 = EM8300_VIDEOMODE_PAL60,
+ NTSC = EM8300_VIDEOMODE_NTSC
};
// ==================================