annotate libvo/vo_vesa.c @ 2681:7f0862258f4b

fourcc mapping fixed - 10l to someone
author arpi
date Sun, 04 Nov 2001 14:00:53 +0000
parents d3393d940aa5
children 44ff6b5c7cea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2519
6f3fa9bc3b27 yv12 to yv12 scaler
michael
parents: 2506
diff changeset
1 /*
2244
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
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
7 * of GNU General Public licence v2.
2244
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 - hw YUV support (need volunteers who have corresponding hardware)
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
14 - triple buffering (if it will really speedup playback).
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
15 note: triple buffering requires VBE 3.0.
2244
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>
2446
6fb598bd7ede Suppressing warnings
nick
parents: 2410
diff changeset
19 #include <stdlib.h>
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
20 #include <string.h>
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
21 #include <stddef.h>
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
22 #include <limits.h>
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
23
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
24 #include "config.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
25 #include "video_out.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
26 #include "video_out_internal.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
27
2537
28d30f50d89c memalign 64
nick
parents: 2519
diff changeset
28 #ifdef HAVE_MEMALIGN
28d30f50d89c memalign 64
nick
parents: 2519
diff changeset
29 #include <malloc.h>
28d30f50d89c memalign 64
nick
parents: 2519
diff changeset
30 #endif
28d30f50d89c memalign 64
nick
parents: 2519
diff changeset
31
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
32 #include "fastmemcpy.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
33 #include "yuv2rgb.h"
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
34 #include "sub.h"
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
35 #include "linux/vbelib.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
36 #include "bswap.h"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
37
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
38 #include "../postproc/swscale.h"
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
39 #include "../postproc/rgb2rgb.h"
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
40
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
41 LIBVO_EXTERN(vesa)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
42 extern int verbose;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
43
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
44 #define MAX_BUFFERS 3
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
45
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
46 #ifndef max
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
47 #define max(a,b) ((a)>(b)?(a):(b))
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
48 #endif
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
49 #ifndef min
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
50 #define min(a,b) ((a)<(b)?(a):(b))
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
51 #endif
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
52
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
53
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
54 static vo_info_t vo_info =
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
55 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
56 "VESA VBE 2.0 video output",
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
57 "vesa",
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
58 "Nick Kurshev <nickols_k@mail.ru>",
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
59 "Requires ROOT privileges"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
60 };
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
61
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
62 /* driver data */
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 */
2610
65cb69a90a9f vo_vesa: DGA support
nick
parents: 2554
diff changeset
69 char idx; /* indicates index of relocatable frame (A=0 or B=1)
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
70 special case for DGA: idx=-1
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
71 idx=-2 indicates invalid frame, exists only in init() */
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
72 };
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
73
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
74 static void (*cpy_blk_fnc)(unsigned long,uint8_t *,unsigned long) = NULL;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
75
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
76 static int vesa_zoom=0; /* software scaling */
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
77 static unsigned int scale_xinc=0;
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
78 static unsigned int scale_yinc=0;
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
79
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
80 static uint32_t image_bpp,image_width, image_height; /* source image dimension */
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
81 static int32_t x_offset,y_offset; /* to center image on screen */
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
82 static unsigned init_mode; /* mode before run of mplayer */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
83 static void *init_state = NULL; /* state before run of mplayer */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
84 static struct win_frame win; /* real-mode window to video memory */
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
85 static uint8_t *dga_buffer = NULL; /* for yuv2rgb and sw_scaling */
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
86 static unsigned video_mode; /* selected video mode for playback */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
87 static struct VesaModeInfoBlock video_mode_info;
2331
9e8585a7182e Final fix of libmpeg2 zooming: flipping page support
nick
parents: 2329
diff changeset
88 static int flip_trigger = 0;
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
89 static void (*draw_alpha_fnc)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride);
2676
d3393d940aa5 Fixed rgb2rgb in DGA mode
nick
parents: 2649
diff changeset
90 static void (*rgb2rgb_fnc)(const uint8_t *src,uint8_t *dst,uint32_t src_size);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
91
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
92 /* multibuffering */
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
93 uint8_t* video_base; /* should be never changed */
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
94 uint32_t multi_buff[MAX_BUFFERS]; /* contains offsets of buffers */
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
95 uint8_t multi_size=0; /* total number of buffers */
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
96 uint8_t multi_idx=0; /* active buffer */
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
97
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
98 #define HAS_DGA() (win.idx == -1)
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
99 #define MOVIE_MODE (MODE_ATTR_COLOR | MODE_ATTR_GRAPHICS)
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
100 #define FRAME_MODE (MODE_WIN_RELOCATABLE | MODE_WIN_WRITEABLE)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
101
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
102 static char * vbeErrToStr(int err)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
103 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
104 char *retval;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
105 static char sbuff[80];
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
106 if((err & VBE_VESA_ERROR_MASK) == VBE_VESA_ERROR_MASK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
107 {
2255
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
108 sprintf(sbuff,"VESA failed = 0x4f%x",(err & VBE_VESA_ERRCODE_MASK)>>8);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
109 retval = sbuff;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
110 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
111 else
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
112 switch(err)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
113 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
114 case VBE_OK: retval = "No error"; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
115 case VBE_VM86_FAIL: retval = "vm86() syscall failed"; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
116 case VBE_OUT_OF_DOS_MEM: retval = "Out of DOS memory"; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
117 case VBE_OUT_OF_MEM: retval = "Out of memory"; break;
2360
aa4d96380b7f Broken BIOS test
nick
parents: 2337
diff changeset
118 case VBE_BROKEN_BIOS: retval = "Broken BIOS or DOS TSR"; break;
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
119 default: sprintf(sbuff,"Unknown or internal error: %i",err); retval=sbuff; break;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
120 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
121 return retval;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
122 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
123
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
124 #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
125
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
126 static void vesa_term( void )
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
127 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
128 int err;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
129 if((err=vbeRestoreState(init_state)) != VBE_OK) PRINT_VBE_ERR("vbeRestoreState",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
130 if((err=vbeSetMode(init_mode,NULL)) != VBE_OK) PRINT_VBE_ERR("vbeSetMode",err);
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
131 if(HAS_DGA()) vbeUnmapVideoBuffer((unsigned long)win.ptr,win.high);
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
132 if(dga_buffer && !HAS_DGA()) free(dga_buffer);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
133 vbeDestroy();
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
134 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
135
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
136 #define VALID_WIN_FRAME(offset) (offset >= win.low && offset < win.high)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
137 #define VIDEO_PTR(offset) (win.ptr + offset - win.low)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
138
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
139 static inline void __vbeSwitchBank(unsigned long offset)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
140 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
141 unsigned long gran;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
142 unsigned new_offset;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
143 int err;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
144 gran = video_mode_info.WinGranularity*1024;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
145 new_offset = offset / gran;
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
146 if(HAS_DGA()) { err = -1; goto show_err; }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
147 if((err=vbeSetWindow(win.idx,new_offset)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
148 {
2610
65cb69a90a9f vo_vesa: DGA support
nick
parents: 2554
diff changeset
149 show_err:
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
150 PRINT_VBE_ERR("vbeSetWindow",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
151 printf("vo_vesa: Fatal error occured! Can't continue\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
152 vesa_term();
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
153 exit(-1);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
154 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
155 win.low = new_offset * gran;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
156 win.high = win.low + video_mode_info.WinSize*1024;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
157 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
158
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
159 static void __vbeSetPixel(int x, int y, int r, int g, int b)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
160 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
161 int x_res = video_mode_info.XResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
162 int y_res = video_mode_info.YResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
163 int shift_r = video_mode_info.RedFieldPosition;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
164 int shift_g = video_mode_info.GreenFieldPosition;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
165 int shift_b = video_mode_info.BlueFieldPosition;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
166 int pixel_size = (video_mode_info.BitsPerPixel+7)/8;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
167 int bpl = video_mode_info.BytesPerScanLine;
2676
d3393d940aa5 Fixed rgb2rgb in DGA mode
nick
parents: 2649
diff changeset
168 int color;
d3393d940aa5 Fixed rgb2rgb in DGA mode
nick
parents: 2649
diff changeset
169 unsigned offset;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
170
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
171 if (x < 0 || x >= x_res || y < 0 || y >= y_res) return;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
172 r >>= 8 - video_mode_info.RedMaskSize;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
173 g >>= 8 - video_mode_info.GreenMaskSize;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
174 b >>= 8 - video_mode_info.BlueMaskSize;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
175 color = (r << shift_r) | (g << shift_g) | (b << shift_b);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
176 offset = y * bpl + (x * pixel_size);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
177 if(!VALID_WIN_FRAME(offset)) __vbeSwitchBank(offset);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
178 memcpy(VIDEO_PTR(offset), &color, pixel_size);
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 /*
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
182 Copies part of frame to video memory. Data should be in the same format
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
183 as video memory.
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
184 */
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
185 static void __vbeCopyBlockFast(unsigned long offset,uint8_t *image,unsigned long size)
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
186 {
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
187 memcpy(&win.ptr[offset],image,size);
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
188 }
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
189
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
190 static void __vbeCopyBlock(unsigned long offset,uint8_t *image,unsigned long size)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
191 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
192 unsigned long delta,src_idx = 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
193 while(size)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
194 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
195 if(!VALID_WIN_FRAME(offset)) __vbeSwitchBank(offset);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
196 delta = min(size,win.high - offset);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
197 memcpy(VIDEO_PTR(offset),&image[src_idx],delta);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
198 src_idx += delta;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
199 offset += delta;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
200 size -= delta;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
201 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
202 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
203
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
204 /*
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
205 Copies frame to video memory. Data should be in the same format as video
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
206 memory.
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
207 */
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
208
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
209 #define PIXEL_SIZE() ((video_mode_info.BitsPerPixel+7)/8)
2676
d3393d940aa5 Fixed rgb2rgb in DGA mode
nick
parents: 2649
diff changeset
210 #define SCREEN_LINE_SIZE(pixel_size) (video_mode_info.XResolution*(pixel_size) )
d3393d940aa5 Fixed rgb2rgb in DGA mode
nick
parents: 2649
diff changeset
211 #define IMAGE_LINE_SIZE(pixel_size) (image_width*(pixel_size))
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
212
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
213 static void __vbeCopyData(uint8_t *image)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
214 {
2308
ce35271bdb10 Best fix of slice drawing with libmpeg2
nick
parents: 2307
diff changeset
215 unsigned long i,j,image_offset,offset;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
216 unsigned pixel_size,image_line_size,screen_line_size,x_shift;
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
217 pixel_size = PIXEL_SIZE();
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
218 screen_line_size = SCREEN_LINE_SIZE(pixel_size);
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
219 image_line_size = IMAGE_LINE_SIZE(pixel_size);
2306
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
220 if(image_width == video_mode_info.XResolution)
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
221 {
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
222 /* Special case for zooming */
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
223 (*cpy_blk_fnc)(y_offset*screen_line_size,image,image_line_size*image_height);
2306
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
224 }
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
225 else
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
226 {
2306
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
227 x_shift = x_offset*pixel_size;
2308
ce35271bdb10 Best fix of slice drawing with libmpeg2
nick
parents: 2307
diff changeset
228 for(j=0,i=y_offset;j<image_height;i++,j++)
2306
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
229 {
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
230 offset = i*screen_line_size+x_shift;
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
231 image_offset = j*image_line_size;
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
232 (*cpy_blk_fnc)(offset,&image[image_offset],image_line_size);
2306
42cf51474f45 Qualitative speedup for P3 & K7 cpus
nick
parents: 2305
diff changeset
233 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
234 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
235 }
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
236
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
237 /* is called for yuv only */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
238 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
239 {
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
240 if(verbose > 2)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
241 printf("vo_vesa: draw_slice was called: w=%u h=%u x=%u y=%u\n",w,h,x,y);
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
242 if(vesa_zoom)
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
243 {
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
244 uint8_t *dst[3]= {dga_buffer, NULL, NULL};
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
245 int dst_stride;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
246 if(HAS_DGA()) dst[0] += y_offset*SCREEN_LINE_SIZE(PIXEL_SIZE())+x_offset*PIXEL_SIZE();
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
247 dst_stride = PIXEL_SIZE()*(HAS_DGA()?video_mode_info.XResolution:image_width);
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
248 SwScale_YV12slice(image,stride,y,h,dst,dst_stride,
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
249 image_width, video_mode_info.BitsPerPixel,
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
250 scale_xinc, scale_yinc);
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
251 }
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
252 else
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
253 {
2331
9e8585a7182e Final fix of libmpeg2 zooming: flipping page support
nick
parents: 2329
diff changeset
254 uint8_t *yuv_slice;
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
255 int rgb_stride;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
256 yuv_slice=dga_buffer;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
257 if(HAS_DGA()) yuv_slice += y_offset*SCREEN_LINE_SIZE(PIXEL_SIZE())+x_offset*PIXEL_SIZE();
2636
27e829d53e8e Fixed bug of -vc libmpeg2 on vesa:dga
nick
parents: 2633
diff changeset
258 rgb_stride = HAS_DGA()?video_mode_info.XResolution:image_width;
27e829d53e8e Fixed bug of -vc libmpeg2 on vesa:dga
nick
parents: 2633
diff changeset
259 yuv_slice+=(rgb_stride*y+x)*PIXEL_SIZE();
27e829d53e8e Fixed bug of -vc libmpeg2 on vesa:dga
nick
parents: 2633
diff changeset
260 rgb_stride *= PIXEL_SIZE();
2331
9e8585a7182e Final fix of libmpeg2 zooming: flipping page support
nick
parents: 2329
diff changeset
261 yuv2rgb(yuv_slice, image[0], image[1], image[2], w, h,
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
262 rgb_stride, stride[0], stride[1]);
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
263 }
2331
9e8585a7182e Final fix of libmpeg2 zooming: flipping page support
nick
parents: 2329
diff changeset
264 flip_trigger = 1;
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
265 return 0;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
266 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
267
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
268 static void draw_alpha_32(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
269 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
270 unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:image_width;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
271 vo_draw_alpha_rgb32(w,h,src,srca,stride,dga_buffer+4*(y0*dstride+x0),4*dstride);
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
272 }
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
273
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
274 static void draw_alpha_24(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
275 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
276 unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:image_width;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
277 vo_draw_alpha_rgb24(w,h,src,srca,stride,dga_buffer+3*(y0*dstride+x0),3*dstride);
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
278 }
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
279
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
280 static void draw_alpha_16(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
281 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
282 unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:image_width;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
283 vo_draw_alpha_rgb16(w,h,src,srca,stride,dga_buffer+2*(y0*dstride+x0),2*dstride);
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
284 }
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
285
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
286 static void draw_alpha_15(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
287 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
288 unsigned int dstride=HAS_DGA()?video_mode_info.XResolution:image_width;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
289 vo_draw_alpha_rgb15(w,h,src,srca,stride,dga_buffer+2*(y0*dstride+x0),2*dstride);
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
290 }
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
291
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
292 static void draw_alpha_null(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
293 {
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
294 }
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
295
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
296
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
297 static void draw_osd(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
298 {
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
299 uint32_t w,h;
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
300 if(verbose > 2)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
301 printf("vo_vesa: draw_osd was called\n");
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
302 w = HAS_DGA()?video_mode_info.XResolution:image_width;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
303 h = HAS_DGA()?video_mode_info.YResolution:image_height;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
304 if(dga_buffer) vo_draw_text(w,h,draw_alpha_fnc);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
305 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
306
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
307 static void flip_page(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
308 {
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
309 if(verbose > 2)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
310 printf("vo_vesa: flip_page was called\n");
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
311 if(flip_trigger)
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
312 {
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
313 if(!HAS_DGA()) __vbeCopyData(dga_buffer);
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
314 flip_trigger = 0;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
315 }
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
316 #if 0
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
317 if(vo_doublebuffering && multi_size > 1)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
318 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
319 vbeSetDisplayStart(multi_buff[multi_idx],1);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
320 multi_idx = multi_idx ? 0 : 1;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
321 win.ptr = dga_buffer = video_base + multi_buff[multi_idx];
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
322 }
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
323 #endif
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
324 /*
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
325 else
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
326 if(tripple_buffering)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
327 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
328 vbeSetScheduledDisplayStart(multi_buffer[multi_idx],1);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
329 multi_idx++;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
330 if(multi_idx > 2) multi_idx = 0;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
331 win.ptr = dga_buffer = video_base + multi_buffer[multi_idx];
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
332 }
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
333 */
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
334 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
335
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
336 /* is called for rgb only */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
337 static uint32_t draw_frame(uint8_t *src[])
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
338 {
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
339 uint8_t *data = src[0];
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
340 if(verbose > 2)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
341 printf("vo_vesa: draw_frame was called\n");
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
342 if(rgb2rgb_fnc)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
343 {
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
344 if(HAS_DGA())
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
345 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
346 size_t i, psize, ssize, dsize;
2676
d3393d940aa5 Fixed rgb2rgb in DGA mode
nick
parents: 2649
diff changeset
347 uint8_t *dest;
d3393d940aa5 Fixed rgb2rgb in DGA mode
nick
parents: 2649
diff changeset
348 const uint8_t *sptr;
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
349 psize = PIXEL_SIZE();
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
350 dsize = SCREEN_LINE_SIZE(psize);
2676
d3393d940aa5 Fixed rgb2rgb in DGA mode
nick
parents: 2649
diff changeset
351 ssize = IMAGE_LINE_SIZE((image_bpp+7)/8);
d3393d940aa5 Fixed rgb2rgb in DGA mode
nick
parents: 2649
diff changeset
352 dest = dga_buffer + y_offset*dsize + x_offset*psize;
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
353 sptr = src[0];
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
354 for(i=0;i<image_height;i++)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
355 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
356 (*rgb2rgb_fnc)(sptr,dest,ssize);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
357 sptr += ssize;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
358 dest += dsize;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
359 }
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
360 }
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
361 else
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
362 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
363 (*rgb2rgb_fnc)(src[0],dga_buffer,image_width*image_height*image_bpp);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
364 data = dga_buffer;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
365 }
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
366 if(verbose > 2)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
367 printf("vo_vesa: rgb2rgb_fnc was called\n");
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
368 }
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
369 if(!rgb2rgb_fnc || !HAS_DGA()) __vbeCopyData(data);
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
370 return 0;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
371 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
372
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
373 static uint32_t query_format(uint32_t format)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
374 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
375 uint32_t retval;
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
376 if(verbose > 2)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
377 printf("vo_vesa: query_format was called: %x (%s)\n",format,vo_format_name(format));
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
378 switch(format)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
379 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
380 case IMGFMT_YV12:
2637
8101229be3a5 code cleanup
nick
parents: 2636
diff changeset
381 #if 0 /* Should be tested better */
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
382 case IMGFMT_I420:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
383 case IMGFMT_IYUV:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
384 #endif
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
385 case IMGFMT_RGB8:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
386 case IMGFMT_RGB15:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
387 case IMGFMT_RGB16:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
388 case IMGFMT_RGB24:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
389 case IMGFMT_RGB32:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
390 case IMGFMT_BGR8:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
391 case IMGFMT_BGR15:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
392 case IMGFMT_BGR16:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
393 case IMGFMT_BGR24:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
394 case IMGFMT_BGR32:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
395 retval = 1; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
396 default:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
397 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
398 printf("vo_vesa: unknown format: %x = %s\n",format,vo_format_name(format));
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
399 retval = 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
400 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
401 return retval;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
402 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
403
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
404 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
405 uint32_t xres,uint32_t yres,
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
406 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
407 {
2331
9e8585a7182e Final fix of libmpeg2 zooming: flipping page support
nick
parents: 2329
diff changeset
408 float aspect_factor;
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
409 aspect_factor = (float)width / height;
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
410 *image_width = xres;
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
411 *image_height = xres /aspect_factor;
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
412 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
413 if((*image_height) > yres)
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
414 {
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
415 *image_height = yres;
2328
00f64d5858b8 Bad fix of libmpeg2 zooming
nick
parents: 2308
diff changeset
416 *image_width = yres * aspect_factor;
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
417 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
418 }
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
419 }
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
420
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
421 static char *model2str(unsigned char type)
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
422 {
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
423 char *retval;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
424 switch(type)
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
425 {
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
426 case memText: retval = "Text"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
427 case memCGA: retval="CGA"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
428 case memHercules: retval="Hercules"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
429 case memPL: retval="Planar"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
430 case memPK: retval="Packed pixel"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
431 case mem256: retval="256"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
432 case memRGB: retval="Direct color RGB"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
433 case memYUV: retval="Direct color YUV"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
434 default: retval="Unknown"; break;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
435 }
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
436 return retval;
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
437 }
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
438
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
439 unsigned fillMultiBuffer( unsigned long vsize, unsigned nbuffs )
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
440 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
441 unsigned long screen_size, offset;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
442 unsigned total,i;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
443 screen_size = video_mode_info.XResolution*video_mode_info.YResolution*((video_mode_info.BitsPerPixel+7)/8);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
444 if(screen_size%64) screen_size=((screen_size/64)*64)+64;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
445 total = vsize / screen_size;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
446 if(verbose) printf("vo_vesa: Can use %u video buffers\n",total);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
447 i = 0;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
448 offset = 0;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
449 total = min(total,nbuffs);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
450 while(i < total) { multi_buff[i++] = offset; offset += screen_size; }
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
451 if(!i)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
452 printf("vo_vesa: Your have too small size of video memory for this mode:\n"
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
453 "vo_vesa: Requires: %08lX exists: %08lX\n", screen_size, vsize);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
454 return i;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
455 }
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
456
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
457 #define SUBDEV_NODGA 0x00000001UL
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
458 #define SUBDEV_FORCEDGA 0x00000002UL
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
459 uint32_t parseSubDevice(const char *sd)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
460 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
461 uint32_t flags;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
462 flags = 0;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
463 if(strcmp(sd,"nodga") == 0) { flags |= SUBDEV_NODGA; flags &= ~(SUBDEV_FORCEDGA); }
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
464 else
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
465 if(strcmp(sd,"dga") == 0) { flags &= ~(SUBDEV_NODGA); flags |= SUBDEV_FORCEDGA; }
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
466 else if(verbose) printf("vo_vesa: Unknown subcommand: %s\n", sd);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
467 return flags;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
468 }
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
469
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
470 /* fullscreen:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
471 * bit 0 (0x01) means fullscreen (-fs)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
472 * bit 1 (0x02) means mode switching (-vm)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
473 * bit 2 (0x04) enables software scaling (-zoom)
2335
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
474 * bit 3 (0x08) enables flipping (-flip) (NK: and for what?)
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
475 */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
476 static uint32_t
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
477 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
478 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
479 struct VbeInfoBlock vib;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
480 struct VesaModeInfoBlock vmib;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
481 size_t i,num_modes;
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
482 uint32_t w,h, sd_flags;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
483 unsigned short *mode_ptr,win_seg;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
484 unsigned bpp,best_x = UINT_MAX,best_y=UINT_MAX,best_mode_idx = UINT_MAX;
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
485 int err,fs_mode,yuv_fmt;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
486 image_width = width;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
487 image_height = height;
2336
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
488 fs_mode = 0;
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
489 rgb2rgb_fnc = NULL;
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
490 sd_flags = 0;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
491 if(vo_subdevice) sd_flags = parseSubDevice(vo_subdevice);
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
492 if(flags & 0x8)
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
493 {
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
494 printf("vo_vesa: switch -flip is not supported\n");
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
495 }
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
496 if(flags & 0x04) vesa_zoom = 1;
2336
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
497 if(flags & 0x01)
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
498 {
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
499 if(vesa_zoom) vesa_zoom = 2;
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
500 else fs_mode = 1;
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
501 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
502 if((err=vbeInit()) != VBE_OK) { PRINT_VBE_ERR("vbeInit",err); return -1; }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
503 memcpy(vib.VESASignature,"VBE2",4);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
504 if((err=vbeGetControllerInfo(&vib)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
505 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
506 PRINT_VBE_ERR("vbeGetControllerInfo",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
507 printf("vo_vesa: possible reason: No VBE2 BIOS found\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
508 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
509 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
510 /* Print general info here */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
511 printf("vo_vesa: Found VESA VBE BIOS Version %x.%x Revision: %x\n",
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
512 (int)(vib.VESAVersion >> 8) & 0xff,
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
513 (int)(vib.VESAVersion & 0xff),
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
514 (int)(vib.OemSoftwareRev & 0xffff));
2255
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
515 printf("vo_vesa: Video memory: %u Kb\n",vib.TotalMemory*64);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
516 printf("vo_vesa: VESA Capabilities: %s %s %s %s %s\n"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
517 ,vib.Capabilities & VBE_DAC_8BIT ? "8-bit DAC," : "6-bit DAC,"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
518 ,vib.Capabilities & VBE_NONVGA_CRTC ? "non-VGA CRTC,":"VGA CRTC,"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
519 ,vib.Capabilities & VBE_SNOWED_RAMDAC ? "snowed RAMDAC,":"normal RAMDAC,"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
520 ,vib.Capabilities & VBE_STEREOSCOPIC ? "stereoscopic,":"no stereoscopic,"
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
521 ,vib.Capabilities & VBE_STEREO_EVC ? "Stereo EVC":"no stereo");
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
522 printf("vo_vesa: !!! Below will be printed OEM info. !!!\n");
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
523 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
524 printf("vo_vesa: OEM info: %s\n",vib.OemStringPtr);
2255
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
525 printf("vo_vesa: OEM Revision: %x\n",vib.OemSoftwareRev);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
526 printf("vo_vesa: OEM vendor: %s\n",vib.OemVendorNamePtr);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
527 printf("vo_vesa: OEM Product Name: %s\n",vib.OemProductNamePtr);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
528 printf("vo_vesa: OEM Product Rev: %s\n",vib.OemProductRevPtr);
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
529 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
530 "vo_vesa: before booting PC since VESA BIOS initializes itself only during POST\n");
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
531 /* Find best mode here */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
532 num_modes = 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
533 mode_ptr = vib.VideoModePtr;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
534 while(*mode_ptr++ != 0xffff) num_modes++;
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
535 yuv_fmt = 0;
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
536 switch(format)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
537 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
538 case IMGFMT_BGR8:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
539 case IMGFMT_RGB8: bpp = 8; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
540 case IMGFMT_BGR15:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
541 case IMGFMT_RGB15: bpp = 15; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
542 case IMGFMT_YV12:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
543 case IMGFMT_I420:
2553
db0d4caf5e47 Cosmetic
nick
parents: 2537
diff changeset
544 case IMGFMT_IYUV: yuv_fmt = 1;
db0d4caf5e47 Cosmetic
nick
parents: 2537
diff changeset
545 default:
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
546 case IMGFMT_BGR16:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
547 case IMGFMT_RGB16: bpp = 16; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
548 case IMGFMT_BGR24:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
549 case IMGFMT_RGB24: bpp = 24; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
550 case IMGFMT_BGR32:
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
551 case IMGFMT_RGB32: bpp = 32; break;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
552 }
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
553 image_bpp = bpp;
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
554 if(vo_dbpp) bpp = vo_dbpp;
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
555 if(yuv_fmt) yuv2rgb_init(bpp, MODE_RGB);
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
556 switch(bpp)
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
557 {
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
558 case 15: draw_alpha_fnc = draw_alpha_15; break;
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
559 case 16: draw_alpha_fnc = draw_alpha_16; break;
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
560 case 24: draw_alpha_fnc = draw_alpha_24; break;
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
561 case 32: draw_alpha_fnc = draw_alpha_32; break;
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
562 default: draw_alpha_fnc = draw_alpha_null; break;
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
563 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
564 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
565 {
2304
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
566 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
567 printf("vo_vesa: Total modes found: %u\n",num_modes);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
568 mode_ptr = vib.VideoModePtr;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
569 printf("vo_vesa: Mode list:");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
570 for(i = 0;i < num_modes;i++)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
571 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
572 printf(" %04X",mode_ptr[i]);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
573 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
574 printf("\nvo_vesa: Modes in detail:\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
575 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
576 mode_ptr = vib.VideoModePtr;
2335
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
577 if(vesa_zoom)
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
578 {
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
579 image_width = d_width;
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
580 image_height= d_height;
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
581 }
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
582 if(vo_screenwidth) w = vo_screenwidth;
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
583 else w = max(image_width,width);
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
584 if(vo_screenheight) h = vo_screenheight;
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
585 else h = max(image_height,height);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
586 for(i=0;i < num_modes;i++)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
587 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
588 if((err=vbeGetModeInfo(mode_ptr[i],&vmib)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
589 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
590 PRINT_VBE_ERR("vbeGetModeInfo",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
591 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
592 }
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
593 if(vmib.XResolution >= w &&
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
594 vmib.YResolution >= h &&
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
595 (vmib.ModeAttributes & MOVIE_MODE) == MOVIE_MODE &&
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
596 vmib.BitsPerPixel == bpp &&
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
597 vmib.MemoryModel == memRGB)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
598 {
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
599 if(vmib.XResolution <= best_x &&
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
600 vmib.YResolution <= best_y)
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
601 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
602 best_x = vmib.XResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
603 best_y = vmib.YResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
604 best_mode_idx = i;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
605 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
606 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
607 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
608 {
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
609 printf("vo_vesa: Mode (%03u): mode=%04X %ux%u@%u attr=%04X\n"
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
610 "vo_vesa: #planes=%u model=%u(%s) #pages=%u\n"
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
611 "vo_vesa: winA=%X(attr=%u) winB=%X(attr=%u) winSize=%u winGran=%u\n"
2446
6fb598bd7ede Suppressing warnings
nick
parents: 2410
diff changeset
612 "vo_vesa: direct_color=%u DGA_phys_addr=%08lX\n"
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
613 ,i,mode_ptr[i],vmib.XResolution,vmib.YResolution,vmib.BitsPerPixel,vmib.ModeAttributes
2293
638cd37032da Better resolution detection
nick
parents: 2255
diff changeset
614 ,vmib.NumberOfPlanes,vmib.MemoryModel,model2str(vmib.MemoryModel),vmib.NumberOfImagePages
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
615 ,vmib.WinASegment,vmib.WinAAttributes,vmib.WinBSegment,vmib.WinBAttributes,vmib.WinSize,vmib.WinGranularity
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
616 ,vmib.DirectColorModeInfo,vmib.PhysBasePtr);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
617 if(vmib.MemoryModel == 6 || vmib.MemoryModel == 7)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
618 printf("vo_vesa: direct_color_info = %u:%u:%u:%u\n"
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
619 ,vmib.RedMaskSize,vmib.GreenMaskSize,vmib.BlueMaskSize,vmib.RsvdMaskSize);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
620 fflush(stdout);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
621 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
622 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
623 if(best_mode_idx != UINT_MAX)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
624 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
625 video_mode = vib.VideoModePtr[best_mode_idx];
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
626 fflush(stdout);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
627 if((err=vbeGetMode(&init_mode)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
628 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
629 PRINT_VBE_ERR("vbeGetMode",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
630 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
631 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
632 if(verbose) printf("vo_vesa: Initial video mode: %x\n",init_mode);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
633 if((err=vbeGetModeInfo(video_mode,&video_mode_info)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
634 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
635 PRINT_VBE_ERR("vbeGetModeInfo",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
636 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
637 }
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
638 printf("vo_vesa: Using VESA mode (%u) = %x [%ux%u@%u]\n"
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
639 ,best_mode_idx,video_mode,video_mode_info.XResolution
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
640 ,video_mode_info.YResolution,video_mode_info.BitsPerPixel);
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
641 if(sd_flags & SUBDEV_NODGA) video_mode_info.PhysBasePtr = 0;
2336
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
642 if( vesa_zoom || fs_mode )
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
643 {
2304
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
644 if( format==IMGFMT_YV12 )
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
645 {
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
646 /* software scale */
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
647 if(vesa_zoom > 1)
2335
26fdd1a317ad Again changed logic:
nick
parents: 2333
diff changeset
648 vesa_aspect(image_width,image_height,
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
649 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
650 &image_width,&image_height);
2336
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
651 else
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
652 if(fs_mode)
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
653 {
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
654 image_width = video_mode_info.XResolution;
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
655 image_height = video_mode_info.YResolution;
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
656 vesa_zoom = 1;
b2e0b131c1a7 Again changed logic:
nick
parents: 2335
diff changeset
657 }
2304
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
658 scale_xinc=(width << 16) / image_width - 2; /* needed for proper rounding */
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
659 scale_yinc=(height << 16) / image_height + 2;
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
660 SwScale_Init();
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
661 if(verbose) printf("vo_vesa: Using SCALE\n");
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
662 }
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
663 else
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
664 {
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
665 printf("vo_vesa: Can't apply zooming to non YV12 formats\n");
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
666 return -1;
0769b2fb3ce2 Fixed zooming bug
nick
parents: 2298
diff changeset
667 }
2298
674acdf0aa43 SwScaling support
nick
parents: 2296
diff changeset
668 }
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
669 if(format != IMGFMT_YV12 && image_bpp != video_mode_info.BitsPerPixel)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
670 {
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
671 if(image_bpp == 24 && video_mode_info.BitsPerPixel == 32) rgb2rgb_fnc = rgb24to32;
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
672 else
2505
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
673 if(image_bpp == 32 && video_mode_info.BitsPerPixel == 24) rgb2rgb_fnc = rgb32to24;
2aaa11d22f91 vo_vesa: more rgb2rgb support
nick
parents: 2504
diff changeset
674 else
2506
501752469c39 vo_vesa: more rgb2rgb support
nick
parents: 2505
diff changeset
675 if(image_bpp == 15 && video_mode_info.BitsPerPixel == 16) rgb2rgb_fnc = rgb15to16;
501752469c39 vo_vesa: more rgb2rgb support
nick
parents: 2505
diff changeset
676 else
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
677 {
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
678 printf("vo_vesa: Can't convert %u to %u\n",image_bpp,video_mode_info.BitsPerPixel);
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
679 return -1;
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
680 }
2554
db9d31c4bf4c print 'sw convertor usage' without verbosing
nick
parents: 2553
diff changeset
681 printf("vo_vesa: using %u-bpp to %u-bpp sw convertor\n",image_bpp,video_mode_info.BitsPerPixel);
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
682 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
683 if((video_mode_info.WinAAttributes & FRAME_MODE) == FRAME_MODE)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
684 win.idx = 0; /* frame A */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
685 else
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
686 if((video_mode_info.WinBAttributes & FRAME_MODE) == FRAME_MODE)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
687 win.idx = 1; /* frame B */
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
688 else win.idx = -2;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
689 /* Try use DGA instead */
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
690 if(video_mode_info.PhysBasePtr && vib.TotalMemory && (video_mode_info.ModeAttributes & MODE_ATTR_LINEAR))
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
691 {
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
692 void *lfb;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
693 unsigned long vsize;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
694 vsize = vib.TotalMemory*64*1024;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
695 lfb = vbeMapVideoBuffer(video_mode_info.PhysBasePtr,vsize);
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
696 if(lfb == NULL)
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
697 printf("vo_vesa: Can't use DGA. Force bank switching mode. :(\n");
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
698 else
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
699 {
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
700 video_base = win.ptr = lfb;
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
701 win.low = 0UL;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
702 win.high = vsize;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
703 win.idx = -1; /* HAS_DGA() is on */
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
704 video_mode |= VESA_MODE_USE_LINEAR;
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
705 printf("vo_vesa: Using DGA (physical resources: %08lXh, %08lXh)"
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
706 ,video_mode_info.PhysBasePtr
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
707 ,vsize);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
708 if(verbose) printf(" at %08lXh",(unsigned long)lfb);
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
709 printf("\n");
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
710 if(!(multi_size = fillMultiBuffer(vsize,2))) return -1;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
711 if(vo_doublebuffering && multi_size < 2)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
712 printf("vo_vesa: Can't use double buffering: not enough video memory\n");
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
713 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
714 }
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
715 if(win.idx == -2)
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
716 {
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
717 printf("vo_vesa: Can't find neither DGA nor relocatable window's frame.\n");
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
718 return -1;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
719 }
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
720 if(!HAS_DGA())
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
721 {
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
722 if(sd_flags & SUBDEV_FORCEDGA)
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
723 {
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
724 printf("vo_vesa: you've forced DGA. Exiting\n");
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
725 return -1;
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
726 }
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
727 if(!(win_seg = win.idx == 0 ? video_mode_info.WinASegment:video_mode_info.WinBSegment))
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
728 {
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
729 printf("vo_vesa: Can't find valid window address\n");
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
730 return -1;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
731 }
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
732 win.ptr = PhysToVirtSO(win_seg,0);
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
733 win.low = 0L;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
734 win.high= video_mode_info.WinSize*1024;
2649
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
735 printf("vo_vesa: Using bank switching mode (physical resources: %08lXh, %08lXh)\n"
d05fc32b7984 What's new:
nick
parents: 2637
diff changeset
736 ,(unsigned long)win.ptr,(unsigned long)win.high);
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
737 }
2329
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
738 if(video_mode_info.XResolution > image_width)
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
739 x_offset = (video_mode_info.XResolution - image_width) / 2;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
740 else x_offset = 0;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
741 if(video_mode_info.YResolution > image_height)
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
742 y_offset = (video_mode_info.YResolution - image_height) / 2;
fc52a0a1626f Support of: -x -y -bpp
nick
parents: 2328
diff changeset
743 else y_offset = 0;
2305
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
744 if(verbose)
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
745 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
746 ,image_width,image_height
82c17b134946 Fixed half-image bug and added computing of correct aspect during zooming
nick
parents: 2304
diff changeset
747 ,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
748 ,x_offset,y_offset);
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
749 if(HAS_DGA())
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
750 {
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
751 dga_buffer = win.ptr; /* Trickly ;) */
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
752 cpy_blk_fnc = __vbeCopyBlockFast;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
753 }
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
754 else
2610
65cb69a90a9f vo_vesa: DGA support
nick
parents: 2554
diff changeset
755 {
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
756 cpy_blk_fnc = __vbeCopyBlock;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
757 if(yuv_fmt || rgb2rgb_fnc)
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
758 {
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
759 #ifdef HAVE_MEMALIGN
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
760 if(!(dga_buffer = memalign(64,video_mode_info.XResolution*video_mode_info.YResolution*video_mode_info.BitsPerPixel)))
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
761 #else
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
762 if(!(dga_buffer = malloc(video_mode_info.XResolution*video_mode_info.YResolution*video_mode_info.BitsPerPixel)))
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
763 #endif
2610
65cb69a90a9f vo_vesa: DGA support
nick
parents: 2554
diff changeset
764 {
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
765 printf("vo_vesa: Can't allocate temporary buffer\n");
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
766 return -1;
2610
65cb69a90a9f vo_vesa: DGA support
nick
parents: 2554
diff changeset
767 }
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
768 if(verbose) printf("vo_vesa: dga emulator was allocated = %p\n",dga_buffer);
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
769 }
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
770 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
771 if((err=vbeSaveState(&init_state)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
772 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
773 PRINT_VBE_ERR("vbeSaveState",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
774 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
775 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
776 if((err=vbeSetMode(video_mode,NULL)) != VBE_OK)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
777 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
778 PRINT_VBE_ERR("vbeSetMode",err);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
779 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
780 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
781 /* Now we are in video mode!!!*/
2337
e6d8e9a54afa OSD support
nick
parents: 2336
diff changeset
782 /* Below 'return -1' is impossible */
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
783 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
784 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
785 printf("vo_vesa: Graphics mode was activated\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
786 fflush(stdout);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
787 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
788 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
789 else
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
790 {
2255
98c2bfc87825 More hints. Use save-restore mechanism
nick
parents: 2244
diff changeset
791 printf("vo_vesa: Can't find mode for: %ux%u@%u\n",width,height,bpp);
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
792 return -1;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
793 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
794 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
795 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
796 printf("vo_vesa: VESA initialization complete\n");
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
797 fflush(stdout);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
798 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
799 if(verbose)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
800 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
801 int x_res = video_mode_info.XResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
802 int y_res = video_mode_info.YResolution;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
803 int x, y;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
804
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
805 for (y = 0; y < y_res; ++y)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
806 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
807 for (x = 0; x < x_res; ++x)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
808 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
809 int r, g, b;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
810 if ((x & 16) ^ (y & 16))
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
811 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
812 r = x * 255 / x_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
813 g = y * 255 / y_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
814 b = 255 - x * 255 / x_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
815 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
816 else
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
817 {
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
818 r = 255 - x * 255 / x_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
819 g = y * 255 / y_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
820 b = 255 - y * 255 / y_res;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
821 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
822
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
823 __vbeSetPixel(x, y, r, g, b);
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
824 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
825 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
826 }
2633
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
827 /*if(1)*/
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
828 {
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
829 int x;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
830 x = video_mode_info.XCharSize ?
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
831 (video_mode_info.XResolution/video_mode_info.XCharSize)/2-strlen(title)/2 :
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
832 0;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
833 if(x < 0) x = 0;
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
834 vbeWriteString(x,0,7,title);
fe5ab8c660de Qualitative speedup decoding when video card supports DGA!
nick
parents: 2610
diff changeset
835 }
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
836 return 0;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
837 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
838
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
839 static const vo_info_t*
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
840 get_info(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
841 {
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
842 if(verbose > 2)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
843 printf("vo_vesa: get_info was called\n");
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
844 return &vo_info;
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
845 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
846
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
847 static void
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
848 uninit(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
849 {
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
850 if(verbose > 2)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
851 printf("vo_vesa: uninit was called\n");
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
852 vesa_term();
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
853 }
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
854
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
855
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
856 static void check_events(void)
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
857 {
2504
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
858 if(verbose > 2)
13e1c5ab417a vo_vesa: rgb2rgb support
nick
parents: 2446
diff changeset
859 printf("vo_vesa: check_events was called\n");
2244
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
860 /* Nothing to do */
4e464b527f5a vo_vesa support
nick
parents:
diff changeset
861 }