]> git.sesse.net Git - vlc/blob - plugins/mga/vout_mga.h
* Header cleaning: filled all empty authors fields, added CVS $Id stuff.
[vlc] / plugins / mga / vout_mga.h
1 /*****************************************************************************
2  * vout_mga.h: MGA video output display method headers
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 VideoLAN
5  * $Id: vout_mga.h,v 1.3 2001/03/21 13:42:34 sam Exp $
6  *
7  * Authors: Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
8  *          Samuel Hocevar <sam@zoy.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Boston, MA 02111-1307, USA.
23  *****************************************************************************/
24
25 #ifndef __LINUX_MGAVID_H
26 #define __LINUX_MGAVID_H
27
28 typedef struct mga_vid_config_s
29 {
30     u32     card_type;
31     u32     ram_size;
32     u32     src_width;
33     u32     src_height;
34     u32     dest_width;
35     u32     dest_height;
36     u32     x_org;
37     u32     y_org;
38     u8      colkey_on;
39     u8      colkey_red;
40     u8      colkey_green;
41     u8      colkey_blue;
42 } mga_vid_config_t;
43
44 #define MGA_VID_CONFIG _IOR('J', 1, mga_vid_config_t)
45 #define MGA_VID_ON     _IO ('J', 2)
46 #define MGA_VID_OFF    _IO ('J', 3)
47
48 #define MGA_G200 0x1234
49 #define MGA_G400 0x5678
50
51 #endif
52