annotate libvo/vo_vesa.c @ 2329:fc52a0a1626f

Support of: -x -y -bpp
author nick
date Sun, 21 Oct 2001 10:32:43 +0000
parents 00f64d5858b8
children 9e8585a7182e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
1 /*
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
2 * video_out_vesa.c
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
3 *
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
4 * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - Oct 2001
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
5 *
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
6 * You can redistribute this file under terms and conditions
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
7 * GNU General Public licence v2.
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
8 * This file is partly based on vbetest.c from lrmi distributive.
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
9 */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
10
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
11 /*
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
12 TODO:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
13 - DGA support (need volunteers who have corresponding hardware)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
14 - hw YUV support (need volunteers who have corresponding hardware)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
15 - double (triple) buffering (if it will really speedup playback).
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
16 - refresh rate support (need additional info from mplayer)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
17 */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
18 #include <stdio.h>
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
19 #include <string.h>
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
20 #include <stddef.h>
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
21 #include <limits.h>
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
22
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
23 #include "config.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
24 #include "video_out.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
25 #include "video_out_internal.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
26
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
27 #include "fastmemcpy.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
28 #include "yuv2rgb.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
29
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
30 #include "linux/lrmi.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
31 #include "linux/vbelib.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
32 #include "bswap.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
33
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
34 #include "../postproc/swscale.h"
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
35
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
36 LIBVO_EXTERN(vesa)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
37 extern int verbose;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
38
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
39 #ifndef max
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
40 #define max(a,b) ((a)>(b)?(a):(b))
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
41 #endif
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
42 #ifndef min
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
43 #define min(a,b) ((a)<(b)?(a):(b))
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
44 #endif
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
45
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
46
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
47 static vo_info_t vo_info =
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
48 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
49 "VESA VBE 2.0 video output",
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
50 "vesa",
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
51 "Nick Kurshev <nickols_k@mail.ru>",
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
52 "Requires ROOT privileges"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
53 };
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
54
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
55 /* driver data */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
56
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
57 /*
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
58 TODO: for linear framebuffer mode:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
59 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
60 win.ptr = linear address of frame buffer;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
61 win.low = 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
62 win.high = vide_memory_size;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
63 */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
64 struct win_frame
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
65 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
66 uint8_t *ptr; /* pointer to window's frame memory */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
67 uint32_t low; /* lowest boundary of frame */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
68 uint32_t high; /* highest boundary of frame */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
69 uint8_t idx; /* indicates index of relocatable frame (A or B) */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
70 };
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
71
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
72 static int vesa_zoom=0; /* software scaling */
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
73 static unsigned int scale_xinc=0;
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
74 static unsigned int scale_yinc=0;
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
75 static float aspect_factor;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
76
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
77
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
78 static uint32_t image_width, image_height; /* source image dimension */
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
79 static int32_t x_offset,y_offset; /* to center image on screen */
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
80 static unsigned init_mode; /* mode before run of mplayer */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
81 static void *init_state = NULL; /* state before run of mplayer */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
82 static struct win_frame win; /* real-mode window to video memory */
2308
ce35271bdb10 Best fix of slice drawing with libmpeg2
nick
parents: 2307
diff changeset
83 static uint8_t *yuv_buffer = NULL; /* for yuv2rgb and sw_scaling */
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
84 static unsigned video_mode; /* selected video mode for playback */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
85 static struct VesaModeInfoBlock video_mode_info;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
86
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
87 #define MOVIE_MODE (MODE_ATTR_COLOR | MODE_ATTR_GRAPHICS)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
88 #define FRAME_MODE (MODE_WIN_RELOCATABLE | MODE_WIN_READABLE | MODE_WIN_WRITEABLE)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
89 static char * vbeErrToStr(int err)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
90 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
91 char *retval;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
92 static char sbuff[80];
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
93 if((err & VBE_VESA_ERROR_MASK) == VBE_VESA_ERROR_MASK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
94 {
2255
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
95 sprintf(sbuff,"VESA failed = 0x4f%x",(err & VBE_VESA_ERRCODE_MASK)>>8);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
96 retval = sbuff;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
97 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
98 else
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
99 switch(err)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
100 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
101 case VBE_OK: retval = "No error"; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
102 case VBE_VM86_FAIL: retval = "vm86() syscall failed"; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
103 case VBE_OUT_OF_DOS_MEM: retval = "Out of DOS memory"; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
104 case VBE_OUT_OF_MEM: retval = "Out of memory"; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
105 default: sprintf(sbuff,"Uknown error: %i",err); retval=sbuff; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
106 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
107 return retval;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
108 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
109
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
110 #define PRINT_VBE_ERR(name,err) { printf("vo_vesa: %s returns: %s\n",name,vbeErrToStr(err)); fflush(stdout); }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
111
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
112 static void vesa_term( void )
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
113 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
114 int err;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
115 if((err=vbeRestoreState(init_state)) != VBE_OK) PRINT_VBE_ERR("vbeRestoreState",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
116 if((err=vbeSetMode(init_mode,NULL)) != VBE_OK) PRINT_VBE_ERR("vbeSetMode",err);
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
117 free(yuv_buffer);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
118 vbeDestroy();
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
119 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
120
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
121 #define VALID_WIN_FRAME(offset) (offset >= win.low && offset < win.high)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
122 #define VIDEO_PTR(offset) (win.ptr + offset - win.low)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
123
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
124 static inline void __vbeSwitchBank(unsigned long offset)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
125 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
126 unsigned long gran;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
127 unsigned new_offset;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
128 int err;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
129 gran = video_mode_info.WinGranularity*1024;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
130 new_offset = offset / gran;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
131 if((err=vbeSetWindow(win.idx,new_offset)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
132 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
133 PRINT_VBE_ERR("vbeSetWindow",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
134 printf("vo_vesa: Fatal error occured! Can't continue\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
135 vesa_term();
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
136 exit(-1);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
137 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
138 win.low = new_offset * gran;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
139 win.high = win.low + video_mode_info.WinSize*1024;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
140 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
141
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
142 static void __vbeSetPixel(int x, int y, int r, int g, int b)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
143 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
144 int x_res = video_mode_info.XResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
145 int y_res = video_mode_info.YResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
146 int shift_r = video_mode_info.RedFieldPosition;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
147 int shift_g = video_mode_info.GreenFieldPosition;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
148 int shift_b = video_mode_info.BlueFieldPosition;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
149 int pixel_size = (video_mode_info.BitsPerPixel+7)/8;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
150 int bpl = video_mode_info.BytesPerScanLine;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
151 int color, offset;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
152
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
153 if (x < 0 || x >= x_res || y < 0 || y >= y_res) return;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
154 r >>= 8 - video_mode_info.RedMaskSize;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
155 g >>= 8 - video_mode_info.GreenMaskSize;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
156 b >>= 8 - video_mode_info.BlueMaskSize;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
157 color = (r << shift_r) | (g << shift_g) | (b << shift_b);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
158 offset = y * bpl + (x * pixel_size);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
159 if(!VALID_WIN_FRAME(offset)) __vbeSwitchBank(offset);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
160 memcpy(VIDEO_PTR(offset), &color, pixel_size);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
161 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
162
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
163 /*
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
164 Copies line of frame to video memory. Data should be in the same format as video
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
165 memory.
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
166 */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
167 static void __vbeCopyBlock(unsigned long offset,uint8_t *image,unsigned long size)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
168 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
169 unsigned long delta,src_idx = 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
170 while(size)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
171 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
172 if(!VALID_WIN_FRAME(offset)) __vbeSwitchBank(offset);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
173 delta = min(size,win.high - offset);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
174 memcpy(VIDEO_PTR(offset),&image[src_idx],delta);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
175 src_idx += delta;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
176 offset += delta;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
177 size -= delta;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
178 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
179 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
180
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
181 static void __vbeCopyBlockSwap(unsigned long offset,uint8_t *image,unsigned long size)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
182 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
183 unsigned byte_len;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
184 uint8_t ch;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
185 while(size)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
186 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
187 switch(video_mode_info.BitsPerPixel)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
188 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
189 case 8: byte_len = 1; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
190 default:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
191 case 15:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
192 printf("vo_vesa: Can't swap non byte aligned data\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
193 vesa_term();
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
194 exit(-1);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
195 case 16: *(image + offset) = ByteSwap16(*(image + offset));
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
196 byte_len = 2; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
197 case 24: ch = *(image+offset);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
198 *(image+offset) = *(image+offset+3);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
199 *(image+offset+3) = ch;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
200 byte_len = 3; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
201 case 32: *(image + offset) = ByteSwap32(*(image + offset));
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
202 byte_len = 4; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
203 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
204 __vbeCopyBlock(offset,image,byte_len);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
205 size -= byte_len;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
206 image += byte_len;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
207 offset += byte_len;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
208 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
209 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
210
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
211 /*
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
212 Copies frame to video memory. Data should be in the same format as video
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
213 memory.
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
214 */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
215 static void __vbeCopyData(uint8_t *image)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
216 {
2308
ce35271bdb10 Best fix of slice drawing with libmpeg2
nick
parents: 2307
diff changeset
217 unsigned long i,j,image_offset,offset;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
218 unsigned pixel_size,image_line_size,screen_line_size,x_shift;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
219 pixel_size = (video_mode_info.BitsPerPixel+7)/8;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
220 screen_line_size = video_mode_info.XResolution*pixel_size;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
221 image_line_size = image_width*pixel_size;
2306
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
222 if(image_width == video_mode_info.XResolution)
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
223 {
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
224 /* Special case for zooming */
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
225 __vbeCopyBlock(y_offset*screen_line_size,image,image_line_size*image_height);
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
226 }
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
227 else
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
228 {
2306
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
229 x_shift = x_offset*pixel_size;
2308
ce35271bdb10 Best fix of slice drawing with libmpeg2
nick
parents: 2307
diff changeset
230 for(j=0,i=y_offset;j<image_height;i++,j++)
2306
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
231 {
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
232 offset = i*screen_line_size+x_shift;
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
233 image_offset = j*image_line_size;
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
234 __vbeCopyBlock(offset,&image[image_offset],image_line_size);
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
235 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
236 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
237 }
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
238
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
239 static void __vbeCopySliceData(uint8_t *image,int x, int y, int w, int h)
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
240 {
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
241 unsigned long i,j,image_offset,offset;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
242 unsigned pixel_size,image_line_size,screen_line_size,x_shift;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
243 pixel_size = (video_mode_info.BitsPerPixel+7)/8;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
244 screen_line_size = video_mode_info.XResolution*pixel_size;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
245 image_line_size = w*pixel_size;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
246 #if 0
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
247 if(image_width == video_mode_info.XResolution && w == image_width)
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
248 {
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
249 /* Special case for zooming */
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
250 __vbeCopyBlock((y_offset+y)*screen_line_size,image,image_line_size*image_height);
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
251 }
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
252 else
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
253 #endif
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
254 {
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
255 x_shift = (x_offset+x)*pixel_size;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
256 for(j=0,i=y_offset+y;j<h;i++,j++)
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
257 {
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
258 offset = i*screen_line_size+x_shift;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
259 image_offset = j*image_line_size;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
260 __vbeCopyBlock(offset,&image[image_offset],image_line_size);
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
261 }
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
262 }
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
263 }
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
264
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
265 /* is called for yuv only */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
266 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
267 {
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
268 if(vesa_zoom)
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
269 {
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
270 SwScale_YV12slice_brg24(image,stride,y,h,
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
271 yuv_buffer,
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
272 image_width*((video_mode_info.BitsPerPixel+7)/8),
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
273 image_width, video_mode_info.BitsPerPixel,
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
274 scale_xinc, scale_yinc);
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
275 if(y || x || w != image_width || h != image_height)
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
276 {
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
277 w = image_width;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
278 h = image_height;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
279 y = 0;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
280 x = 0;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
281 }
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
282 }
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
283 else
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
284 {
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
285 yuv2rgb(yuv_buffer, image[0], image[1], image[2], w, h,
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
286 image_width * ((video_mode_info.BitsPerPixel+7)/8),
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
287 stride[0], stride[1]);
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
288 }
2308
ce35271bdb10 Best fix of slice drawing with libmpeg2
nick
parents: 2307
diff changeset
289 if(y || x || w != image_width || h != image_height)
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
290 __vbeCopySliceData((uint8_t*)yuv_buffer,x,y,w,h);
2308
ce35271bdb10 Best fix of slice drawing with libmpeg2
nick
parents: 2307
diff changeset
291 else __vbeCopyData((uint8_t *)yuv_buffer);
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
292 return 0;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
293 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
294
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
295 static void draw_osd(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
296 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
297 /* nothing to do for now */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
298 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
299
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
300 static void flip_page(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
301 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
302 /*Is not required*/
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
303 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
304
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
305 /* is called for rgb only */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
306 static uint32_t draw_frame(uint8_t *src[])
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
307 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
308 __vbeCopyData(src[0]);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
309 return 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
310 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
311
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
312 static uint32_t query_format(uint32_t format)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
313 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
314 uint32_t retval;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
315 switch(format)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
316 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
317 case IMGFMT_YV12:
2296
1d100b2d668c Initial YUV (YV12) support
nick
parents: 2293
diff changeset
318 #if 0 /* Should be tested better */
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
319 case IMGFMT_I420:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
320 case IMGFMT_IYUV:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
321 #endif
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
322 case IMGFMT_RGB8:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
323 case IMGFMT_RGB15:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
324 case IMGFMT_RGB16:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
325 case IMGFMT_RGB24:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
326 case IMGFMT_RGB32:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
327 case IMGFMT_BGR8:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
328 case IMGFMT_BGR15:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
329 case IMGFMT_BGR16:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
330 case IMGFMT_BGR24:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
331 case IMGFMT_BGR32:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
332 retval = 1; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
333 default:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
334 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
335 printf("vo_vesa: unknown format: %x = %s\n",format,vo_format_name(format));
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
336 retval = 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
337 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
338 return retval;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
339 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
340
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
341 static void vesa_aspect(uint32_t width,uint32_t height,
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
342 uint32_t xres,uint32_t yres,
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
343 uint32_t *image_width,uint32_t *image_height)
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
344 {
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
345 aspect_factor = (float)width / height;
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
346 *image_width = xres;
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
347 *image_height = xres /aspect_factor;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
348 if(verbose) printf("vo_vesa: aspect factor = %f(%ux%u) *image=%ux%u screen=%ux%u\n",aspect_factor,width,height,*image_width,*image_height,xres,yres);
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
349 if((*image_height) > yres)
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
350 {
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
351 *image_height = yres;
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
352 *image_width = yres * aspect_factor;
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
353 if(verbose) printf("vo_vesa: Y > X therefore *image=%ux%u\n",*image_width,*image_height);
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
354 }
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
355 }
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
356
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
357 static char *model2str(unsigned char type)
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
358 {
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
359 char *retval;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
360 switch(type)
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
361 {
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
362 case memText: retval = "Text"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
363 case memCGA: retval="CGA"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
364 case memHercules: retval="Hercules"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
365 case memPL: retval="Planar"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
366 case memPK: retval="Packed pixel"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
367 case mem256: retval="256"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
368 case memRGB: retval="Direct color RGB"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
369 case memYUV: retval="Direct color YUV"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
370 default: retval="Unknown"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
371 }
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
372 return retval;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
373 }
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
374
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
375 /* fullscreen:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
376 * bit 0 (0x01) means fullscreen (-fs)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
377 * bit 1 (0x02) means mode switching (-vm)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
378 * bit 2 (0x04) enables software scaling (-zoom)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
379 * bit 3 (0x08) enables flipping (-flip)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
380 */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
381 static uint32_t
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
382 init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format)
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
383 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
384 struct VbeInfoBlock vib;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
385 struct VesaModeInfoBlock vmib;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
386 size_t i,num_modes;
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
387 uint32_t w,h;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
388 unsigned short *mode_ptr,win_seg;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
389 unsigned bpp,best_x = UINT_MAX,best_y=UINT_MAX,best_mode_idx = UINT_MAX;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
390 int err;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
391 image_width = width;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
392 image_height = height;
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
393 if(flags & 0x8)
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
394 {
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
395 printf("vo_vesa: switch -flip is not supported\n");
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
396 }
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
397 if(flags & 0x04) vesa_zoom = 1;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
398 if(flags & 0x01) vesa_zoom = 2;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
399 if((err=vbeInit()) != VBE_OK) { PRINT_VBE_ERR("vbeInit",err); return -1; }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
400 memcpy(vib.VESASignature,"VBE2",4);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
401 if((err=vbeGetControllerInfo(&vib)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
402 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
403 PRINT_VBE_ERR("vbeGetControllerInfo",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
404 printf("vo_vesa: possible reason: No VBE2 BIOS found\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
405 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
406 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
407 /* Print general info here */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
408 printf("vo_vesa: Found VESA VBE BIOS Version %x.%x Revision: %x\n",
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
409 (int)(vib.VESAVersion >> 8) & 0xff,
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
410 (int)(vib.VESAVersion & 0xff),
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
411 (int)(vib.OemSoftwareRev & 0xffff));
2255
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
412 printf("vo_vesa: Video memory: %u Kb\n",vib.TotalMemory*64);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
413 printf("vo_vesa: VESA Capabilities: %s %s %s %s %s\n"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
414 ,vib.Capabilities & VBE_DAC_8BIT ? "8-bit DAC," : "6-bit DAC,"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
415 ,vib.Capabilities & VBE_NONVGA_CRTC ? "non-VGA CRTC,":"VGA CRTC,"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
416 ,vib.Capabilities & VBE_SNOWED_RAMDAC ? "snowed RAMDAC,":"normal RAMDAC,"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
417 ,vib.Capabilities & VBE_STEREOSCOPIC ? "stereoscopic,":"no stereoscopic,"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
418 ,vib.Capabilities & VBE_STEREO_EVC ? "Stereo EVC":"no stereo");
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
419 printf("vo_vesa: !!! Below will be printed OEM info. !!!\n");
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
420 printf("vo_vesa: You should watch 5 OEM related lines below else you've broken vm86\n");
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
421 printf("vo_vesa: OEM info: %s\n",vib.OemStringPtr);
2255
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
422 printf("vo_vesa: OEM Revision: %x\n",vib.OemSoftwareRev);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
423 printf("vo_vesa: OEM vendor: %s\n",vib.OemVendorNamePtr);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
424 printf("vo_vesa: OEM Product Name: %s\n",vib.OemProductNamePtr);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
425 printf("vo_vesa: OEM Product Rev: %s\n",vib.OemProductRevPtr);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
426 printf("vo_vesa: Hint: To get workable TV-Out you should have plugged tv-connector in\n"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
427 "vo_vesa: before booting PC since VESA BIOS initializes itself only during POST\n");
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
428 /* Find best mode here */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
429 num_modes = 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
430 mode_ptr = vib.VideoModePtr;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
431 while(*mode_ptr++ != 0xffff) num_modes++;
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
432 if(vo_dbpp)
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
433 {
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
434 bpp = vo_dbpp;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
435 if(format == IMGFMT_YV12 || format == IMGFMT_I420 || format == IMGFMT_IYUV)
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
436 yuv2rgb_init(bpp, MODE_RGB);
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
437 }
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
438 else
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
439 switch(format)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
440 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
441 case IMGFMT_BGR8:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
442 case IMGFMT_RGB8: bpp = 8; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
443 case IMGFMT_BGR15:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
444 case IMGFMT_RGB15: bpp = 15; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
445 case IMGFMT_YV12:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
446 case IMGFMT_I420:
2296
1d100b2d668c Initial YUV (YV12) support
nick
parents: 2293
diff changeset
447 case IMGFMT_IYUV: bpp=16;
1d100b2d668c Initial YUV (YV12) support
nick
parents: 2293
diff changeset
448 yuv2rgb_init(bpp, MODE_RGB);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
449 default:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
450 case IMGFMT_BGR16:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
451 case IMGFMT_RGB16: bpp = 16; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
452 case IMGFMT_BGR24:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
453 case IMGFMT_RGB24: bpp = 24; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
454 case IMGFMT_BGR32:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
455 case IMGFMT_RGB32: bpp = 32; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
456 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
457 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
458 {
2304
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
459 printf("vo_vesa: Requested mode: %ux%u@%u (%s)\n",width,height,bpp,vo_format_name(format));
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
460 printf("vo_vesa: Total modes found: %u\n",num_modes);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
461 mode_ptr = vib.VideoModePtr;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
462 printf("vo_vesa: Mode list:");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
463 for(i = 0;i < num_modes;i++)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
464 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
465 printf(" %04X",mode_ptr[i]);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
466 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
467 printf("\nvo_vesa: Modes in detail:\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
468 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
469 mode_ptr = vib.VideoModePtr;
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
470 w = d_width ? d_width : width;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
471 h = d_height ? d_height : height;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
472 for(i=0;i < num_modes;i++)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
473 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
474 if((err=vbeGetModeInfo(mode_ptr[i],&vmib)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
475 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
476 PRINT_VBE_ERR("vbeGetModeInfo",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
477 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
478 }
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
479 if(vmib.XResolution >= w &&
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
480 vmib.YResolution >= h &&
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
481 (vmib.ModeAttributes & MOVIE_MODE) == MOVIE_MODE &&
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
482 vmib.BitsPerPixel == bpp &&
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
483 vmib.MemoryModel == memRGB)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
484 {
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
485 if(vmib.XResolution <= best_x &&
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
486 vmib.YResolution <= best_y)
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
487 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
488 best_x = vmib.XResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
489 best_y = vmib.YResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
490 best_mode_idx = i;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
491 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
492 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
493 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
494 {
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
495 printf("vo_vesa: Mode (%03u): mode=%04X %ux%u@%u attr=%04X\n"
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
496 "vo_vesa: #planes=%u model=%u(%s) #pages=%u\n"
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
497 "vo_vesa: winA=%X(attr=%u) winB=%X(attr=%u) winSize=%u winGran=%u\n"
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
498 "vo_vesa: direct_color=%u DGA_phys_addr=%08X\n"
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
499 ,i,mode_ptr[i],vmib.XResolution,vmib.YResolution,vmib.BitsPerPixel,vmib.ModeAttributes
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
500 ,vmib.NumberOfPlanes,vmib.MemoryModel,model2str(vmib.MemoryModel),vmib.NumberOfImagePages
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
501 ,vmib.WinASegment,vmib.WinAAttributes,vmib.WinBSegment,vmib.WinBAttributes,vmib.WinSize,vmib.WinGranularity
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
502 ,vmib.DirectColorModeInfo,vmib.PhysBasePtr);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
503 if(vmib.MemoryModel == 6 || vmib.MemoryModel == 7)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
504 printf("vo_vesa: direct_color_info = %u:%u:%u:%u\n"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
505 ,vmib.RedMaskSize,vmib.GreenMaskSize,vmib.BlueMaskSize,vmib.RsvdMaskSize);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
506 fflush(stdout);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
507 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
508 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
509 if(best_mode_idx != UINT_MAX)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
510 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
511 video_mode = vib.VideoModePtr[best_mode_idx];
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
512 fflush(stdout);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
513 if((err=vbeGetMode(&init_mode)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
514 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
515 PRINT_VBE_ERR("vbeGetMode",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
516 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
517 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
518 if(verbose) printf("vo_vesa: Initial video mode: %x\n",init_mode);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
519 if((err=vbeGetModeInfo(video_mode,&video_mode_info)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
520 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
521 PRINT_VBE_ERR("vbeGetModeInfo",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
522 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
523 }
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
524 printf("vo_vesa: Using VESA mode (%u) = %x [%ux%u@%u]\n"
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
525 ,best_mode_idx,video_mode,video_mode_info.XResolution
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
526 ,video_mode_info.YResolution,video_mode_info.BitsPerPixel);
2304
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
527 if( vesa_zoom )
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
528 {
2304
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
529 if( format==IMGFMT_YV12 )
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
530 {
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
531 /* software scale */
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
532 if(vesa_zoom > 1)
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
533 {
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
534 image_width = video_mode_info.XResolution;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
535 image_height = video_mode_info.YResolution;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
536 }
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
537 else
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
538 vesa_aspect(width,height,
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
539 video_mode_info.XResolution,video_mode_info.YResolution,
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
540 &image_width,&image_height);
2304
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
541 scale_xinc=(width << 16) / image_width - 2; /* needed for proper rounding */
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
542 scale_yinc=(height << 16) / image_height + 2;
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
543 SwScale_Init();
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
544 if(verbose) printf("vo_vesa: Using SCALE\n");
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
545 }
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
546 else
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
547 {
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
548 printf("vo_vesa: Can't apply zooming to non YV12 formats\n");
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
549 return -1;
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
550 }
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
551 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
552 if((video_mode_info.WinAAttributes & FRAME_MODE) == FRAME_MODE)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
553 win.idx = 0; /* frame A */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
554 else
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
555 if((video_mode_info.WinBAttributes & FRAME_MODE) == FRAME_MODE)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
556 win.idx = 1; /* frame B */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
557 else { printf("vo_vesa: Can't find usable frame of window\n"); return -1; }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
558 if(!(win_seg = win.idx == 0 ? video_mode_info.WinASegment:video_mode_info.WinBSegment))
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
559 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
560 printf("vo_vesa: Can't find valid window address\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
561 if(video_mode_info.ModeAttributes & MODE_ATTR_LINEAR)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
562 printf("vo_vesa: Your BIOS supports DGA access which is not implemented for now\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
563 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
564 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
565 win.ptr = PhysToVirtSO(win_seg,0);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
566 win.low = 0L;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
567 win.high= video_mode_info.WinSize*1024;
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
568 if(video_mode_info.XResolution > image_width)
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
569 x_offset = (video_mode_info.XResolution - image_width) / 2;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
570 else x_offset = 0;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
571 if(video_mode_info.YResolution > image_height)
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
572 y_offset = (video_mode_info.YResolution - image_height) / 2;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
573 else y_offset = 0;
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
574 if(verbose)
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
575 printf("vo_vesa: image: %ux%u screen = %ux%u x_offset = %u y_offset = %u\n"
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
576 ,image_width,image_height
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
577 ,video_mode_info.XResolution,video_mode_info.YResolution
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
578 ,x_offset,y_offset);
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
579 if(!(yuv_buffer = malloc(image_width*image_height*bpp)))
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
580 {
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
581 printf("vo_vesa: Can't allocate temporary buffer\n");
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
582 return -1;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
583 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
584 if((err=vbeSaveState(&init_state)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
585 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
586 PRINT_VBE_ERR("vbeSaveState",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
587 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
588 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
589 if((err=vbeSetMode(video_mode,NULL)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
590 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
591 PRINT_VBE_ERR("vbeSetMode",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
592 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
593 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
594 /* Now we are in video mode!!!*/
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
595 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
596 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
597 printf("vo_vesa: Graphics mode was activated\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
598 fflush(stdout);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
599 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
600 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
601 else
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
602 {
2255
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
603 printf("vo_vesa: Can't find mode for: %ux%u@%u\n",width,height,bpp);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
604 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
605 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
606 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
607 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
608 printf("vo_vesa: VESA initialization complete\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
609 fflush(stdout);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
610 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
611 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
612 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
613 int x_res = video_mode_info.XResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
614 int y_res = video_mode_info.YResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
615 int x, y;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
616
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
617 for (y = 0; y < y_res; ++y)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
618 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
619 for (x = 0; x < x_res; ++x)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
620 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
621 int r, g, b;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
622 if ((x & 16) ^ (y & 16))
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
623 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
624 r = x * 255 / x_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
625 g = y * 255 / y_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
626 b = 255 - x * 255 / x_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
627 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
628 else
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
629 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
630 r = 255 - x * 255 / x_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
631 g = y * 255 / y_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
632 b = 255 - y * 255 / y_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
633 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
634
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
635 __vbeSetPixel(x, y, r, g, b);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
636 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
637 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
638 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
639 return 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
640 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
641
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
642 static const vo_info_t*
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
643 get_info(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
644 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
645 return &vo_info;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
646 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
647
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
648 static void
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
649 uninit(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
650 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
651 vesa_term();
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
652 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
653
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
654
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
655 static void check_events(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
656 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
657 /* Nothing to do */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
658 }