annotate drivers/mga_vid.h @ 26029:4129c8cfa742

Add MPLAYER_ prefix to multiple inclusion guards.
author diego
date Fri, 22 Feb 2008 09:09:46 +0000
parents a506a6ab14e1
children bfb140f5b62c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4 *
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
22 */
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
23
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26003
diff changeset
24 #ifndef MPLAYER_MGA_VID_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26003
diff changeset
25 #define MPLAYER_MGA_VID_H
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
26
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
27 typedef struct mga_vid_config_s
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
28 {
57
baa0a12438eb config interface changed
arpi_esp
parents: 44
diff changeset
29 uint16_t version;
baa0a12438eb config interface changed
arpi_esp
parents: 44
diff changeset
30 uint16_t card_type;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
31 uint32_t ram_size;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
32 uint32_t src_width;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
33 uint32_t src_height;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
34 uint32_t dest_width;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
35 uint32_t dest_height;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
36 uint32_t x_org;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
37 uint32_t y_org;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
38 uint8_t colkey_on;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
39 uint8_t colkey_red;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
40 uint8_t colkey_green;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
41 uint8_t colkey_blue;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
42 uint32_t format;
57
baa0a12438eb config interface changed
arpi_esp
parents: 44
diff changeset
43 uint32_t frame_size;
baa0a12438eb config interface changed
arpi_esp
parents: 44
diff changeset
44 uint32_t num_frames;
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
45 } mga_vid_config_t;
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
46
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
47 #define MGA_VID_FORMAT_YV12 0x32315659
470
8e101a5d9dc2 I420/IYUV support
arpi_esp
parents: 448
diff changeset
48 #define MGA_VID_FORMAT_IYUV (('I'<<24)|('Y'<<16)|('U'<<8)|'V')
8e101a5d9dc2 I420/IYUV support
arpi_esp
parents: 448
diff changeset
49 #define MGA_VID_FORMAT_I420 (('I'<<24)|('4'<<16)|('2'<<8)|'0')
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
52
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
53 #define MGA_VID_CONFIG _IOR('J', 1, mga_vid_config_t)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
54 #define MGA_VID_ON _IO ('J', 2)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
55 #define MGA_VID_OFF _IO ('J', 3)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
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
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
59
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
60 #define MGA_G200 0x1234
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
61 #define MGA_G400 0x5678
22692
2ccbb18bc99f sync mga_vid.h to the one in the mga_vid repo.
attila
parents: 5013
diff changeset
62 // currently unused, G450 are mapped to MGA_G400
2ccbb18bc99f sync mga_vid.h to the one in the mga_vid repo.
attila
parents: 5013
diff changeset
63 // #define MGA_G450 0x9ABC
2ccbb18bc99f sync mga_vid.h to the one in the mga_vid repo.
attila
parents: 5013
diff changeset
64 #define MGA_G550 0xDEF0
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
65
57
baa0a12438eb config interface changed
arpi_esp
parents: 44
diff changeset
66 #define MGA_VID_VERSION 0x0201
baa0a12438eb config interface changed
arpi_esp
parents: 44
diff changeset
67
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 26003
diff changeset
68 #endif /* MPLAYER_MGA_VID_H */