10l: comparison of char* ptrs with string literals
[mplayer.git] / drivers / mga_vid.h
blobd6d12f6ae959e51fb32e834917d80d08224b4cf1
1 /*
3 * mga_vid.h
5 * Copyright (C) 1999 Aaron Holtzman
6 *
7 * Matrox MGA G200/G400 YUV Video Interface module Version 0.1.0
8 *
9 * BES == Back End Scaler
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.
15 #ifndef __LINUX_MGAVID_H
16 #define __LINUX_MGAVID_H
18 //#include <inttypes.h>
20 typedef struct mga_vid_config_s
22 uint16_t version;
23 uint16_t card_type;
24 uint32_t ram_size;
25 uint32_t src_width;
26 uint32_t src_height;
27 uint32_t dest_width;
28 uint32_t dest_height;
29 uint32_t x_org;
30 uint32_t y_org;
31 uint8_t colkey_on;
32 uint8_t colkey_red;
33 uint8_t colkey_green;
34 uint8_t colkey_blue;
35 uint32_t format;
36 uint32_t frame_size;
37 uint32_t num_frames;
38 } mga_vid_config_t;
40 #define MGA_VID_FORMAT_YV12 0x32315659
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')
43 #define MGA_VID_FORMAT_YUY2 (('Y'<<24)|('U'<<16)|('Y'<<8)|'2')
44 #define MGA_VID_FORMAT_UYVY (('U'<<24)|('Y'<<16)|('V'<<8)|'Y')
46 #define MGA_VID_CONFIG _IOR('J', 1, mga_vid_config_t)
47 #define MGA_VID_ON _IO ('J', 2)
48 #define MGA_VID_OFF _IO ('J', 3)
49 #define MGA_VID_FSEL _IOR('J', 4, int)
50 #define MGA_VID_GET_LUMA _IOR('J', 5, int)
51 #define MGA_VID_SET_LUMA _IOR('J', 6, int)
53 #define MGA_G200 0x1234
54 #define MGA_G400 0x5678
56 #define MGA_VID_VERSION 0x0201
58 #endif