annotate libvo/vo_fbdev.c @ 23376:6d9bf745cd28

Remove more pointless fastmemcpy.h includes in libvo
author reimar
date Sun, 27 May 2007 21:13:10 +0000
parents d27e00bb61b8
children a124f3abc1ec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
1 /*
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
2 * Video driver for Framebuffer device
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
3 * by Szabolcs Berecz <szabi@inf.elte.hu>
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
4 * (C) 2001
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
5 *
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
6 * Some idea and code borrowed from Chris Lawrence's ppmtofb-0.27
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
7 * Some fixes and small improvements by Joey Parrish <joey@nicewarrior.org>
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
8 */
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
9
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
10 #include <stdio.h>
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
11 #include <stdlib.h>
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
12 #include <string.h>
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
13 #include <fcntl.h>
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
14 #include <unistd.h>
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
15 #include <errno.h>
11412
ec3dac7d17a0 Warning fixes (approved by A'rpi).
rathann
parents: 11216
diff changeset
16 #include <ctype.h>
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
17
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
18 #include <sys/mman.h>
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
19 #include <sys/ioctl.h>
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
20 #include <sys/kd.h>
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
21 #include <linux/fb.h>
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
22
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
23 #include "config.h"
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
24 #include "video_out.h"
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
25 #include "video_out_internal.h"
658
ae02d4734ad6 some cleanups
szabii
parents: 633
diff changeset
26 #include "fastmemcpy.h"
633
bdaa6d334d01 some cleanup
szabii
parents: 618
diff changeset
27 #include "sub.h"
4089
e1c6178de089 Configurable VIDIX usage
nick
parents: 4084
diff changeset
28 #ifdef CONFIG_VIDIX
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
29 #include "vosub_vidix.h"
4089
e1c6178de089 Configurable VIDIX usage
nick
parents: 4084
diff changeset
30 #endif
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
31 #include "aspect.h"
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
32 #include "mp_msg.h"
4756
75fe20ca2386 Screenshot on the fly
nick
parents: 4596
diff changeset
33
8148
5b39e79af5fe removed get_info, using the same sheme as in libmpcodecs instead
alex
parents: 7980
diff changeset
34 static vo_info_t info = {
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
35 "Framebuffer Device",
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
36 "fbdev",
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
37 "Szabolcs Berecz <szabi@inf.elte.hu>",
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
38 ""
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
39 };
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
40
8148
5b39e79af5fe removed get_info, using the same sheme as in libmpcodecs instead
alex
parents: 7980
diff changeset
41 LIBVO_EXTERN(fbdev)
5b39e79af5fe removed get_info, using the same sheme as in libmpcodecs instead
alex
parents: 7980
diff changeset
42
4089
e1c6178de089 Configurable VIDIX usage
nick
parents: 4084
diff changeset
43 #ifdef CONFIG_VIDIX
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
44 /* Name of VIDIX driver */
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
45 static const char *vidix_name = NULL;
11158
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
46 static vidix_grkey_t gr_key;
4386
09f77684a676 did not compile when --disable-vidix was used
pl
parents: 4380
diff changeset
47 #endif
6164
aee9c32349a9 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 4756
diff changeset
48 static signed int pre_init_err = -2;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
49 /******************************
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
50 * fb.modes support *
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
51 ******************************/
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
52
7069
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6851
diff changeset
53 extern char *monitor_hfreq_str;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6851
diff changeset
54 extern char *monitor_vfreq_str;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6851
diff changeset
55 extern char *monitor_dotclock_str;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6851
diff changeset
56
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6851
diff changeset
57 static range_t *monitor_hfreq = NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6851
diff changeset
58 static range_t *monitor_vfreq = NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6851
diff changeset
59 static range_t *monitor_dotclock = NULL;
21e1ab99cb21 General Timing Formula algorithm from a scratch.
arpi
parents: 6851
diff changeset
60
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
61 typedef struct {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
62 char *name;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
63 uint32_t xres, yres, vxres, vyres, depth;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
64 uint32_t pixclock, left, right, upper, lower, hslen, vslen;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
65 uint32_t sync;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
66 uint32_t vmode;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
67 } fb_mode_t;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
68
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
69 #define MAX_NR_TOKEN 16
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
70
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
71 #define MAX_LINE_LEN 1000
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
72
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
73 #define RET_EOF -1
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
74 #define RET_EOL -2
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
75
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
76 static int validate_mode(fb_mode_t *m)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
77 {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
78 if (!m->xres) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
79 mp_msg(MSGT_VO, MSGL_V, "needs geometry ");
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
80 return 0;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
81 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
82 if (!m->pixclock) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
83 mp_msg(MSGT_VO, MSGL_V, "needs timings ");
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
84 return 0;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
85 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
86 return 1;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
87 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
88
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
89 static FILE *fp;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
90 static int line_num = 0;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
91 static char *line;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
92 static char *token[MAX_NR_TOKEN];
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
93
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
94 static int get_token(int num)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
95 {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
96 static int read_nextline = 1;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
97 static int line_pos;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
98 int i;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
99 char c;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
100
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
101 if (num >= MAX_NR_TOKEN) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
102 mp_msg(MSGT_VO, MSGL_V, "get_token(): max >= MAX_NR_TOKEN!\n");
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
103 goto out_eof;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
104 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
105
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
106 if (read_nextline) {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
107 if (!fgets(line, MAX_LINE_LEN, fp))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
108 goto out_eof;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
109 line_pos = 0;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
110 ++line_num;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
111 read_nextline = 0;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
112 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
113 for (i = 0; i < num; i++) {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
114 while (isspace(line[line_pos]))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
115 ++line_pos;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
116 if (line[line_pos] == '\0' || line[line_pos] == '#') {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
117 read_nextline = 1;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
118 goto out_eol;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
119 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
120 token[i] = line + line_pos;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
121 c = line[line_pos];
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
122 if (c == '"' || c == '\'') {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
123 token[i]++;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
124 while (line[++line_pos] != c && line[line_pos])
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
125 /* NOTHING */;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
126 if (!line[line_pos])
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
127 goto out_eol;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
128 line[line_pos] = ' ';
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
129 } else {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
130 for (/* NOTHING */; !isspace(line[line_pos]) &&
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
131 line[line_pos]; line_pos++)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
132 /* NOTHING */;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
133 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
134 if (!line[line_pos]) {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
135 read_nextline = 1;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
136 if (i == num - 1)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
137 goto out_ok;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
138 goto out_eol;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
139 }
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
140 line[line_pos++] = '\0';
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
141 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
142 out_ok:
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
143 return i;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
144 out_eof:
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
145 return RET_EOF;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
146 out_eol:
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
147 return RET_EOL;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
148 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
149
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
150 static fb_mode_t *fb_modes = NULL;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
151 static int nr_modes = 0;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
152
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
153 static int parse_fbmode_cfg(char *cfgfile)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
154 {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
155 #define CHECK_IN_MODE_DEF\
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
156 if (!in_mode_def) {\
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
157 mp_msg(MSGT_VO, MSGL_V, "'needs 'mode' first");\
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
158 goto err_out_print_linenum;\
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
159 }
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
160 fb_mode_t *mode = NULL;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
161 char *endptr; // strtoul()...
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
162 int in_mode_def = 0;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
163 int tmp, i;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
164
17900
5075cd9bb631 Don't try to parse fb.modes more than once. Fixes playback of multiple files
pacman
parents: 17728
diff changeset
165 /* If called more than once, reuse parsed data */
5075cd9bb631 Don't try to parse fb.modes more than once. Fixes playback of multiple files
pacman
parents: 17728
diff changeset
166 if (nr_modes)
5075cd9bb631 Don't try to parse fb.modes more than once. Fixes playback of multiple files
pacman
parents: 17728
diff changeset
167 return nr_modes;
5075cd9bb631 Don't try to parse fb.modes more than once. Fixes playback of multiple files
pacman
parents: 17728
diff changeset
168
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
169 mp_msg(MSGT_VO, MSGL_V, "Reading %s: ", cfgfile);
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
170
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
171 if ((fp = fopen(cfgfile, "r")) == NULL) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
172 mp_msg(MSGT_VO, MSGL_V, "can't open '%s': %s\n", cfgfile, strerror(errno));
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
173 return -1;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
174 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
175
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
176 if ((line = (char *) malloc(MAX_LINE_LEN + 1)) == NULL) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
177 mp_msg(MSGT_VO, MSGL_V, "can't get memory for 'line': %s\n", strerror(errno));
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
178 return -2;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
179 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
180
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
181 /*
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
182 * check if the cfgfile starts with 'mode'
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
183 */
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
184 while ((tmp = get_token(1)) == RET_EOL)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
185 /* NOTHING */;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
186 if (tmp == RET_EOF)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
187 goto out;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
188 if (!strcmp(token[0], "mode"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
189 goto loop_enter;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
190 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
191
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
192 while ((tmp = get_token(1)) != RET_EOF) {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
193 if (tmp == RET_EOL)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
194 continue;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
195 if (!strcmp(token[0], "mode")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
196 if (in_mode_def) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
197 mp_msg(MSGT_VO, MSGL_V, "'endmode' required");
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
198 goto err_out_print_linenum;
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
199 }
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
200 if (!validate_mode(mode))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
201 goto err_out_not_valid;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
202 loop_enter:
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
203 if (!(fb_modes = (fb_mode_t *) realloc(fb_modes,
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
204 sizeof(fb_mode_t) * (nr_modes + 1)))) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
205 mp_msg(MSGT_VO, MSGL_V, "can't realloc 'fb_modes' (nr_modes = %d):"
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
206 " %s\n", nr_modes, strerror(errno));
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
207 goto err_out;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
208 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
209 mode=fb_modes + nr_modes;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
210 ++nr_modes;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
211 memset(mode,0,sizeof(fb_mode_t));
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
212
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
213 if (get_token(1) < 0)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
214 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
215 for (i = 0; i < nr_modes - 1; i++) {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
216 if (!strcmp(token[0], fb_modes[i].name)) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
217 mp_msg(MSGT_VO, MSGL_V, "mode name '%s' isn't unique", token[0]);
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
218 goto err_out_print_linenum;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
219 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
220 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
221 if (!(mode->name = strdup(token[0]))) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
222 mp_msg(MSGT_VO, MSGL_V, "can't strdup -> 'name': %s\n", strerror(errno));
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
223 goto err_out;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
224 }
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
225 in_mode_def = 1;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
226 } else if (!strcmp(token[0], "geometry")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
227 CHECK_IN_MODE_DEF;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
228 if (get_token(5) < 0)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
229 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
230 mode->xres = strtoul(token[0], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
231 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
232 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
233 mode->yres = strtoul(token[1], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
234 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
235 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
236 mode->vxres = strtoul(token[2], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
237 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
238 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
239 mode->vyres = strtoul(token[3], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
240 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
241 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
242 mode->depth = strtoul(token[4], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
243 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
244 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
245 } else if (!strcmp(token[0], "timings")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
246 CHECK_IN_MODE_DEF;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
247 if (get_token(7) < 0)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
248 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
249 mode->pixclock = strtoul(token[0], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
250 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
251 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
252 mode->left = strtoul(token[1], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
253 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
254 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
255 mode->right = strtoul(token[2], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
256 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
257 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
258 mode->upper = strtoul(token[3], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
259 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
260 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
261 mode->lower = strtoul(token[4], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
262 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
263 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
264 mode->hslen = strtoul(token[5], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
265 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
266 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
267 mode->vslen = strtoul(token[6], &endptr, 0);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
268 if (*endptr)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
269 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
270 } else if (!strcmp(token[0], "endmode")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
271 CHECK_IN_MODE_DEF;
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
272 in_mode_def = 0;
383
086c66d570d8 some fixes
szabii
parents: 380
diff changeset
273 } else if (!strcmp(token[0], "accel")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
274 CHECK_IN_MODE_DEF;
383
086c66d570d8 some fixes
szabii
parents: 380
diff changeset
275 if (get_token(1) < 0)
086c66d570d8 some fixes
szabii
parents: 380
diff changeset
276 goto err_out_parse_error;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
277 /*
e847396dc49f some changes...
szabii
parents: 383
diff changeset
278 * it's only used for text acceleration
e847396dc49f some changes...
szabii
parents: 383
diff changeset
279 * so we just ignore it.
e847396dc49f some changes...
szabii
parents: 383
diff changeset
280 */
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
281 } else if (!strcmp(token[0], "hsync")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
282 CHECK_IN_MODE_DEF;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
283 if (get_token(1) < 0)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
284 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
285 if (!strcmp(token[0], "low"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
286 mode->sync &= ~FB_SYNC_HOR_HIGH_ACT;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
287 else if(!strcmp(token[0], "high"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
288 mode->sync |= FB_SYNC_HOR_HIGH_ACT;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
289 else
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
290 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
291 } else if (!strcmp(token[0], "vsync")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
292 CHECK_IN_MODE_DEF;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
293 if (get_token(1) < 0)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
294 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
295 if (!strcmp(token[0], "low"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
296 mode->sync &= ~FB_SYNC_VERT_HIGH_ACT;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
297 else if(!strcmp(token[0], "high"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
298 mode->sync |= FB_SYNC_VERT_HIGH_ACT;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
299 else
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
300 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
301 } else if (!strcmp(token[0], "csync")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
302 CHECK_IN_MODE_DEF;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
303 if (get_token(1) < 0)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
304 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
305 if (!strcmp(token[0], "low"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
306 mode->sync &= ~FB_SYNC_COMP_HIGH_ACT;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
307 else if(!strcmp(token[0], "high"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
308 mode->sync |= FB_SYNC_COMP_HIGH_ACT;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
309 else
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
310 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
311 } else if (!strcmp(token[0], "extsync")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
312 CHECK_IN_MODE_DEF;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
313 if (get_token(1) < 0)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
314 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
315 if (!strcmp(token[0], "false"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
316 mode->sync &= ~FB_SYNC_EXT;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
317 else if(!strcmp(token[0], "true"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
318 mode->sync |= FB_SYNC_EXT;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
319 else
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
320 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
321 } else if (!strcmp(token[0], "laced")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
322 CHECK_IN_MODE_DEF;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
323 if (get_token(1) < 0)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
324 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
325 if (!strcmp(token[0], "false"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
326 mode->vmode = FB_VMODE_NONINTERLACED;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
327 else if (!strcmp(token[0], "true"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
328 mode->vmode = FB_VMODE_INTERLACED;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
329 else
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
330 goto err_out_parse_error;
479
1302e63cee73 dumb bug
szabii
parents: 476
diff changeset
331 } else if (!strcmp(token[0], "double")) {
977
d3354ad8aa7b small fix
szabii
parents: 950
diff changeset
332 CHECK_IN_MODE_DEF;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
333 if (get_token(1) < 0)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
334 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
335 if (!strcmp(token[0], "false"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
336 ;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
337 else if (!strcmp(token[0], "true"))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
338 mode->vmode = FB_VMODE_DOUBLE;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
339 else
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
340 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
341 } else
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
342 goto err_out_parse_error;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
343 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
344 if (!validate_mode(mode))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
345 goto err_out_not_valid;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
346 out:
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
347 mp_msg(MSGT_VO, MSGL_V, "%d modes\n", nr_modes);
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
348 free(line);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
349 fclose(fp);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
350 return nr_modes;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
351 err_out_parse_error:
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
352 mp_msg(MSGT_VO, MSGL_V, "parse error");
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
353 err_out_print_linenum:
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
354 mp_msg(MSGT_VO, MSGL_V, " at line %d\n", line_num);
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
355 err_out:
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
356 if (fb_modes) {
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
357 free(fb_modes);
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
358 fb_modes = NULL;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
359 }
e847396dc49f some changes...
szabii
parents: 383
diff changeset
360 nr_modes = 0;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
361 free(line);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
362 free(fp);
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
363 return -2;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
364 err_out_not_valid:
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
365 mp_msg(MSGT_VO, MSGL_V, "previous mode is not correct");
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
366 goto err_out_print_linenum;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
367 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
368
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
369 static fb_mode_t *find_mode_by_name(char *name)
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
370 {
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
371 int i;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
372
658
ae02d4734ad6 some cleanups
szabii
parents: 633
diff changeset
373 for (i = 0; i < nr_modes; i++)
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
374 if (!strcmp(name, fb_modes[i].name))
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
375 return fb_modes + i;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
376 return NULL;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
377 }
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
378
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
379 static float dcf(fb_mode_t *m) //driving clock frequency
e847396dc49f some changes...
szabii
parents: 383
diff changeset
380 {
519
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
381 return 1e12f / m->pixclock;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
382 }
e847396dc49f some changes...
szabii
parents: 383
diff changeset
383
e847396dc49f some changes...
szabii
parents: 383
diff changeset
384 static float hsf(fb_mode_t *m) //horizontal scan frequency
e847396dc49f some changes...
szabii
parents: 383
diff changeset
385 {
e847396dc49f some changes...
szabii
parents: 383
diff changeset
386 int htotal = m->left + m->xres + m->right + m->hslen;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
387 return dcf(m) / htotal;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
388 }
e847396dc49f some changes...
szabii
parents: 383
diff changeset
389
e847396dc49f some changes...
szabii
parents: 383
diff changeset
390 static float vsf(fb_mode_t *m) //vertical scan frequency
e847396dc49f some changes...
szabii
parents: 383
diff changeset
391 {
e847396dc49f some changes...
szabii
parents: 383
diff changeset
392 int vtotal = m->upper + m->yres + m->lower + m->vslen;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
393 return hsf(m) / vtotal;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
394 }
e847396dc49f some changes...
szabii
parents: 383
diff changeset
395
e847396dc49f some changes...
szabii
parents: 383
diff changeset
396
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
397 static int mode_works(fb_mode_t *m, range_t *hfreq, range_t *vfreq,
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
398 range_t *dotclock)
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
399 {
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
400 float h = hsf(m);
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
401 float v = vsf(m);
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
402 float d = dcf(m);
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
403 int ret = 1;
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
404
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
405 mp_msg(MSGT_VO, MSGL_DBG2, "mode %dx%d:", m->xres, m->yres);
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
406 if (!in_range(hfreq, h)) {
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
407 ret = 0;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
408 mp_msg(MSGT_VO, MSGL_DBG2, " hsync out of range.");
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
409 }
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
410 if (!in_range(vfreq, v)) {
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
411 ret = 0;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
412 mp_msg(MSGT_VO, MSGL_DBG2, " vsync out of range.");
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
413 }
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
414 if (!in_range(dotclock, d)) {
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
415 ret = 0;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
416 mp_msg(MSGT_VO, MSGL_DBG2, " dotclock out of range.");
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
417 }
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
418 if (ret)
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
419 mp_msg(MSGT_VO, MSGL_DBG2, " hsync, vsync, dotclock ok.\n");
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
420 else
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
421 mp_msg(MSGT_VO, MSGL_DBG2, "\n");
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
422
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
423 return ret;
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
424 }
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
425
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
426 static fb_mode_t *find_best_mode(int xres, int yres, range_t *hfreq,
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
427 range_t *vfreq, range_t *dotclock)
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
428 {
e847396dc49f some changes...
szabii
parents: 383
diff changeset
429 int i;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
430 fb_mode_t *best = fb_modes;
519
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
431 fb_mode_t *curr;
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
432
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
433 mp_msg(MSGT_VO, MSGL_DBG2, "Searching for first working mode\n");
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
434
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
435 for (i = 0; i < nr_modes; i++, best++)
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
436 if (mode_works(best, hfreq, vfreq, dotclock))
519
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
437 break;
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
438
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
439 if (i == nr_modes)
519
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
440 return NULL;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
441 if (i == nr_modes - 1)
519
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
442 return best;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
443
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
444 mp_msg(MSGT_VO, MSGL_DBG2, "First working mode: %dx%d\n", best->xres, best->yres);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
445 mp_msg(MSGT_VO, MSGL_DBG2, "Searching for better modes\n");
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
446
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
447 for (curr = best + 1; i < nr_modes - 1; i++, curr++) {
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
448 if (!mode_works(curr, hfreq, vfreq, dotclock))
519
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
449 continue;
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
450
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
451 if (best->xres < xres || best->yres < yres) {
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
452 if (curr->xres > best->xres || curr->yres > best->yres) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
453 mp_msg(MSGT_VO, MSGL_DBG2, "better than %dx%d, which is too small.\n",
519
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
454 best->xres, best->yres);
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
455 best = curr;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
456 } else
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
457 mp_msg(MSGT_VO, MSGL_DBG2, "too small.\n");
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
458 } else if (curr->xres == best->xres && curr->yres == best->yres &&
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
459 vsf(curr) > vsf(best)) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
460 mp_msg(MSGT_VO, MSGL_DBG2, "faster screen refresh.\n");
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
461 best = curr;
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
462 } else if ((curr->xres <= best->xres && curr->yres <= best->yres) &&
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
463 (curr->xres >= xres && curr->yres >= yres)) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
464 mp_msg(MSGT_VO, MSGL_DBG2, "better than %dx%d, which is too large.\n",
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
465 best->xres, best->yres);
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
466 best = curr;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
467 } else {
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
468 if (curr->xres < xres || curr->yres < yres)
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
469 mp_msg(MSGT_VO, MSGL_DBG2, "too small.\n");
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
470 else if (curr->xres > best->xres || curr->yres > best->yres)
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
471 mp_msg(MSGT_VO, MSGL_DBG2, "too large.\n");
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
472 else mp_msg(MSGT_VO, MSGL_DBG2, "it's worse, don't know why.\n");
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
473 }
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
474 }
1561
e71337d1e58b more verbose videomode selection
szabi
parents: 1501
diff changeset
475
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
476 return best;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
477 }
e847396dc49f some changes...
szabii
parents: 383
diff changeset
478
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
479 static void set_bpp(struct fb_var_screeninfo *p, int bpp)
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
480 {
476
1897ed6661bf small change
szabii
parents: 423
diff changeset
481 p->bits_per_pixel = (bpp + 1) & ~1;
1087
e2e9a82f9134 nothing important
szabii
parents: 1076
diff changeset
482 p->red.msb_right = p->green.msb_right = p->blue.msb_right = p->transp.msb_right = 0;
563
5eb28ba8a96a nothing important
szabii
parents: 550
diff changeset
483 p->transp.offset = p->transp.length = 0;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
484 p->blue.offset = 0;
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
485 switch (bpp) {
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
486 case 32:
563
5eb28ba8a96a nothing important
szabii
parents: 550
diff changeset
487 p->transp.offset = 24;
5eb28ba8a96a nothing important
szabii
parents: 550
diff changeset
488 p->transp.length = 8;
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
489 case 24:
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
490 p->red.offset = 16;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
491 p->red.length = 8;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
492 p->green.offset = 8;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
493 p->green.length = 8;
550
58b24a998cb5 nothing important?
szabii
parents: 538
diff changeset
494 p->blue.length = 8;
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
495 break;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
496 case 16:
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
497 p->red.offset = 11;
550
58b24a998cb5 nothing important?
szabii
parents: 538
diff changeset
498 p->green.length = 6;
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
499 p->red.length = 5;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
500 p->green.offset = 5;
550
58b24a998cb5 nothing important?
szabii
parents: 538
diff changeset
501 p->blue.length = 5;
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
502 break;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
503 case 15:
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
504 p->red.offset = 10;
550
58b24a998cb5 nothing important?
szabii
parents: 538
diff changeset
505 p->green.length = 5;
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
506 p->red.length = 5;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
507 p->green.offset = 5;
550
58b24a998cb5 nothing important?
szabii
parents: 538
diff changeset
508 p->blue.length = 5;
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
509 break;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
510 }
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
511 }
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
512
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
513 static void fb_mode2fb_vinfo(fb_mode_t *m, struct fb_var_screeninfo *v)
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
514 {
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
515 v->xres = m->xres;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
516 v->yres = m->yres;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
517 v->xres_virtual = m->vxres;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
518 v->yres_virtual = m->vyres;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
519 set_bpp(v, m->depth);
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
520 v->pixclock = m->pixclock;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
521 v->left_margin = m->left;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
522 v->right_margin = m->right;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
523 v->upper_margin = m->upper;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
524 v->lower_margin = m->lower;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
525 v->hsync_len = m->hslen;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
526 v->vsync_len = m->vslen;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
527 v->sync = m->sync;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
528 v->vmode = m->vmode;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
529 }
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
530
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
531
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
532 /******************************
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
533 * vo_fbdev *
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
534 ******************************/
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
535
658
ae02d4734ad6 some cleanups
szabii
parents: 633
diff changeset
536 /* command line/config file options */
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
537 char *fb_dev_name = NULL;
10618
7901f7d6e0eb 4x10l fix. Vars used by the config layer must be malloc'd (strdup) as they will be freed at exit.
alex
parents: 10578
diff changeset
538 char *fb_mode_cfgfile = NULL;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
539 char *fb_mode_name = NULL;
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
540
658
ae02d4734ad6 some cleanups
szabii
parents: 633
diff changeset
541 static fb_mode_t *fb_mode = NULL;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
542
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
543 /* vt related variables */
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
544 static FILE *vt_fp = NULL;
1087
e2e9a82f9134 nothing important
szabii
parents: 1076
diff changeset
545 static int vt_doit = 1;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
546
658
ae02d4734ad6 some cleanups
szabii
parents: 633
diff changeset
547 /* vo_fbdev related variables */
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
548 static int fb_dev_fd;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
549 static int fb_tty_fd = -1;
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
550 static size_t fb_size;
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
551 static uint8_t *frame_buffer;
10426
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
552 static uint8_t *center; /* thx .so :) */
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
553 static struct fb_fix_screeninfo fb_finfo;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
554 static struct fb_var_screeninfo fb_orig_vinfo;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
555 static struct fb_var_screeninfo fb_vinfo;
17637
479b64764d9e Fix colormap save/restore for directcolor fb devices
pacman
parents: 16171
diff changeset
556 static unsigned short fb_ored[256], fb_ogreen[256], fb_oblue[256];
479b64764d9e Fix colormap save/restore for directcolor fb devices
pacman
parents: 16171
diff changeset
557 static struct fb_cmap fb_oldcmap = { 0, 256, fb_ored, fb_ogreen, fb_oblue };
481
6e8a887c99cd cmap bug fixed (I think)
szabii
parents: 479
diff changeset
558 static int fb_cmap_changed = 0;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
559 static int fb_pixel_size; // 32: 4 24: 3 16: 2 15: 2
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
560 static int fb_bpp; // 32: 32 24: 24 16: 16 15: 15
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
561 static int fb_bpp_we_want; // 32: 32 24: 24 16: 16 15: 15
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
562 static int fb_line_len;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
563 static int fb_xres;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
564 static int fb_yres;
658
ae02d4734ad6 some cleanups
szabii
parents: 633
diff changeset
565 static void (*draw_alpha_p)(int w, int h, unsigned char *src,
ae02d4734ad6 some cleanups
szabii
parents: 633
diff changeset
566 unsigned char *srca, int stride, unsigned char *dst,
ae02d4734ad6 some cleanups
szabii
parents: 633
diff changeset
567 int dstride);
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
568
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
569 static int in_width;
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
570 static int in_height;
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
571 static int out_width;
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
572 static int out_height;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
573 static int first_row;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
574 static int last_row;
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
575 static uint32_t pixel_format;
804
c3fad5e1698e flip support if (screen depth == frame depth)
szabii
parents: 663
diff changeset
576 static int fs;
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
577
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
578 /*
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
579 * Note: this function is completely cut'n'pasted from
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
580 * Chris Lawrence's code.
311
15a5f7635538 codecs.conf support
szabii
parents: 306
diff changeset
581 * (modified a bit to fit in my code...)
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
582 */
10426
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
583 static struct fb_cmap *make_directcolor_cmap(struct fb_var_screeninfo *var)
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
584 {
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
585 /* Hopefully any DIRECTCOLOR device will have a big enough palette
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
586 * to handle mapping the full color depth.
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
587 * e.g. 8 bpp -> 256 entry palette
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
588 *
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
589 * We could handle some sort of gamma here
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
590 */
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
591 int i, cols, rcols, gcols, bcols;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
592 uint16_t *red, *green, *blue;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
593 struct fb_cmap *cmap;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
594
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
595 rcols = 1 << var->red.length;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
596 gcols = 1 << var->green.length;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
597 bcols = 1 << var->blue.length;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
598
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
599 /* Make our palette the length of the deepest color */
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
600 cols = (rcols > gcols ? rcols : gcols);
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
601 cols = (cols > bcols ? cols : bcols);
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
602
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
603 red = malloc(cols * sizeof(red[0]));
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
604 if(!red) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
605 mp_msg(MSGT_VO, MSGL_V, "Can't allocate red palette with %d entries.\n", cols);
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
606 return NULL;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
607 }
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
608 for(i=0; i< rcols; i++)
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
609 red[i] = (65535/(rcols-1)) * i;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
610
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
611 green = malloc(cols * sizeof(green[0]));
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
612 if(!green) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
613 mp_msg(MSGT_VO, MSGL_V, "Can't allocate green palette with %d entries.\n", cols);
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
614 free(red);
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
615 return NULL;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
616 }
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
617 for(i=0; i< gcols; i++)
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
618 green[i] = (65535/(gcols-1)) * i;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
619
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
620 blue = malloc(cols * sizeof(blue[0]));
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
621 if(!blue) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
622 mp_msg(MSGT_VO, MSGL_V, "Can't allocate blue palette with %d entries.\n", cols);
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
623 free(red);
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
624 free(green);
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
625 return NULL;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
626 }
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
627 for(i=0; i< bcols; i++)
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
628 blue[i] = (65535/(bcols-1)) * i;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
629
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
630 cmap = malloc(sizeof(struct fb_cmap));
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
631 if(!cmap) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
632 mp_msg(MSGT_VO, MSGL_V, "Can't allocate color map\n");
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
633 free(red);
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
634 free(green);
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
635 free(blue);
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
636 return NULL;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
637 }
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
638 cmap->start = 0;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
639 cmap->transp = 0;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
640 cmap->len = cols;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
641 cmap->red = red;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
642 cmap->blue = blue;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
643 cmap->green = green;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
644 cmap->transp = NULL;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
645
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
646 return cmap;
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
647 }
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
648
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
649
10426
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
650 static int fb_preinit(int reset)
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
651 {
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
652 static int fb_preinit_done = 0;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
653 static int fb_works = 0;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
654
10426
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
655 if (reset)
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
656 {
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
657 fb_preinit_done = 0;
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
658 return 0;
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
659 }
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
660
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
661 if (fb_preinit_done)
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
662 return fb_works;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
663
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
664 if (!fb_dev_name && !(fb_dev_name = getenv("FRAMEBUFFER")))
10618
7901f7d6e0eb 4x10l fix. Vars used by the config layer must be malloc'd (strdup) as they will be freed at exit.
alex
parents: 10578
diff changeset
665 fb_dev_name = strdup("/dev/fb0");
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
666 mp_msg(MSGT_VO, MSGL_V, "using %s\n", fb_dev_name);
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
667
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
668 if ((fb_dev_fd = open(fb_dev_name, O_RDWR)) == -1) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
669 mp_msg(MSGT_VO, MSGL_ERR, "Can't open %s: %s\n", fb_dev_name, strerror(errno));
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
670 goto err_out;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
671 }
e847396dc49f some changes...
szabii
parents: 383
diff changeset
672 if (ioctl(fb_dev_fd, FBIOGET_VSCREENINFO, &fb_vinfo)) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
673 mp_msg(MSGT_VO, MSGL_ERR, "Can't get VSCREENINFO: %s\n", strerror(errno));
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
674 goto err_out_fd;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
675 }
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
676 fb_orig_vinfo = fb_vinfo;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
677
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
678 if ((fb_tty_fd = open("/dev/tty", O_RDWR)) < 0) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
679 mp_msg(MSGT_VO, MSGL_ERR, "notice: Can't open /dev/tty: %s\n", strerror(errno));
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
680 }
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
681
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
682 fb_bpp = fb_vinfo.red.length + fb_vinfo.green.length +
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
683 fb_vinfo.blue.length + fb_vinfo.transp.length;
663
121cb2047c08 nothing important
szabii
parents: 659
diff changeset
684
1076
52bbb0e913d8 8bpp fix
szabii
parents: 977
diff changeset
685 if (fb_bpp == 8 && !vo_dbpp) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
686 mp_msg(MSGT_VO, MSGL_ERR, "8 bpp output is not supported.\n");
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
687 goto err_out_tty_fd;
1076
52bbb0e913d8 8bpp fix
szabii
parents: 977
diff changeset
688 }
52bbb0e913d8 8bpp fix
szabii
parents: 977
diff changeset
689
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
690 if (vo_dbpp) {
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
691 if (vo_dbpp != 15 && vo_dbpp != 16 && vo_dbpp != 24 &&
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
692 vo_dbpp != 32) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
693 mp_msg(MSGT_VO, MSGL_ERR, "can't switch to %d bpp\n", vo_dbpp);
1076
52bbb0e913d8 8bpp fix
szabii
parents: 977
diff changeset
694 goto err_out_fd;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
695 }
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
696 fb_bpp = vo_dbpp;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
697 }
10618
7901f7d6e0eb 4x10l fix. Vars used by the config layer must be malloc'd (strdup) as they will be freed at exit.
alex
parents: 10578
diff changeset
698
7901f7d6e0eb 4x10l fix. Vars used by the config layer must be malloc'd (strdup) as they will be freed at exit.
alex
parents: 10578
diff changeset
699 if (!fb_mode_cfgfile)
7901f7d6e0eb 4x10l fix. Vars used by the config layer must be malloc'd (strdup) as they will be freed at exit.
alex
parents: 10578
diff changeset
700 fb_mode_cfgfile = strdup("/etc/fb.modes");
245
cb4c682746c0 disabled scrollback buffer (virtual fb size set to real screen size)
szabii
parents: 231
diff changeset
701
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
702 fb_preinit_done = 1;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
703 fb_works = 1;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
704 return 1;
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
705 err_out_tty_fd:
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
706 close(fb_tty_fd);
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
707 fb_tty_fd = -1;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
708 err_out_fd:
e847396dc49f some changes...
szabii
parents: 383
diff changeset
709 close(fb_dev_fd);
e847396dc49f some changes...
szabii
parents: 383
diff changeset
710 fb_dev_fd = -1;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
711 err_out:
e847396dc49f some changes...
szabii
parents: 383
diff changeset
712 fb_preinit_done = 1;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
713 fb_works = 0;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
714 return 0;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
715 }
245
cb4c682746c0 disabled scrollback buffer (virtual fb size set to real screen size)
szabii
parents: 231
diff changeset
716
633
bdaa6d334d01 some cleanup
szabii
parents: 618
diff changeset
717 static void lots_of_printf(void)
bdaa6d334d01 some cleanup
szabii
parents: 618
diff changeset
718 {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
719 mp_msg(MSGT_VO, MSGL_V, "var info:\n");
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
720 mp_msg(MSGT_VO, MSGL_V, "xres: %u\n", fb_vinfo.xres);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
721 mp_msg(MSGT_VO, MSGL_V, "yres: %u\n", fb_vinfo.yres);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
722 mp_msg(MSGT_VO, MSGL_V, "xres_virtual: %u\n", fb_vinfo.xres_virtual);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
723 mp_msg(MSGT_VO, MSGL_V, "yres_virtual: %u\n", fb_vinfo.yres_virtual);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
724 mp_msg(MSGT_VO, MSGL_V, "xoffset: %u\n", fb_vinfo.xoffset);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
725 mp_msg(MSGT_VO, MSGL_V, "yoffset: %u\n", fb_vinfo.yoffset);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
726 mp_msg(MSGT_VO, MSGL_V, "bits_per_pixel: %u\n", fb_vinfo.bits_per_pixel);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
727 mp_msg(MSGT_VO, MSGL_V, "grayscale: %u\n", fb_vinfo.grayscale);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
728 mp_msg(MSGT_VO, MSGL_V, "red: %lu %lu %lu\n",
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
729 (unsigned long) fb_vinfo.red.offset,
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
730 (unsigned long) fb_vinfo.red.length,
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
731 (unsigned long) fb_vinfo.red.msb_right);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
732 mp_msg(MSGT_VO, MSGL_V, "green: %lu %lu %lu\n",
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
733 (unsigned long) fb_vinfo.green.offset,
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
734 (unsigned long) fb_vinfo.green.length,
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
735 (unsigned long) fb_vinfo.green.msb_right);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
736 mp_msg(MSGT_VO, MSGL_V, "blue: %lu %lu %lu\n",
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
737 (unsigned long) fb_vinfo.blue.offset,
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
738 (unsigned long) fb_vinfo.blue.length,
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
739 (unsigned long) fb_vinfo.blue.msb_right);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
740 mp_msg(MSGT_VO, MSGL_V, "transp: %lu %lu %lu\n",
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
741 (unsigned long) fb_vinfo.transp.offset,
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
742 (unsigned long) fb_vinfo.transp.length,
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
743 (unsigned long) fb_vinfo.transp.msb_right);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
744 mp_msg(MSGT_VO, MSGL_V, "nonstd: %u\n", fb_vinfo.nonstd);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
745 mp_msg(MSGT_VO, MSGL_DBG2, "activate: %u\n", fb_vinfo.activate);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
746 mp_msg(MSGT_VO, MSGL_DBG2, "height: %u\n", fb_vinfo.height);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
747 mp_msg(MSGT_VO, MSGL_DBG2, "width: %u\n", fb_vinfo.width);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
748 mp_msg(MSGT_VO, MSGL_DBG2, "accel_flags: %u\n", fb_vinfo.accel_flags);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
749 mp_msg(MSGT_VO, MSGL_DBG2, "timing:\n");
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
750 mp_msg(MSGT_VO, MSGL_DBG2, "pixclock: %u\n", fb_vinfo.pixclock);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
751 mp_msg(MSGT_VO, MSGL_DBG2, "left_margin: %u\n", fb_vinfo.left_margin);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
752 mp_msg(MSGT_VO, MSGL_DBG2, "right_margin: %u\n", fb_vinfo.right_margin);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
753 mp_msg(MSGT_VO, MSGL_DBG2, "upper_margin: %u\n", fb_vinfo.upper_margin);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
754 mp_msg(MSGT_VO, MSGL_DBG2, "lower_margin: %u\n", fb_vinfo.lower_margin);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
755 mp_msg(MSGT_VO, MSGL_DBG2, "hsync_len: %u\n", fb_vinfo.hsync_len);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
756 mp_msg(MSGT_VO, MSGL_DBG2, "vsync_len: %u\n", fb_vinfo.vsync_len);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
757 mp_msg(MSGT_VO, MSGL_DBG2, "sync: %u\n", fb_vinfo.sync);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
758 mp_msg(MSGT_VO, MSGL_DBG2, "vmode: %u\n", fb_vinfo.vmode);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
759 mp_msg(MSGT_VO, MSGL_V, "fix info:\n");
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
760 mp_msg(MSGT_VO, MSGL_V, "framebuffer size: %d bytes\n", fb_finfo.smem_len);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
761 mp_msg(MSGT_VO, MSGL_V, "type: %lu\n", (unsigned long) fb_finfo.type);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
762 mp_msg(MSGT_VO, MSGL_V, "type_aux: %lu\n", (unsigned long) fb_finfo.type_aux);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
763 mp_msg(MSGT_VO, MSGL_V, "visual: %lu\n", (unsigned long) fb_finfo.visual);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
764 mp_msg(MSGT_VO, MSGL_V, "line_length: %lu bytes\n", (unsigned long) fb_finfo.line_length);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
765 mp_msg(MSGT_VO, MSGL_DBG2, "id: %.16s\n", fb_finfo.id);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
766 mp_msg(MSGT_VO, MSGL_DBG2, "smem_start: %p\n", (void *) fb_finfo.smem_start);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
767 mp_msg(MSGT_VO, MSGL_DBG2, "xpanstep: %u\n", fb_finfo.xpanstep);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
768 mp_msg(MSGT_VO, MSGL_DBG2, "ypanstep: %u\n", fb_finfo.ypanstep);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
769 mp_msg(MSGT_VO, MSGL_DBG2, "ywrapstep: %u\n", fb_finfo.ywrapstep);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
770 mp_msg(MSGT_VO, MSGL_DBG2, "mmio_start: %p\n", (void *) fb_finfo.mmio_start);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
771 mp_msg(MSGT_VO, MSGL_DBG2, "mmio_len: %u bytes\n", fb_finfo.mmio_len);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
772 mp_msg(MSGT_VO, MSGL_DBG2, "accel: %u\n", fb_finfo.accel);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
773 mp_msg(MSGT_VO, MSGL_V, "fb_bpp: %d\n", fb_bpp);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
774 mp_msg(MSGT_VO, MSGL_V, "fb_pixel_size: %d bytes\n", fb_pixel_size);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
775 mp_msg(MSGT_VO, MSGL_V, "other:\n");
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
776 mp_msg(MSGT_VO, MSGL_V, "in_width: %d\n", in_width);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
777 mp_msg(MSGT_VO, MSGL_V, "in_height: %d\n", in_height);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
778 mp_msg(MSGT_VO, MSGL_V, "out_width: %d\n", out_width);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
779 mp_msg(MSGT_VO, MSGL_V, "out_height: %d\n", out_height);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
780 mp_msg(MSGT_VO, MSGL_V, "first_row: %d\n", first_row);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
781 mp_msg(MSGT_VO, MSGL_V, "last_row: %d\n", last_row);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
782 mp_msg(MSGT_VO, MSGL_DBG2, "draw_alpha_p:%dbpp = %p\n", fb_bpp, draw_alpha_p);
633
bdaa6d334d01 some cleanup
szabii
parents: 618
diff changeset
783 }
658
ae02d4734ad6 some cleanups
szabii
parents: 633
diff changeset
784
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
785 static void vt_set_textarea(int u, int l)
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
786 {
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
787 /* how can I determine the font height?
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
788 * just use 16 for now
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
789 */
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
790 int urow = ((u + 15) / 16) + 1;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
791 int lrow = l / 16;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
792
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
793 mp_msg(MSGT_VO, MSGL_DBG2, "vt_set_textarea(%d,%d): %d,%d\n", u, l, urow, lrow);
7980
albeu
parents: 7875
diff changeset
794 if(vt_fp) {
albeu
parents: 7875
diff changeset
795 fprintf(vt_fp, "\33[%d;%dr\33[%d;%dH", urow, lrow, lrow, 0);
albeu
parents: 7875
diff changeset
796 fflush(vt_fp);
albeu
parents: 7875
diff changeset
797 }
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
798 }
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
799
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
800 static int config(uint32_t width, uint32_t height, uint32_t d_width,
6851
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
801 uint32_t d_height, uint32_t flags, char *title,
7124
eca7dbad0166 finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents: 7069
diff changeset
802 uint32_t format)
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
803 {
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
804 struct fb_cmap *cmap;
15212
05aa13cdf92f replace VO and VF numeric flags with #defined identifiers
henry
parents: 14094
diff changeset
805 int vm = flags & VOFLAG_MODESWITCHING;
05aa13cdf92f replace VO and VF numeric flags with #defined identifiers
henry
parents: 14094
diff changeset
806 int zoom = flags & VOFLAG_SWSCALE;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
807 int vt_fd;
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
808
15212
05aa13cdf92f replace VO and VF numeric flags with #defined identifiers
henry
parents: 14094
diff changeset
809 fs = flags & VOFLAG_FULLSCREEN;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
810
6164
aee9c32349a9 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 4756
diff changeset
811 if(pre_init_err == -2)
4380
ae5e4cc0e52d Use real preinit
nick
parents: 4352
diff changeset
812 {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
813 mp_msg(MSGT_VO, MSGL_ERR, "Internal fatal error: config() was called before preinit()\n");
4380
ae5e4cc0e52d Use real preinit
nick
parents: 4352
diff changeset
814 return -1;
ae5e4cc0e52d Use real preinit
nick
parents: 4352
diff changeset
815 }
ae5e4cc0e52d Use real preinit
nick
parents: 4352
diff changeset
816
ae5e4cc0e52d Use real preinit
nick
parents: 4352
diff changeset
817 if (pre_init_err) return 1;
245
cb4c682746c0 disabled scrollback buffer (virtual fb size set to real screen size)
szabii
parents: 231
diff changeset
818
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
819 if (fb_mode_name && !vm) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
820 mp_msg(MSGT_VO, MSGL_ERR, "-fbmode can only be used with -vm\n");
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
821 return 1;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
822 }
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
823 if (vm && (parse_fbmode_cfg(fb_mode_cfgfile) < 0))
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
824 return 1;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
825 if (d_width && (fs || vm)) {
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
826 out_width = d_width;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
827 out_height = d_height;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
828 } else {
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
829 out_width = width;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
830 out_height = height;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
831 }
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
832 in_width = width;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
833 in_height = height;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
834 pixel_format = format;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
835
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
836 if (fb_mode_name) {
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
837 if (!(fb_mode = find_mode_by_name(fb_mode_name))) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
838 mp_msg(MSGT_VO, MSGL_ERR, "can't find requested video mode\n");
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
839 return 1;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
840 }
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
841 fb_mode2fb_vinfo(fb_mode, &fb_vinfo);
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
842 } else if (vm) {
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
843 monitor_hfreq = str2range(monitor_hfreq_str);
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
844 monitor_vfreq = str2range(monitor_vfreq_str);
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
845 monitor_dotclock = str2range(monitor_dotclock_str);
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
846 if (!monitor_hfreq || !monitor_vfreq || !monitor_dotclock) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
847 mp_msg(MSGT_VO, MSGL_ERR, "you have to specify the capabilities of"
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
848 " the monitor.\n");
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
849 return 1;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
850 }
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
851 if (!(fb_mode = find_best_mode(out_width, out_height,
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
852 monitor_hfreq, monitor_vfreq,
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
853 monitor_dotclock))) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
854 mp_msg(MSGT_VO, MSGL_ERR, "can't find best video mode\n");
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
855 return 1;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
856 }
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
857 mp_msg(MSGT_VO, MSGL_V, "using mode %dx%d @ %.1fHz\n", fb_mode->xres,
519
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
858 fb_mode->yres, vsf(fb_mode));
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
859 fb_mode2fb_vinfo(fb_mode, &fb_vinfo);
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
860 }
418
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
861 fb_bpp_we_want = fb_bpp;
d75c826a8ab9 lots of changes
szabii
parents: 393
diff changeset
862 set_bpp(&fb_vinfo, fb_bpp);
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
863 fb_vinfo.xres_virtual = fb_vinfo.xres;
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
864 fb_vinfo.yres_virtual = fb_vinfo.yres;
245
cb4c682746c0 disabled scrollback buffer (virtual fb size set to real screen size)
szabii
parents: 231
diff changeset
865
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
866 if (fb_tty_fd >= 0 && ioctl(fb_tty_fd, KDSETMODE, KD_GRAPHICS) < 0) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
867 mp_msg(MSGT_VO, MSGL_V, "Can't set graphics mode: %s\n", strerror(errno));
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
868 close(fb_tty_fd);
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
869 fb_tty_fd = -1;
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
870 }
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
871
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
872 if (ioctl(fb_dev_fd, FBIOPUT_VSCREENINFO, &fb_vinfo)) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
873 mp_msg(MSGT_VO, MSGL_ERR, "Can't put VSCREENINFO: %s\n", strerror(errno));
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
874 if (fb_tty_fd >= 0 && ioctl(fb_tty_fd, KDSETMODE, KD_TEXT) < 0) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
875 mp_msg(MSGT_VO, MSGL_ERR, "Can't restore text mode: %s\n", strerror(errno));
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
876 }
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
877 return 1;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
878 }
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
879
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
880 fb_pixel_size = fb_vinfo.bits_per_pixel / 8;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
881 fb_bpp = fb_vinfo.red.length + fb_vinfo.green.length +
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
882 fb_vinfo.blue.length + fb_vinfo.transp.length;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
883 if (fb_bpp_we_want != fb_bpp)
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
884 mp_msg(MSGT_VO, MSGL_WARN, "requested %d bpp, got %d bpp!!!\n",
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
885 fb_bpp_we_want, fb_bpp);
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
886
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
887 switch (fb_bpp) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
888 case 32: draw_alpha_p = vo_draw_alpha_rgb32; break;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
889 case 24: draw_alpha_p = vo_draw_alpha_rgb24; break;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
890 case 16: draw_alpha_p = vo_draw_alpha_rgb16; break;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
891 case 15: draw_alpha_p = vo_draw_alpha_rgb15; break;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
892 default: return 1;
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
893 }
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
894
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
895 fb_xres = fb_vinfo.xres;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
896 fb_yres = fb_vinfo.yres;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
897
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
898 if (vm || fs) {
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
899 out_width = fb_xres;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
900 out_height = fb_yres;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
901 }
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
902 if (out_width < in_width || out_height < in_height) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
903 mp_msg(MSGT_VO, MSGL_ERR, "screensize is smaller than video size\n");
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
904 return 1;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
905 }
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
906
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
907 first_row = (out_height - in_height) / 2;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
908 last_row = (out_height + in_height) / 2;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
909
618
b105a9f2bbe7 some cleanup
szabii
parents: 616
diff changeset
910 if (ioctl(fb_dev_fd, FBIOGET_FSCREENINFO, &fb_finfo)) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
911 mp_msg(MSGT_VO, MSGL_ERR, "Can't get FSCREENINFO: %s\n", strerror(errno));
618
b105a9f2bbe7 some cleanup
szabii
parents: 616
diff changeset
912 return 1;
b105a9f2bbe7 some cleanup
szabii
parents: 616
diff changeset
913 }
633
bdaa6d334d01 some cleanup
szabii
parents: 618
diff changeset
914
bdaa6d334d01 some cleanup
szabii
parents: 618
diff changeset
915 lots_of_printf();
245
cb4c682746c0 disabled scrollback buffer (virtual fb size set to real screen size)
szabii
parents: 231
diff changeset
916
633
bdaa6d334d01 some cleanup
szabii
parents: 618
diff changeset
917 if (fb_finfo.type != FB_TYPE_PACKED_PIXELS) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
918 mp_msg(MSGT_VO, MSGL_ERR, "type %d not supported\n", fb_finfo.type);
633
bdaa6d334d01 some cleanup
szabii
parents: 618
diff changeset
919 return 1;
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
920 }
618
b105a9f2bbe7 some cleanup
szabii
parents: 616
diff changeset
921
379
368f16e72583 cleanup
szabii
parents: 365
diff changeset
922 switch (fb_finfo.visual) {
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
923 case FB_VISUAL_TRUECOLOR:
e847396dc49f some changes...
szabii
parents: 383
diff changeset
924 break;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
925 case FB_VISUAL_DIRECTCOLOR:
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
926 mp_msg(MSGT_VO, MSGL_V, "creating cmap for directcolor\n");
481
6e8a887c99cd cmap bug fixed (I think)
szabii
parents: 479
diff changeset
927 if (ioctl(fb_dev_fd, FBIOGETCMAP, &fb_oldcmap)) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
928 mp_msg(MSGT_VO, MSGL_ERR, "can't get cmap: %s\n",
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
929 strerror(errno));
e847396dc49f some changes...
szabii
parents: 383
diff changeset
930 return 1;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
931 }
e847396dc49f some changes...
szabii
parents: 383
diff changeset
932 if (!(cmap = make_directcolor_cmap(&fb_vinfo)))
e847396dc49f some changes...
szabii
parents: 383
diff changeset
933 return 1;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
934 if (ioctl(fb_dev_fd, FBIOPUTCMAP, cmap)) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
935 mp_msg(MSGT_VO, MSGL_ERR, "can't put cmap: %s\n",
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
936 strerror(errno));
e847396dc49f some changes...
szabii
parents: 383
diff changeset
937 return 1;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
938 }
481
6e8a887c99cd cmap bug fixed (I think)
szabii
parents: 479
diff changeset
939 fb_cmap_changed = 1;
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
940 free(cmap->red);
e847396dc49f some changes...
szabii
parents: 383
diff changeset
941 free(cmap->green);
e847396dc49f some changes...
szabii
parents: 383
diff changeset
942 free(cmap->blue);
e847396dc49f some changes...
szabii
parents: 383
diff changeset
943 free(cmap);
e847396dc49f some changes...
szabii
parents: 383
diff changeset
944 break;
e847396dc49f some changes...
szabii
parents: 383
diff changeset
945 default:
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
946 mp_msg(MSGT_VO, MSGL_ERR, "visual: %d not yet supported\n",
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
947 fb_finfo.visual);
e847396dc49f some changes...
szabii
parents: 383
diff changeset
948 return 1;
245
cb4c682746c0 disabled scrollback buffer (virtual fb size set to real screen size)
szabii
parents: 231
diff changeset
949 }
618
b105a9f2bbe7 some cleanup
szabii
parents: 616
diff changeset
950
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
951 fb_line_len = fb_finfo.line_length;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
952 fb_size = fb_finfo.smem_len;
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
953 frame_buffer = NULL;
4089
e1c6178de089 Configurable VIDIX usage
nick
parents: 4084
diff changeset
954 #ifdef CONFIG_VIDIX
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
955 if(vidix_name)
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
956 {
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
957 unsigned image_width,image_height,x_offset,y_offset;
6851
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
958 if(zoom || fs){
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
959 aspect_save_orig(width,height);
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
960 aspect_save_prescale(d_width,d_height);
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
961 aspect_save_screenres(fb_xres,fb_yres);
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
962 aspect(&image_width,&image_height,fs ? A_ZOOM : A_NOZOOM);
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
963 } else {
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
964 image_width=width;
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
965 image_height=height;
6851
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
966 }
8918
3168cfe4f7d1 -geometry fix (untested!)
arpi
parents: 8745
diff changeset
967
3168cfe4f7d1 -geometry fix (untested!)
arpi
parents: 8745
diff changeset
968 if(fb_xres > image_width)
3168cfe4f7d1 -geometry fix (untested!)
arpi
parents: 8745
diff changeset
969 x_offset = (fb_xres - image_width) / 2;
3168cfe4f7d1 -geometry fix (untested!)
arpi
parents: 8745
diff changeset
970 else x_offset = 0;
3168cfe4f7d1 -geometry fix (untested!)
arpi
parents: 8745
diff changeset
971 if(fb_yres > image_height)
3168cfe4f7d1 -geometry fix (untested!)
arpi
parents: 8745
diff changeset
972 y_offset = (fb_yres - image_height) / 2;
3168cfe4f7d1 -geometry fix (untested!)
arpi
parents: 8745
diff changeset
973 else y_offset = 0;
9517
d65ddafbc404 clean up of -geometry code.
attila
parents: 8918
diff changeset
974
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
975 if(vidix_init(width,height,x_offset,y_offset,image_width,
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
976 image_height,format,fb_bpp,
7124
eca7dbad0166 finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents: 7069
diff changeset
977 fb_xres,fb_yres) != 0)
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
978 {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
979 mp_msg(MSGT_VO, MSGL_ERR, "Can't initialize VIDIX driver\n");
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
980 vidix_name = NULL;
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
981 vidix_term();
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
982 return -1;
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
983 }
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
984 else mp_msg(MSGT_VO, MSGL_V, "Using VIDIX\n");
4198
7e2bf04c9a7c added vidix_start() and vidix_stop() for better runtime-resize support ;)
alex
parents: 4089
diff changeset
985 vidix_start();
11158
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
986 if (vidix_grkey_support())
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
987 {
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
988 vidix_grkey_get(&gr_key);
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
989 gr_key.key_op = KEYS_PUT;
11216
30eccb0d1a64 fixed -nocolorkey
alex
parents: 11158
diff changeset
990 if (!(vo_colorkey & 0xff000000))
11158
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
991 {
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
992 gr_key.ckey.op = CKEY_TRUE;
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
993 gr_key.ckey.red = (vo_colorkey & 0x00ff0000) >> 16;
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
994 gr_key.ckey.green = (vo_colorkey & 0x0000ff00) >> 8;
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
995 gr_key.ckey.blue = vo_colorkey & 0x000000ff;
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
996 }
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
997 else
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
998 gr_key.ckey.op = CKEY_FALSE;
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
999 vidix_grkey_set(&gr_key);
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11055
diff changeset
1000 }
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1001 }
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1002 else
4089
e1c6178de089 Configurable VIDIX usage
nick
parents: 4084
diff changeset
1003 #endif
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1004 {
8918
3168cfe4f7d1 -geometry fix (untested!)
arpi
parents: 8745
diff changeset
1005 int x_offset=0,y_offset=0;
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1006 if ((frame_buffer = (uint8_t *) mmap(0, fb_size, PROT_READ | PROT_WRITE,
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1007 MAP_SHARED, fb_dev_fd, 0)) == (uint8_t *) -1) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1008 mp_msg(MSGT_VO, MSGL_ERR, "Can't mmap %s: %s\n", fb_dev_name, strerror(errno));
393
e847396dc49f some changes...
szabii
parents: 383
diff changeset
1009 return 1;
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1010 }
7866
732a8bfc7681 Added the -geometry option (supports fbdev and tdfxfb drivers)
mark
parents: 7863
diff changeset
1011
17728
fe2520f6039e When centering a video with odd width, be sure to start on a pixel boundary.
pacman
parents: 17637
diff changeset
1012 center = frame_buffer +
fe2520f6039e When centering a video with odd width, be sure to start on a pixel boundary.
pacman
parents: 17637
diff changeset
1013 ( (out_width - in_width) / 2 ) * fb_pixel_size +
fe2520f6039e When centering a video with odd width, be sure to start on a pixel boundary.
pacman
parents: 17637
diff changeset
1014 ( (out_height - in_height) / 2 ) * fb_line_len +
7866
732a8bfc7681 Added the -geometry option (supports fbdev and tdfxfb drivers)
mark
parents: 7863
diff changeset
1015 x_offset * fb_pixel_size + y_offset * fb_line_len;
229
a8170ba5496f maybe it can play avi :)
szabii
parents: 225
diff changeset
1016
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1017 mp_msg(MSGT_VO, MSGL_DBG2, "frame_buffer @ %p\n", frame_buffer);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1018 mp_msg(MSGT_VO, MSGL_DBG2, "center @ %p\n", center);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1019 mp_msg(MSGT_VO, MSGL_V, "pixel per line: %d\n", fb_line_len / fb_pixel_size);
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1020
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1021 if (fs || vm)
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1022 memset(frame_buffer, '\0', fb_line_len * fb_yres);
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1023 }
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1024 if (vt_doit && (vt_fd = open("/dev/tty", O_WRONLY)) == -1) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1025 mp_msg(MSGT_VO, MSGL_ERR, "can't open /dev/tty: %s\n", strerror(errno));
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1026 vt_doit = 0;
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1027 }
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1028 if (vt_doit && !(vt_fp = fdopen(vt_fd, "w"))) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1029 mp_msg(MSGT_VO, MSGL_ERR, "can't fdopen /dev/tty: %s\n", strerror(errno));
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1030 vt_doit = 0;
804
c3fad5e1698e flip support if (screen depth == frame depth)
szabii
parents: 663
diff changeset
1031 }
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1032
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1033 if (vt_doit)
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1034 vt_set_textarea(last_row, fb_yres);
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1035
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1036 return 0;
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1037 }
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1038
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
1039 static int query_format(uint32_t format)
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1040 {
10426
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
1041 if (!fb_preinit(0))
305
6c3a6322f81c directcolor support?
szabii
parents: 278
diff changeset
1042 return 0;
6851
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
1043 #ifdef CONFIG_VIDIX
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
1044 if(vidix_name)
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
1045 return (vidix_query_fourcc(format));
cdcaebfd6e98 - fixed size/aspect for -fs
arpi
parents: 6212
diff changeset
1046 #endif
311
15a5f7635538 codecs.conf support
szabii
parents: 306
diff changeset
1047 if ((format & IMGFMT_BGR_MASK) == IMGFMT_BGR) {
15a5f7635538 codecs.conf support
szabii
parents: 306
diff changeset
1048 int bpp = format & 0xff;
519
5e8d5422854d changed query_format return; lots of fixes/changes
szabii
parents: 503
diff changeset
1049
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
1050 if (bpp == fb_bpp)
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1051 return VFCAP_ACCEPT_STRIDE | VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW;
311
15a5f7635538 codecs.conf support
szabii
parents: 306
diff changeset
1052 }
15a5f7635538 codecs.conf support
szabii
parents: 306
diff changeset
1053 return 0;
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1054 }
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1055
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1056 static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src,
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1057 unsigned char *srca, int stride)
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1058 {
4210
d43f0e4ac781 fbdev nocopy option - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents: 4198
diff changeset
1059 unsigned char *dst;
d43f0e4ac781 fbdev nocopy option - Jeroen Dobbelaere <jeroen.dobbelaere@acunia.com>
arpi
parents: 4198
diff changeset
1060
17901
51571591d56f Don't multiply fb_line_len by fb_pixel_size. Fixes too-low placement of OSD
pacman
parents: 17900
diff changeset
1061 dst = center + fb_line_len * y0 + fb_pixel_size * x0;
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
1062
10578
b9d289fd8a57 10000l, the old code was slow as hell, copying stuff extra times and
rfelker
parents: 10576
diff changeset
1063 (*draw_alpha_p)(w, h, src, srca, stride, dst, fb_line_len);
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1064 }
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1065
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
1066 static int draw_frame(uint8_t *src[]) { return 1; }
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1067
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
1068 static int draw_slice(uint8_t *src[], int stride[], int w, int h, int x,
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1069 int y)
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1070 {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1071 uint8_t *d;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1072 uint8_t *s;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1073
17901
51571591d56f Don't multiply fb_line_len by fb_pixel_size. Fixes too-low placement of OSD
pacman
parents: 17900
diff changeset
1074 d = center + fb_line_len * y + fb_pixel_size * x;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1075
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1076 s = src[0];
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1077 while (h) {
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1078 memcpy(d, s, w * fb_pixel_size);
10578
b9d289fd8a57 10000l, the old code was slow as hell, copying stuff extra times and
rfelker
parents: 10576
diff changeset
1079 d += fb_line_len;
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1080 s += stride[0];
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1081 h--;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1082 }
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1083
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1084 return 0;
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1085 }
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1086
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1087 static void check_events(void)
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1088 {
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1089 }
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1090
246
5673f9146c54 clear the frame on uninit
szabii
parents: 245
diff changeset
1091 static void flip_page(void)
5673f9146c54 clear the frame on uninit
szabii
parents: 245
diff changeset
1092 {
5673f9146c54 clear the frame on uninit
szabii
parents: 245
diff changeset
1093 }
5673f9146c54 clear the frame on uninit
szabii
parents: 245
diff changeset
1094
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1095 static void draw_osd(void)
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1096 {
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1097 vo_draw_text(in_width, in_height, draw_alpha);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1098 }
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1099
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1100 static void uninit(void)
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1101 {
481
6e8a887c99cd cmap bug fixed (I think)
szabii
parents: 479
diff changeset
1102 if (fb_cmap_changed) {
6e8a887c99cd cmap bug fixed (I think)
szabii
parents: 479
diff changeset
1103 if (ioctl(fb_dev_fd, FBIOPUTCMAP, &fb_oldcmap))
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1104 mp_msg(MSGT_VO, MSGL_WARN, "Can't restore original cmap\n");
481
6e8a887c99cd cmap bug fixed (I think)
szabii
parents: 479
diff changeset
1105 fb_cmap_changed = 0;
306
344d115a285d restore old cmap
szabii
parents: 305
diff changeset
1106 }
503
4aa16f9ff929 fbdev reset fixed
szabii
parents: 481
diff changeset
1107 if (ioctl(fb_dev_fd, FBIOGET_VSCREENINFO, &fb_vinfo))
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1108 mp_msg(MSGT_VO, MSGL_WARN, "ioctl FBIOGET_VSCREENINFO: %s\n", strerror(errno));
503
4aa16f9ff929 fbdev reset fixed
szabii
parents: 481
diff changeset
1109 fb_orig_vinfo.xoffset = fb_vinfo.xoffset;
4aa16f9ff929 fbdev reset fixed
szabii
parents: 481
diff changeset
1110 fb_orig_vinfo.yoffset = fb_vinfo.yoffset;
379
368f16e72583 cleanup
szabii
parents: 365
diff changeset
1111 if (ioctl(fb_dev_fd, FBIOPUT_VSCREENINFO, &fb_orig_vinfo))
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1112 mp_msg(MSGT_VO, MSGL_WARN, "Can't reset original fb_var_screeninfo: %s\n", strerror(errno));
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
1113 if (fb_tty_fd >= 0) {
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
1114 if (ioctl(fb_tty_fd, KDSETMODE, KD_TEXT) < 0)
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1115 mp_msg(MSGT_VO, MSGL_WARN, "Can't restore text mode: %s\n", strerror(errno));
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
1116 }
950
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1117 if (vt_doit)
de1e10c4da3c some little cleanup
szabii
parents: 865
diff changeset
1118 vt_set_textarea(0, fb_orig_vinfo.yres);
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
1119 close(fb_tty_fd);
359
db6b78fa7331 video mode change supported
szabii
parents: 354
diff changeset
1120 close(fb_dev_fd);
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1121 if(frame_buffer) munmap(frame_buffer, fb_size);
10578
b9d289fd8a57 10000l, the old code was slow as hell, copying stuff extra times and
rfelker
parents: 10576
diff changeset
1122 frame_buffer = NULL;
4089
e1c6178de089 Configurable VIDIX usage
nick
parents: 4084
diff changeset
1123 #ifdef CONFIG_VIDIX
4084
e7be28567230 VIDIX expansion, Usage: -vo fbdev:vidix (-fs -zoom). Zoom is supported for VIDIX!!!
nick
parents: 2732
diff changeset
1124 if(vidix_name) vidix_term();
4089
e1c6178de089 Configurable VIDIX usage
nick
parents: 4084
diff changeset
1125 #endif
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1126 fb_preinit(1);
225
62ec84961b27 vo_fbdev added
szabii
parents:
diff changeset
1127 }
2354
0e2f4c4e55d4 Applied patch to switch to graphics mode with -fs by achurch@achurch.org (Andrew Church)
atmos4
parents: 1561
diff changeset
1128
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
1129 static int preinit(const char *vo_subdevice)
4352
ed5b85b713a3 Extensions for video accelerated architecture
nick
parents: 4210
diff changeset
1130 {
4380
ae5e4cc0e52d Use real preinit
nick
parents: 4352
diff changeset
1131 pre_init_err = 0;
11055
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1132
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1133 if(vo_subdevice)
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1134 {
4380
ae5e4cc0e52d Use real preinit
nick
parents: 4352
diff changeset
1135 #ifdef CONFIG_VIDIX
11055
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1136 if (memcmp(vo_subdevice, "vidix", 5) == 0)
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1137 vidix_name = &vo_subdevice[5];
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1138 if(vidix_name)
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1139 pre_init_err = vidix_preinit(vidix_name,&video_out_fbdev);
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1140 else
4380
ae5e4cc0e52d Use real preinit
nick
parents: 4352
diff changeset
1141 #endif
11055
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1142 {
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1143 if (fb_dev_name) free(fb_dev_name);
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1144 fb_dev_name = strdup(vo_subdevice);
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1145 }
497104408c30 correct handling of subdevice, -fb device is obsoleted
alex
parents: 11036
diff changeset
1146 }
10426
c3345a8fbc57 removed yv12 support, but left some swscaler support for fast 15 vs 16bpp conversion
alex
parents: 9941
diff changeset
1147 if(!pre_init_err) return (pre_init_err=(fb_preinit(0)?0:-1));
6164
aee9c32349a9 applied 64bit patch from Ulrich Hecht <uli at suse dot de>
alex
parents: 4756
diff changeset
1148 return(-1);
4352
ed5b85b713a3 Extensions for video accelerated architecture
nick
parents: 4210
diff changeset
1149 }
ed5b85b713a3 Extensions for video accelerated architecture
nick
parents: 4210
diff changeset
1150
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1151 static uint32_t get_image(mp_image_t *mpi)
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1152 {
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1153 if (
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1154 !IMGFMT_IS_BGR(mpi->imgfmt) ||
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1155 (IMGFMT_BGR_DEPTH(mpi->imgfmt) != fb_bpp) ||
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1156 ((mpi->type != MP_IMGTYPE_STATIC) && (mpi->type != MP_IMGTYPE_TEMP)) ||
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1157 (mpi->flags & MP_IMGFLAG_PLANAR) ||
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1158 (mpi->flags & MP_IMGFLAG_YUV) ||
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1159 (mpi->width != in_width) ||
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1160 (mpi->height != in_height)
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1161 )
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1162 return(VO_FALSE);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1163
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1164 mpi->planes[0] = center;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1165 mpi->stride[0] = fb_line_len;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1166 mpi->flags |= MP_IMGFLAG_DIRECT;
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1167 return(VO_TRUE);
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1168 }
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1169
16171
fd51fd1ff231 Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents: 15212
diff changeset
1170 static int control(uint32_t request, void *data, ...)
4352
ed5b85b713a3 Extensions for video accelerated architecture
nick
parents: 4210
diff changeset
1171 {
4592
5fbfd8545c3b query_ stuff replaced by new control() - patch by David Holm
arpi
parents: 4434
diff changeset
1172 switch (request) {
10576
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1173 case VOCTRL_GET_IMAGE:
e4cdc9ca94c5 Changed all printf into mp_msg
joey
parents: 10426
diff changeset
1174 return get_image(data);
4592
5fbfd8545c3b query_ stuff replaced by new control() - patch by David Holm
arpi
parents: 4434
diff changeset
1175 case VOCTRL_QUERY_FORMAT:
5fbfd8545c3b query_ stuff replaced by new control() - patch by David Holm
arpi
parents: 4434
diff changeset
1176 return query_format(*((uint32_t*)data));
5fbfd8545c3b query_ stuff replaced by new control() - patch by David Holm
arpi
parents: 4434
diff changeset
1177 }
11036
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1178
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1179 #ifdef CONFIG_VIDIX
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1180 if (vidix_name) {
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1181 switch (request) {
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1182 case VOCTRL_SET_EQUALIZER:
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1183 {
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1184 va_list ap;
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1185 int value;
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1186
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1187 va_start(ap, data);
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1188 value = va_arg(ap, int);
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1189 va_end(ap);
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1190
20110
d27e00bb61b8 Remove spurious casts to int. Blessed by Reimar.
rathann
parents: 17901
diff changeset
1191 return vidix_control(request, data, value);
11036
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1192 }
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1193 case VOCTRL_GET_EQUALIZER:
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1194 {
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1195 va_list ap;
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1196 int *value;
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1197
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1198 va_start(ap, data);
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1199 value = va_arg(ap, int*);
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1200 va_end(ap);
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1201
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1202 return vidix_control(request, data, value);
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1203 }
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1204 }
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1205 }
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1206 #endif
8e55228b6102 vidix equalizer support by Jake Page <jake@CS.Stanford.EDU>
alex
parents: 10618
diff changeset
1207
4592
5fbfd8545c3b query_ stuff replaced by new control() - patch by David Holm
arpi
parents: 4434
diff changeset
1208 return VO_NOTIMPL;
4352
ed5b85b713a3 Extensions for video accelerated architecture
nick
parents: 4210
diff changeset
1209 }