Mercurial > mplayer.hg
annotate drivers/mga_vid.h @ 26999:0b21ffa03b9c
Rename loader/driver.[ch] to loader/drv.[ch], otherwise loader/driver.h can
conflict with the header by the same name in loader/wine/driver.h.
author | diego |
---|---|
date | Sun, 08 Jun 2008 10:43:30 +0000 |
parents | d1c10dce1ee7 |
children | 03f571138664 |
rev | line source |
---|---|
1 | 1 /* |
26829 | 2 * |
3 * mga_vid.h | |
1 | 4 * |
5 * Copyright (C) 1999 Aaron Holtzman | |
26829 | 6 * |
7 * Matrox MGA G200/G400 YUV Video Interface module Version 0.1.0 | |
8 * | |
9 * BES == Back End Scaler | |
10 * | |
11 * This software has been released under the terms of the GNU Public | |
12 * license. See http://www.gnu.org/copyleft/gpl.html for details. | |
1 | 13 */ |
14 | |
26829 | 15 #ifndef MGA_VID_H |
16 #define MGA_VID_H | |
1 | 17 |
18 typedef struct mga_vid_config_s | |
19 { | |
57 | 20 uint16_t version; |
21 uint16_t card_type; | |
1 | 22 uint32_t ram_size; |
23 uint32_t src_width; | |
24 uint32_t src_height; | |
25 uint32_t dest_width; | |
26 uint32_t dest_height; | |
27 uint32_t x_org; | |
28 uint32_t y_org; | |
29 uint8_t colkey_on; | |
30 uint8_t colkey_red; | |
31 uint8_t colkey_green; | |
32 uint8_t colkey_blue; | |
33 uint32_t format; | |
57 | 34 uint32_t frame_size; |
35 uint32_t num_frames; | |
26830
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
36 uint32_t capabilities; |
1 | 37 } mga_vid_config_t; |
38 | |
26830
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
39 /* supported FOURCCs */ |
1 | 40 #define MGA_VID_FORMAT_YV12 0x32315659 |
470 | 41 #define MGA_VID_FORMAT_IYUV (('I'<<24)|('Y'<<16)|('U'<<8)|'V') |
42 #define MGA_VID_FORMAT_I420 (('I'<<24)|('4'<<16)|('2'<<8)|'0') | |
1 | 43 #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
|
44 #define MGA_VID_FORMAT_UYVY (('U'<<24)|('Y'<<16)|('V'<<8)|'Y') |
1 | 45 |
26830
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
46 /* ioctl commands */ |
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
47 #define MGA_VID_GET_VERSION _IOR ('J', 1, uint32_t) |
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
48 #define MGA_VID_CONFIG _IOWR('J', 2, mga_vid_config_t) |
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
49 #define MGA_VID_ON _IO ('J', 3) |
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
50 #define MGA_VID_OFF _IO ('J', 4) |
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
51 #define MGA_VID_FSEL _IOW ('J', 5, uint32_t) |
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
52 #define MGA_VID_GET_LUMA _IOR ('J', 6, uint32_t) |
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
53 #define MGA_VID_SET_LUMA _IOW ('J', 7, uint32_t) |
1 | 54 |
26830
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
55 /* card identifiers */ |
1 | 56 #define MGA_G200 0x1234 |
57 #define MGA_G400 0x5678 | |
22692 | 58 // currently unused, G450 are mapped to MGA_G400 |
59 // #define MGA_G450 0x9ABC | |
60 #define MGA_G550 0xDEF0 | |
1 | 61 |
26830
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
62 /* version of the mga_vid_config struct */ |
d1c10dce1ee7
sync mga_vid.h to revision 265 from the mga_vid repo
attila
parents:
26829
diff
changeset
|
63 #define MGA_VID_VERSION 0x0202 |
57 | 64 |
26829 | 65 #endif /* MGA_VID_H */ |