diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-07 23:43:10 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-07 23:43:10 +0000 |
commit | 7023cdec7b06808c5b41577a78621fc867d06246 (patch) | |
tree | 84fb47b6e9db5ef3eeb36b29f7e5b62fd0339cdc /vidix | |
parent | 547094ba51948fe0da78a034f9e1df417a5dcde3 (diff) |
Fix illegal identifier, names starting with _ and uppercase are reserved.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25647 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix')
-rw-r--r-- | vidix/sis_regs.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/vidix/sis_regs.h b/vidix/sis_regs.h index b6207a5424..ca150204c7 100644 --- a/vidix/sis_regs.h +++ b/vidix/sis_regs.h @@ -383,16 +383,16 @@ * so users with different desktop sizes can keep * captured data off the desktop */ -#define _VINWID 704 -#define _VINHGT _VINHGT_NTSC -#define _VINHGT_NTSC 240 -#define _VINHGT_PAL 290 -#define _VIN_WINDOW (704 * 291 * 2) -#define _VBI_WINDOW (704 * 64 * 2) - -#define _VIN_FIELD_EVEN 1 -#define _VIN_FIELD_ODD 2 -#define _VIN_FIELD_BOTH 4 +#define VINWID 704 +#define VINHGT VINHGT_NTSC +#define VINHGT_NTSC 240 +#define VINHGT_PAL 290 +#define VIN_WINDOW (704 * 291 * 2) +#define VBI_WINDOW (704 * 64 * 2) + +#define VIN_FIELD_EVEN 1 +#define VIN_FIELD_ODD 2 +#define VIN_FIELD_BOTH 4 /* i2c registers (TW; not on 300/310/325 series) */ |