Mercurial > mplayer.hg
annotate libvo/vo_mga.c @ 674:10fc57f7e368
FAQ filename fixed
author | arpi_esp |
---|---|
date | Mon, 30 Apr 2001 02:38:41 +0000 |
parents | 41d6eec69b60 |
children | 5cbbca64a5c9 |
rev | line source |
---|---|
1 | 1 |
2 //#define memcpy(a,b,c) | |
3 | |
4 /* | |
5 * video_out_mga.c | |
6 * | |
7 * Copyright (C) Aaron Holtzman - Aug 1999 | |
8 * | |
9 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder. | |
10 * | |
11 * mpeg2dec is free software; you can redistribute it and/or modify | |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2, or (at your option) | |
14 * any later version. | |
15 * | |
16 * mpeg2dec is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with GNU Make; see the file COPYING. If not, write to | |
23 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
24 * | |
25 */ | |
26 | |
27 #include <stdio.h> | |
28 #include <stdlib.h> | |
29 #include <string.h> | |
30 | |
31 #include "config.h" | |
32 #include "video_out.h" | |
33 #include "video_out_internal.h" | |
34 | |
35 LIBVO_EXTERN(mga) | |
36 | |
37 #include <sys/ioctl.h> | |
38 #include <unistd.h> | |
39 #include <fcntl.h> | |
40 #include <sys/mman.h> | |
41 | |
42 #include "drivers/mga_vid.h" | |
616 | 43 #include "sub.h" |
1 | 44 |
45 static vo_info_t vo_info = | |
46 { | |
47 "Matrox G200/G400 overlay (/dev/mga_vid)", | |
48 "mga", | |
49 "Aaron Holtzman <aholtzma@ess.engr.uvic.ca>", | |
50 "" | |
51 }; | |
52 | |
53 | |
54 #include "mga_common.c" | |
55 | |
56 static uint32_t | |
57 init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format) | |
58 { | |
59 | |
60 f = open("/dev/mga_vid",O_RDWR); | |
61 if(f == -1) | |
62 { | |
614 | 63 printf("Couldn't open /dev/mga_vid\n"); |
1 | 64 return(-1); |
65 } | |
66 | |
67 switch(format){ | |
68 case IMGFMT_YV12: | |
56 | 69 mga_vid_config.frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2; |
1 | 70 mga_vid_config.format=MGA_VID_FORMAT_YV12; break; |
470 | 71 case IMGFMT_I420: |
72 mga_vid_config.frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2; | |
73 mga_vid_config.format=MGA_VID_FORMAT_I420; break; | |
74 case IMGFMT_IYUV: | |
75 mga_vid_config.frame_size = ((width + 31) & ~31) * height + (((width + 31) & ~31) * height) / 2; | |
76 mga_vid_config.format=MGA_VID_FORMAT_IYUV; break; | |
1 | 77 case IMGFMT_YUY2: |
56 | 78 mga_vid_config.frame_size = ((width + 31) & ~31) * height * 2; |
1 | 79 mga_vid_config.format=MGA_VID_FORMAT_YUY2; break; |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
213
diff
changeset
|
80 case IMGFMT_UYVY: |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
213
diff
changeset
|
81 mga_vid_config.frame_size = ((width + 31) & ~31) * height * 2; |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
213
diff
changeset
|
82 mga_vid_config.format=MGA_VID_FORMAT_UYVY; break; |
1 | 83 default: |
614 | 84 printf("mga: invalid output format %0X\n",format); |
1 | 85 return (-1); |
86 } | |
87 | |
197 | 88 mga_vid_config.colkey_on=0; |
89 | |
1 | 90 mga_vid_config.src_width = width; |
91 mga_vid_config.src_height= height; | |
92 mga_vid_config.dest_width = d_width; | |
93 mga_vid_config.dest_height= d_height; | |
94 mga_vid_config.x_org= 0; // (720-mga_vid_config.dest_width)/2; | |
95 mga_vid_config.y_org= 0; // (576-mga_vid_config.dest_height)/2; | |
56 | 96 |
97 mga_vid_config.version=MGA_VID_VERSION; | |
1 | 98 |
56 | 99 return mga_init(); |
1 | 100 } |
101 | |
102 static const vo_info_t* | |
103 get_info(void) | |
104 { | |
105 return &vo_info; | |
106 } | |
107 | |
108 static void | |
109 uninit(void) | |
110 { | |
111 ioctl( f,MGA_VID_OFF,0 ); | |
112 printf("vo: uninit!\n"); | |
113 } | |
114 | |
31 | 115 static void flip_page(void) |
116 { | |
213 | 117 vo_draw_text(mga_vid_config.src_width,mga_vid_config.src_height,draw_alpha); |
31 | 118 vo_mga_flip_page(); |
119 } | |
1 | 120 |
31 | 121 |
122 static void check_events(void) | |
123 { | |
124 } | |
125 | |
126 | |
127 |