Mercurial > mplayer.hg
annotate libvo/vo_wii.c @ 33874:e1bec41397bb
Don't let VCD track number and guiInfo.Track differ.
Internally use guiInfo.Track for the track without offset now and
externally speak of "titles" to the user. The titles are given minus
the VCD metadata track. (The dynamic label variable $t isn't affected.)
This also fixes some strange behavior when using the prev/next buttons
when no VCD could be loaded.
Rename MSGTR_VCDTrack MSGTR_Title to reflect the change.
author | ib |
---|---|
date | Wed, 10 Aug 2011 14:48:49 +0000 |
parents | ddb45e9443ec |
children | 5d3f93051de9 |
rev | line source |
---|---|
27375 | 1 /* |
2 * Video driver for Nintendo Wii/GameCube Framebuffer device | |
3 * | |
4 * Copyright (C) 2008 Jing Liu <fatersh-1@yahoo.com> | |
5 * | |
6 * Maintainer: Benjamin Zores <ben@geexbox.org> | |
7 * | |
8 * This file is part of MPlayer. | |
9 * | |
10 * MPlayer 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 * MPlayer 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 along | |
21 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
23 */ | |
24 | |
25 /* | |
26 * This driver handles dedicated ATI GPU, which can be found in: | |
27 * - Nintendo GameCube (ATI LSI Flipper @ 162 MHz) | |
28 * - Nintendo Wii (ATI Hollywood @ 243 MHz) | |
29 * | |
30 * Flipper and Hollywood chipsets are pretty similar, except from clock speed: | |
31 * - Embedded framebuffer is 2MB. | |
32 * - Texture cache is 1MB. | |
33 * - Vertex cache is 0.1 MB. | |
34 * - Framebuffer is YUY2, not RGB. | |
35 * - Best resolution is 480p (854x480) | |
36 */ | |
37 | |
38 #include <stdio.h> | |
39 #include <stdlib.h> | |
40 #include <string.h> | |
41 #include <fcntl.h> | |
42 #include <unistd.h> | |
43 #include <errno.h> | |
44 #include <ctype.h> | |
45 | |
46 #include <sys/mman.h> | |
47 #include <sys/ioctl.h> | |
48 #include <sys/kd.h> | |
49 #include <linux/fb.h> | |
50 | |
51 #include "config.h" | |
52 #include "video_out.h" | |
53 #include "video_out_internal.h" | |
32467 | 54 #include "sub/sub.h" |
27375 | 55 #include "mp_msg.h" |
56 | |
57 static const vo_info_t info = { | |
58 "Nintendo Wii/GameCube Framebuffer Device", | |
59 "wii", | |
60 "Jing Liu <fartersh-1@yahoo.com>", | |
61 "" | |
62 }; | |
63 | |
30925
f8939d5b14b5
Mark some more LIBVO_EXTERN declarations as const where possible.
reimar
parents:
27994
diff
changeset
|
64 const LIBVO_EXTERN(wii) |
27375 | 65 |
66 static signed int pre_init_err = -2; | |
67 | |
27965 | 68 static char *fb_dev_name = NULL; |
69 | |
27375 | 70 static FILE *vt_fp = NULL; |
71 static int vt_doit = 1; | |
27993
8a2cee973272
cosmetics: Add/remove a few newlines similar to vo_fbdev.c.
diego
parents:
27983
diff
changeset
|
72 |
27994
6aaa7be68416
Do not initialize fb_dev_fd to -1, similar to vo_fbdev.c.
diego
parents:
27993
diff
changeset
|
73 static int fb_dev_fd; |
27375 | 74 static int fb_tty_fd = -1; |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
75 static size_t fb_size; |
27375 | 76 static uint8_t *frame_buffer; |
77 static uint8_t *center; | |
78 static struct fb_var_screeninfo fb_orig_vinfo; | |
79 static struct fb_var_screeninfo fb_vinfo; | |
27963
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
80 static int fb_pixel_size; // 32: 4 24: 3 16: 2 15: 2 |
27375 | 81 static int fb_line_len; |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
82 static int in_width; |
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
83 static int in_height; |
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
84 static int out_width; |
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
85 static int out_height; |
27375 | 86 static int fs; |
87 | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
88 static int fb_preinit(int reset) |
27375 | 89 { |
90 static int fb_preinit_done = 0; | |
91 static int fb_works = 0; | |
92 | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
93 if (reset) { |
27375 | 94 fb_preinit_done = 0; |
95 return 0; | |
96 } | |
97 | |
98 if (fb_preinit_done) | |
99 return fb_works; | |
100 | |
27965 | 101 if (!fb_dev_name && !(fb_dev_name = getenv("FRAMEBUFFER"))) |
102 fb_dev_name = strdup("/dev/fb0"); | |
103 mp_msg(MSGT_VO, MSGL_V, "using %s\n", fb_dev_name); | |
104 | |
105 if ((fb_dev_fd = open(fb_dev_name, O_RDWR)) == -1) { | |
106 mp_msg(MSGT_VO, MSGL_ERR, "Can't open %s: %s\n", fb_dev_name, strerror(errno)); | |
27375 | 107 goto err_out; |
108 } | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
109 if (ioctl(fb_dev_fd, FBIOGET_VSCREENINFO, &fb_vinfo)) { |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
110 mp_msg(MSGT_VO, MSGL_ERR, "Can't get VSCREENINFO: %s\n", strerror(errno)); |
27375 | 111 goto err_out_fd; |
112 } | |
113 fb_orig_vinfo = fb_vinfo; | |
114 | |
27962
c9204a95ead1
Get rid of TTY_DEV_NAME #define to lessen differences to vo_fbdev.c.
diego
parents:
27961
diff
changeset
|
115 if ((fb_tty_fd = open("/dev/tty", O_RDWR)) < 0) { |
c9204a95ead1
Get rid of TTY_DEV_NAME #define to lessen differences to vo_fbdev.c.
diego
parents:
27961
diff
changeset
|
116 mp_msg(MSGT_VO, MSGL_ERR, "notice: Can't open /dev/tty: %s\n", strerror(errno)); |
27375 | 117 goto err_out_fd; |
118 } | |
119 | |
120 fb_preinit_done = 1; | |
121 fb_works = 1; | |
122 return 1; | |
123 | |
124 err_out_fd: | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
125 close(fb_dev_fd); |
27375 | 126 fb_dev_fd = -1; |
127 err_out: | |
128 fb_preinit_done = 1; | |
129 fb_works = 0; | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
130 |
27375 | 131 return 0; |
132 } | |
133 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
134 static void vt_set_textarea(int u, int l) |
27375 | 135 { |
136 /* how can I determine the font height? | |
137 * just use 16 for now | |
138 */ | |
139 int urow = ((u + 15) / 16) + 1; | |
140 int lrow = l / 16; | |
141 | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
142 mp_msg(MSGT_VO, MSGL_DBG2, "vt_set_textarea(%d, %d): %d,%d\n", u, l, urow, lrow); |
27375 | 143 |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
144 if (vt_fp) { |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
145 fprintf(vt_fp, "\33[%d;%dr\33[%d;%dH", urow, lrow, lrow, 0); |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
146 fflush(vt_fp); |
27375 | 147 } |
148 } | |
149 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
150 static int config(uint32_t width, uint32_t height, uint32_t d_width, |
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
151 uint32_t d_height, uint32_t flags, char *title, |
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
152 uint32_t format) |
27375 | 153 { |
154 struct fb_fix_screeninfo fb_finfo; | |
155 uint32_t black = 0x00800080; | |
156 long temp; | |
157 int vt_fd; | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
158 |
27375 | 159 fs = flags & VOFLAG_FULLSCREEN; |
160 | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
161 if (pre_init_err == -2) { |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
162 mp_msg(MSGT_VO, MSGL_ERR, "Internal fatal error: config() was called before preinit()\n"); |
27375 | 163 return -1; |
164 } | |
165 | |
166 if (pre_init_err) | |
167 return 1; | |
168 | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
169 in_width = width; |
27375 | 170 in_height = height; |
171 | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
172 out_width = (d_width && fs) ? d_width : width; |
27375 | 173 out_height = (d_width && fs) ? d_height : height; |
174 | |
175 fb_vinfo.xres_virtual = fb_vinfo.xres; | |
176 fb_vinfo.yres_virtual = fb_vinfo.yres; | |
177 | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
178 if (fb_tty_fd >= 0 && ioctl(fb_tty_fd, KDSETMODE, KD_GRAPHICS) < 0) { |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
179 mp_msg(MSGT_VO, MSGL_V, "Can't set graphics mode: %s\n", strerror(errno)); |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
180 close(fb_tty_fd); |
27375 | 181 fb_tty_fd = -1; |
182 } | |
183 | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
184 if (ioctl(fb_dev_fd, FBIOPUT_VSCREENINFO, &fb_vinfo)) { |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
185 mp_msg(MSGT_VO, MSGL_ERR, "Can't put VSCREENINFO: %s\n", strerror(errno)); |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
186 if (fb_tty_fd >= 0 && ioctl(fb_tty_fd, KDSETMODE, KD_TEXT) < 0) { |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
187 mp_msg(MSGT_VO, MSGL_ERR, "Can't restore text mode: %s\n", strerror(errno)); |
27375 | 188 } |
189 return 1; | |
190 } | |
191 | |
27963
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
192 fb_pixel_size = 2; |
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
193 |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
194 if (fs) { |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
195 out_width = fb_vinfo.xres; |
27375 | 196 out_height = fb_vinfo.yres; |
197 } | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
198 if (out_width < in_width || out_height < in_height) { |
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
199 mp_msg(MSGT_VO, MSGL_ERR, "screensize is smaller than video size\n"); |
27375 | 200 return 1; |
201 } | |
202 | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
203 if (ioctl(fb_dev_fd, FBIOGET_FSCREENINFO, &fb_finfo)) { |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
204 mp_msg(MSGT_VO, MSGL_ERR, "Can't get FSCREENINFO: %s\n", strerror(errno)); |
27375 | 205 return 1; |
206 } | |
207 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
208 if (fb_finfo.type != FB_TYPE_PACKED_PIXELS) { |
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
209 mp_msg(MSGT_VO, MSGL_ERR, "type %d not supported\n", fb_finfo.type); |
27375 | 210 return 1; |
211 } | |
212 | |
213 fb_line_len = fb_finfo.line_length; | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
214 fb_size = fb_finfo.smem_len; |
27981
53912f852a86
Move setting of frame_buffer variable out of 'if', as preferred by Reimar.
diego
parents:
27965
diff
changeset
|
215 |
53912f852a86
Move setting of frame_buffer variable out of 'if', as preferred by Reimar.
diego
parents:
27965
diff
changeset
|
216 frame_buffer = (uint8_t *) mmap(0, fb_size, PROT_READ | PROT_WRITE, |
53912f852a86
Move setting of frame_buffer variable out of 'if', as preferred by Reimar.
diego
parents:
27965
diff
changeset
|
217 MAP_SHARED, fb_dev_fd, 0); |
53912f852a86
Move setting of frame_buffer variable out of 'if', as preferred by Reimar.
diego
parents:
27965
diff
changeset
|
218 if (frame_buffer == (uint8_t *) -1) { |
27965 | 219 mp_msg(MSGT_VO, MSGL_ERR, "Can't mmap %s: %s\n", fb_dev_name, strerror(errno)); |
27375 | 220 return 1; |
221 } | |
222 | |
223 center = frame_buffer + | |
27963
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
224 ((out_width - in_width) / 2) * fb_pixel_size + |
27375 | 225 ((out_height - in_height) / 2) * fb_line_len; |
226 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
227 mp_msg(MSGT_VO, MSGL_DBG2, "frame_buffer @ %p\n", frame_buffer); |
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
228 mp_msg(MSGT_VO, MSGL_DBG2, "center @ %p\n", center); |
27963
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
229 mp_msg(MSGT_VO, MSGL_V, "pixel per line: %d\n", fb_line_len / fb_pixel_size); |
27375 | 230 |
231 /* blanking screen */ | |
232 for (temp = 0; temp < fb_size; temp += 4) | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
233 memcpy(frame_buffer + temp, (void *) &black, 4); |
27375 | 234 |
27962
c9204a95ead1
Get rid of TTY_DEV_NAME #define to lessen differences to vo_fbdev.c.
diego
parents:
27961
diff
changeset
|
235 if (vt_doit && (vt_fd = open("/dev/tty", O_WRONLY)) == -1) { |
c9204a95ead1
Get rid of TTY_DEV_NAME #define to lessen differences to vo_fbdev.c.
diego
parents:
27961
diff
changeset
|
236 mp_msg(MSGT_VO, MSGL_ERR, "can't open /dev/tty: %s\n", strerror(errno)); |
27375 | 237 vt_doit = 0; |
238 } | |
27960
68854212bd04
Merge if condition check to lessen differences to vo_fbdev.c.
diego
parents:
27958
diff
changeset
|
239 if (vt_doit && !(vt_fp = fdopen(vt_fd, "w"))) { |
27962
c9204a95ead1
Get rid of TTY_DEV_NAME #define to lessen differences to vo_fbdev.c.
diego
parents:
27961
diff
changeset
|
240 mp_msg(MSGT_VO, MSGL_ERR, "can't fdopen /dev/tty: %s\n", strerror(errno)); |
27375 | 241 vt_doit = 0; |
242 } | |
243 | |
244 if (vt_doit) | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
245 vt_set_textarea((out_height + in_height) / 2, fb_vinfo.yres); |
27375 | 246 |
247 return 0; | |
248 } | |
249 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
250 static int query_format(uint32_t format) |
27375 | 251 { |
27958 | 252 if (!fb_preinit(0)) |
27375 | 253 return 0; |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
254 |
27375 | 255 if (format != IMGFMT_YUY2) |
256 return 0; | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
257 |
27375 | 258 return VFCAP_ACCEPT_STRIDE | VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW; |
259 } | |
260 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
261 static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src, |
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
262 unsigned char *srca, int stride) |
27375 | 263 { |
264 unsigned char *dst; | |
265 | |
27963
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
266 dst = center + fb_line_len * y0 + fb_pixel_size * x0; |
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
267 |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
268 vo_draw_alpha_yuy2(w, h, src, srca, stride, dst, fb_line_len); |
27375 | 269 } |
270 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
271 static int draw_frame(uint8_t *src[]) |
27375 | 272 { |
273 return 1; | |
274 } | |
275 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
276 static int draw_slice(uint8_t *src[], int stride[], int w, int h, int x, int y) |
27375 | 277 { |
278 uint8_t *d, *s; | |
279 | |
27963
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
280 d = center + fb_line_len * y + fb_pixel_size * x; |
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
281 |
27375 | 282 s = src[0]; |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
283 while (h) { |
27963
55a3f6cf9784
Use static variable instead of #define to lessen differences to vo_fbdev.c.
diego
parents:
27962
diff
changeset
|
284 memcpy(d, s, w * fb_pixel_size); |
27375 | 285 d += fb_line_len; |
286 s += stride[0]; | |
287 h--; | |
288 } | |
289 | |
290 return 0; | |
291 } | |
292 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
293 static void check_events(void) |
27375 | 294 { |
295 } | |
296 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
297 static void flip_page(void) |
27375 | 298 { |
299 } | |
300 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
301 static void draw_osd(void) |
27375 | 302 { |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
303 vo_draw_text(in_width, in_height, draw_alpha); |
27375 | 304 } |
305 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
306 static void uninit(void) |
27375 | 307 { |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
308 if (ioctl(fb_dev_fd, FBIOGET_VSCREENINFO, &fb_vinfo)) |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
309 mp_msg(MSGT_VO, MSGL_WARN, "ioctl FBIOGET_VSCREENINFO: %s\n", strerror(errno)); |
27375 | 310 fb_orig_vinfo.xoffset = fb_vinfo.xoffset; |
311 fb_orig_vinfo.yoffset = fb_vinfo.yoffset; | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
312 if (ioctl(fb_dev_fd, FBIOPUT_VSCREENINFO, &fb_orig_vinfo)) |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
313 mp_msg(MSGT_VO, MSGL_WARN, "Can't reset original fb_var_screeninfo: %s\n", strerror(errno)); |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
314 if (fb_tty_fd >= 0) { |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
315 if (ioctl(fb_tty_fd, KDSETMODE, KD_TEXT) < 0) |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
316 mp_msg(MSGT_VO, MSGL_WARN, "Can't restore text mode: %s\n", strerror(errno)); |
27375 | 317 } |
318 if (vt_doit) | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
319 vt_set_textarea(0, fb_orig_vinfo.yres); |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
320 close(fb_tty_fd); |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
321 close(fb_dev_fd); |
27375 | 322 if (frame_buffer) |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
323 munmap(frame_buffer, fb_size); |
27375 | 324 frame_buffer = NULL; |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
325 fb_preinit(1); |
27375 | 326 } |
327 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
328 static int preinit(const char *vo_subdevice) |
27375 | 329 { |
330 pre_init_err = 0; | |
331 | |
332 if (!pre_init_err) | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
333 return pre_init_err = (fb_preinit(0) ? 0 : -1); |
27375 | 334 return -1; |
335 } | |
336 | |
27950
31837cfbb63c
cosmetics: Reformat some lines to lessen differences to vo_fbdev.c.
diego
parents:
27375
diff
changeset
|
337 static uint32_t get_image(mp_image_t *mpi) |
27375 | 338 { |
339 if (((mpi->type != MP_IMGTYPE_STATIC) && (mpi->type != MP_IMGTYPE_TEMP)) || | |
340 (mpi->flags & MP_IMGFLAG_PLANAR) || | |
341 (mpi->flags & MP_IMGFLAG_YUV) || | |
342 (mpi->width != in_width) || | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
343 (mpi->height != in_height) |
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
344 ) |
27375 | 345 return VO_FALSE; |
346 | |
347 mpi->planes[0] = center; | |
348 mpi->stride[0] = fb_line_len; | |
349 mpi->flags |= MP_IMGFLAG_DIRECT; | |
350 | |
351 return VO_TRUE; | |
352 } | |
353 | |
33305
ddb45e9443ec
Remove the variable arguments from the libvo control() functions.
iive
parents:
32467
diff
changeset
|
354 static int control(uint32_t request, void *data) |
27375 | 355 { |
356 if (request == VOCTRL_GET_IMAGE) | |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
357 return get_image(data); |
27375 | 358 else if (request == VOCTRL_QUERY_FORMAT) |
27957
bada57652ab2
cosmetics: further reformatting to lessen differences to vo_fbdev.c
diego
parents:
27950
diff
changeset
|
359 return query_format(*((uint32_t*) data)); |
27375 | 360 |
361 return VO_NOTIMPL; | |
362 } |