Mercurial > mplayer.hg
annotate drivers/mga_vid.h @ 26059:ba2efd11abf9
__asm __volatile -> asm volatile part 3
author | reimar |
---|---|
date | Sun, 24 Feb 2008 14:59:16 +0000 |
parents | 4129c8cfa742 |
children | bfb140f5b62c |
rev | line source |
---|---|
1 | 1 /* |
26003
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
2 * Matrox MGA G200/G400 YUV Video Interface module Version 0.1.0 |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
3 * BES == Back End Scaler |
1 | 4 * |
5 * Copyright (C) 1999 Aaron Holtzman | |
26003
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
6 * |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
7 * This file is part of MPlayer. |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
8 * |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
9 * MPlayer is free software; you can redistribute it and/or modify |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
10 * it under the terms of the GNU General Public License as published by |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
11 * the Free Software Foundation; either version 2 of the License, or |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
12 * (at your option) any later version. |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
13 * |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
14 * MPlayer is distributed in the hope that it will be useful, |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
17 * GNU General Public License for more details. |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
18 * |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
19 * You should have received a copy of the GNU General Public License along |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
20 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
a506a6ab14e1
Add standard license header and make copyright notices consistent.
diego
parents:
25551
diff
changeset
|
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
1 | 22 */ |
23 | |
26029 | 24 #ifndef MPLAYER_MGA_VID_H |
25 #define MPLAYER_MGA_VID_H | |
1 | 26 |
27 typedef struct mga_vid_config_s | |
28 { | |
57 | 29 uint16_t version; |
30 uint16_t card_type; | |
1 | 31 uint32_t ram_size; |
32 uint32_t src_width; | |
33 uint32_t src_height; | |
34 uint32_t dest_width; | |
35 uint32_t dest_height; | |
36 uint32_t x_org; | |
37 uint32_t y_org; | |
38 uint8_t colkey_on; | |
39 uint8_t colkey_red; | |
40 uint8_t colkey_green; | |
41 uint8_t colkey_blue; | |
42 uint32_t format; | |
57 | 43 uint32_t frame_size; |
44 uint32_t num_frames; | |
1 | 45 } mga_vid_config_t; |
46 | |
47 #define MGA_VID_FORMAT_YV12 0x32315659 | |
470 | 48 #define MGA_VID_FORMAT_IYUV (('I'<<24)|('Y'<<16)|('U'<<8)|'V') |
49 #define MGA_VID_FORMAT_I420 (('I'<<24)|('4'<<16)|('2'<<8)|'0') | |
1 | 50 #define MGA_VID_FORMAT_YUY2 (('Y'<<24)|('U'<<16)|('Y'<<8)|'2') |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
57
diff
changeset
|
51 #define MGA_VID_FORMAT_UYVY (('U'<<24)|('Y'<<16)|('V'<<8)|'Y') |
1 | 52 |
53 #define MGA_VID_CONFIG _IOR('J', 1, mga_vid_config_t) | |
54 #define MGA_VID_ON _IO ('J', 2) | |
55 #define MGA_VID_OFF _IO ('J', 3) | |
56 #define MGA_VID_FSEL _IOR('J', 4, int) | |
5013
52c008dd6e93
min() moved out of #if, applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
854
diff
changeset
|
57 #define MGA_VID_GET_LUMA _IOR('J', 5, int) |
52c008dd6e93
min() moved out of #if, applied brightness/contrast patch by Brian J. Murrell
arpi
parents:
854
diff
changeset
|
58 #define MGA_VID_SET_LUMA _IOR('J', 6, int) |
1 | 59 |
60 #define MGA_G200 0x1234 | |
61 #define MGA_G400 0x5678 | |
22692 | 62 // currently unused, G450 are mapped to MGA_G400 |
63 // #define MGA_G450 0x9ABC | |
64 #define MGA_G550 0xDEF0 | |
1 | 65 |
57 | 66 #define MGA_VID_VERSION 0x0201 |
67 | |
26029 | 68 #endif /* MPLAYER_MGA_VID_H */ |