annotate libvo/vesa_lvo.c @ 3020:e5ebde3ebdd6

Minor fixes with the same results
author nick
date Tue, 20 Nov 2001 10:34:00 +0000
parents 64ce4a515a78
children c9f140f5a34e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
1 /*
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
2 * vesa_lvo.c
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
3 *
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
4 * Copyright (C) Nick Kurshev <nickols_k@mail.ru> - Oct 2001
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
5 *
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
6 * You can redistribute this file under terms and conditions
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
7 * of GNU General Public licence v2.
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
8 *
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
9 * This file contains vo_vesa interface to Linux Video Overlay.
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
10 * (Partly based on vo_mga.c from mplayer's package)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
11 */
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
12
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
13 #include <inttypes.h>
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
14 #include <sys/ioctl.h>
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
15 #include <unistd.h>
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
16 #include <fcntl.h>
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
17 #include <sys/mman.h>
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
18 #include <stdio.h>
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
19 #include <stdlib.h>
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
20 #include <string.h>
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
21
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
22 #include "vesa_lvo.h"
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
23 #include "img_format.h"
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
24 #include "../drivers/mga_vid.h" /* <- should be changed to "linux/'something'.h" */
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
25 #include "fastmemcpy.h"
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
26 #include "../mmx_defs.h"
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
27 #include "../postproc/rgb2rgb.h"
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
28
3020
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
29 #define WIDTH_ALIGN 16 /* should be 16 for radeons */
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
30 #define NUM_FRAMES 2
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
31 static uint8_t *frames[NUM_FRAMES];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
32
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
33 static int lvo_handler = -1;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
34 static uint8_t *lvo_mem = NULL;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
35 static uint8_t next_frame;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
36 static mga_vid_config_t mga_vid_config;
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
37 static unsigned image_bpp,image_height,image_width,src_format;
2952
91723d82b64f working draw_slice stuff
nick
parents: 2924
diff changeset
38 extern int verbose;
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
39
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
40 #define HAVE_RADEON 1
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
41
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
42 #define PIXEL_SIZE() ((video_mode_info.BitsPerPixel+7)/8)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
43 #define SCREEN_LINE_SIZE(pixel_size) (video_mode_info.XResolution*(pixel_size) )
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
44 #define IMAGE_LINE_SIZE(pixel_size) (image_width*(pixel_size))
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
45
2971
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
46 int vlvo_preinit(const char *drvname)
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
47 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
48 if(verbose > 1) printf("vesa_lvo: vlvo_preinit(%s) was called\n",drvname);
2971
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
49 lvo_handler = open(drvname,O_RDWR);
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
50 if(lvo_handler == -1)
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
51 {
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
52 printf("vesa_lvo: Couldn't open '%s'\n",drvname);
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
53 return -1;
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
54 }
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
55 return 0;
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
56 }
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
57
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
58 int vlvo_init(unsigned src_width,unsigned src_height,
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
59 unsigned x_org,unsigned y_org,unsigned dst_width,
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
60 unsigned dst_height,unsigned format,unsigned dest_bpp)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
61 {
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
62 size_t i,awidth;
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
63 if(verbose > 1) printf("vesa_lvo: vlvo_init() was called\n");
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
64 image_width = src_width;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
65 image_height = src_height;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
66 mga_vid_config.version=MGA_VID_VERSION;
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
67 src_format = mga_vid_config.format=format;
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
68 awidth = (src_width + (WIDTH_ALIGN-1)) & ~(WIDTH_ALIGN-1);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
69 switch(format){
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
70 #ifdef HAVE_RADEON
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
71 case IMGFMT_YV12:
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
72 case IMGFMT_I420:
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
73 case IMGFMT_IYUV:
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
74 image_bpp=16;
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
75 mga_vid_config.format = IMGFMT_YUY2;
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
76 mga_vid_config.frame_size = awidth*src_height*2;
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
77 break;
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
78 #else
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
79 case IMGFMT_YV12:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
80 case IMGFMT_I420:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
81 case IMGFMT_IYUV:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
82 image_bpp=16;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
83 mga_vid_config.frame_size = awidth*src_height+(awidth*src_height)/2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
84 break;
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
85 #endif
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
86 case IMGFMT_YUY2:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
87 case IMGFMT_UYVY:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
88 image_bpp=16;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
89 mga_vid_config.frame_size = awidth*src_height*2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
90 break;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
91 case IMGFMT_RGB15:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
92 case IMGFMT_BGR15:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
93 case IMGFMT_RGB16:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
94 case IMGFMT_BGR16:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
95 image_bpp=16;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
96 mga_vid_config.frame_size = awidth*src_height*2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
97 break;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
98 case IMGFMT_RGB24:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
99 case IMGFMT_BGR24:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
100 image_bpp=24;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
101 mga_vid_config.frame_size = awidth*src_height*3;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
102 break;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
103 case IMGFMT_RGB32:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
104 case IMGFMT_BGR32:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
105 image_bpp=32;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
106 mga_vid_config.frame_size = awidth*src_height*4;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
107 break;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
108 default:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
109 printf("vesa_lvo: invalid output format %s(%0X)\n",vo_format_name(format),format);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
110 return -1;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
111 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
112 mga_vid_config.colkey_on=0;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
113 mga_vid_config.src_width = src_width;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
114 mga_vid_config.src_height= src_height;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
115 mga_vid_config.dest_width = dst_width;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
116 mga_vid_config.dest_height= dst_height;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
117 mga_vid_config.x_org=x_org;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
118 mga_vid_config.y_org=y_org;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
119 mga_vid_config.num_frames=NUM_FRAMES;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
120 if (ioctl(lvo_handler,MGA_VID_CONFIG,&mga_vid_config))
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
121 {
2971
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
122 perror("vesa_lvo: Error in mga_vid_config ioctl()");
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
123 printf("vesa_lvo: Your fb_vid driver version is incompatible with this MPlayer version!\n");
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
124 return -1;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
125 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
126 ioctl(lvo_handler,MGA_VID_ON,0);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
127
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
128 frames[0] = (char*)mmap(0,mga_vid_config.frame_size*mga_vid_config.num_frames,PROT_WRITE,MAP_SHARED,lvo_handler,0);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
129 for(i=1;i<NUM_FRAMES;i++)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
130 frames[i] = frames[i-1] + mga_vid_config.frame_size;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
131 next_frame = 0;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
132 lvo_mem = frames[next_frame];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
133
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
134 /*clear the buffer*/
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
135 memset(frames[0],0x80,mga_vid_config.frame_size*mga_vid_config.num_frames);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
136 return 0;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
137 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
138
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
139 void vlvo_term( void )
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
140 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
141 if(verbose > 1) printf("vesa_lvo: vlvo_term() was called\n");
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
142 ioctl( lvo_handler,MGA_VID_OFF,0 );
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
143 munmap(frames[0],mga_vid_config.frame_size*mga_vid_config.num_frames);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
144 if(lvo_handler != -1) close(lvo_handler);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
145 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
146
3020
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
147 uint32_t vlvo_draw_slice_mga(uint8_t *image[], int stride[], int w,int h,int x,int y)
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
148 {
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
149 uint8_t *src;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
150 uint8_t *dest;
3020
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
151 uint32_t bespitch,bespitch2;
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
152 int i;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
153
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
154 bespitch = (mga_vid_config.src_width + (WIDTH_ALIGN-1)) & ~(WIDTH_ALIGN-1);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
155 bespitch2 = bespitch/2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
156
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
157 dest = lvo_mem + bespitch * y + x;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
158 src = image[0];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
159 for(i=0;i<h;i++){
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
160 memcpy(dest,src,w);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
161 src+=stride[0];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
162 dest += bespitch;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
163 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
164
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
165 w/=2;h/=2;x/=2;y/=2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
166
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
167 dest = lvo_mem + bespitch*mga_vid_config.src_height + bespitch2 * y + x;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
168 src = image[1];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
169 for(i=0;i<h;i++){
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
170 memcpy(dest,src,w);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
171 src+=stride[1];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
172 dest += bespitch2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
173 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
174
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
175 dest = lvo_mem + bespitch*mga_vid_config.src_height
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
176 + bespitch*mga_vid_config.src_height / 4
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
177 + bespitch2 * y + x;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
178 src = image[2];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
179 for(i=0;i<h;i++){
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
180 memcpy(dest,src,w);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
181 src+=stride[2];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
182 dest += bespitch2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
183 }
3020
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
184 return 0;
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
185 }
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
186
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
187 uint32_t vlvo_draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y)
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
188 {
2952
91723d82b64f working draw_slice stuff
nick
parents: 2924
diff changeset
189 uint8_t *dst;
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
190 uint8_t bytpp;
3020
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
191 if(verbose > 1) printf("vesa_lvo: vlvo_draw_slice() was called\n");
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
192 bytpp = (image_bpp+7)/8;
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
193 dst = lvo_mem + (image_width * y + x)*bytpp;
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
194 #ifdef HAVE_RADEON
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
195 if(src_format == IMGFMT_YV12)
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
196 yv12toyuy2(image[0],image[1],image[2],dst
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
197 ,w,h,stride[0],stride[1],w*2);
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
198 else
3019
64ce4a515a78 Bad attempt of YV12 direct support
nick
parents: 3017
diff changeset
199 #else
64ce4a515a78 Bad attempt of YV12 direct support
nick
parents: 3017
diff changeset
200 if(src_format == IMGFMT_YV12)
3020
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
201 vlvo_draw_slice_mga(image,stride,w,h,x,y);
3019
64ce4a515a78 Bad attempt of YV12 direct support
nick
parents: 3017
diff changeset
202 else
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
203 #endif
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
204 memcpy(dst,image[0],mga_vid_config.frame_size);
2924
8350b8c25c02 Xv stuff
nick
parents: 2869
diff changeset
205 return 0;
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
206 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
207
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
208 uint32_t vlvo_draw_frame(uint8_t *image[])
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
209 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
210 /* Note it's very strange but sometime for YUY2 draw_frame is called */
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
211 memcpy(lvo_mem,image[0],mga_vid_config.frame_size);
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
212 if(verbose > 1) printf("vesa_lvo: vlvo_draw_frame() was called\n");
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
213 return 0;
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
214 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
215
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
216 void vlvo_flip_page(void)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
217 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
218 if(verbose > 1) printf("vesa_lvo: vlvo_flip_page() was called\n");
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
219 ioctl(lvo_handler,MGA_VID_FSEL,&next_frame);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
220 next_frame=(next_frame+1)%mga_vid_config.num_frames;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
221 lvo_mem=frames[next_frame];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
222 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
223
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
224 void vlvo_draw_osd(void)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
225 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
226 if(verbose > 1) printf("vesa_lvo: vlvo_draw_osd() was called\n");
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
227 /* TODO: hw support */
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
228 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
229
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
230 uint32_t vlvo_query_info(uint32_t format)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
231 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
232 if(verbose > 1) printf("vesa_lvo: query_format was called: %x (%s)\n",format,vo_format_name(format));
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
233 return 1;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
234 }