annotate libvo/vesa_lvo.c @ 3202:e9b18714e3dc

Minor optimization
author nick
date Thu, 29 Nov 2001 18:00:57 +0000
parents c9f140f5a34e
children 1d2b2885bb8c
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
3202
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
27 #include "video_out.h"
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
28
3165
c9f140f5a34e Direct i420 support for Radeons
nick
parents: 3020
diff changeset
29 #define WIDTH_ALIGN 32 /* should be 16 for rage:422 and 32 for rage:420 */
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
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
40 #define PIXEL_SIZE() ((video_mode_info.BitsPerPixel+7)/8)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
41 #define SCREEN_LINE_SIZE(pixel_size) (video_mode_info.XResolution*(pixel_size) )
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
42 #define IMAGE_LINE_SIZE(pixel_size) (image_width*(pixel_size))
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
43
3202
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
44 extern vo_functions_t video_out_vesa;
e9b18714e3dc Minor optimization
nick
parents: 3165
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 }
3202
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
55 /* we are able to tune up this stuff depend on fourcc format */
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
56 video_out_vesa.draw_slice=vlvo_draw_slice;
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
57 video_out_vesa.draw_frame=vlvo_draw_frame;
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
58 video_out_vesa.flip_page=vlvo_flip_page;
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
59 video_out_vesa.draw_osd=vlvo_draw_osd;
2971
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
60 return 0;
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
61 }
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
62
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
63 int vlvo_init(unsigned src_width,unsigned src_height,
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
64 unsigned x_org,unsigned y_org,unsigned dst_width,
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
65 unsigned dst_height,unsigned format,unsigned dest_bpp)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
66 {
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
67 size_t i,awidth;
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
68 if(verbose > 1) printf("vesa_lvo: vlvo_init() was called\n");
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
69 image_width = src_width;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
70 image_height = src_height;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
71 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
72 src_format = mga_vid_config.format=format;
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
73 awidth = (src_width + (WIDTH_ALIGN-1)) & ~(WIDTH_ALIGN-1);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
74 switch(format){
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
75 case IMGFMT_YV12:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
76 case IMGFMT_I420:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
77 case IMGFMT_IYUV:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
78 image_bpp=16;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
79 mga_vid_config.frame_size = awidth*src_height+(awidth*src_height)/2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
80 break;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
81 case IMGFMT_YUY2:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
82 case IMGFMT_UYVY:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
83 image_bpp=16;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
84 mga_vid_config.frame_size = awidth*src_height*2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
85 break;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
86 case IMGFMT_RGB15:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
87 case IMGFMT_BGR15:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
88 case IMGFMT_RGB16:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
89 case IMGFMT_BGR16:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
90 image_bpp=16;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
91 mga_vid_config.frame_size = awidth*src_height*2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
92 break;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
93 case IMGFMT_RGB24:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
94 case IMGFMT_BGR24:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
95 image_bpp=24;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
96 mga_vid_config.frame_size = awidth*src_height*3;
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_RGB32:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
99 case IMGFMT_BGR32:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
100 image_bpp=32;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
101 mga_vid_config.frame_size = awidth*src_height*4;
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 default:
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
104 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
105 return -1;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
106 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
107 mga_vid_config.colkey_on=0;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
108 mga_vid_config.src_width = src_width;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
109 mga_vid_config.src_height= src_height;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
110 mga_vid_config.dest_width = dst_width;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
111 mga_vid_config.dest_height= dst_height;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
112 mga_vid_config.x_org=x_org;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
113 mga_vid_config.y_org=y_org;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
114 mga_vid_config.num_frames=NUM_FRAMES;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
115 if (ioctl(lvo_handler,MGA_VID_CONFIG,&mga_vid_config))
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
116 {
2971
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
117 perror("vesa_lvo: Error in mga_vid_config ioctl()");
56faed773768 Added preinit of lvo stuff
nick
parents: 2964
diff changeset
118 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
119 return -1;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
120 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
121 ioctl(lvo_handler,MGA_VID_ON,0);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
122
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
123 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
124 for(i=1;i<NUM_FRAMES;i++)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
125 frames[i] = frames[i-1] + mga_vid_config.frame_size;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
126 next_frame = 0;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
127 lvo_mem = frames[next_frame];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
128
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
129 /*clear the buffer*/
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
130 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
131 return 0;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
132 }
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 void vlvo_term( void )
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
135 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
136 if(verbose > 1) printf("vesa_lvo: vlvo_term() was called\n");
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
137 ioctl( lvo_handler,MGA_VID_OFF,0 );
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
138 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
139 if(lvo_handler != -1) close(lvo_handler);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
140 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
141
3165
c9f140f5a34e Direct i420 support for Radeons
nick
parents: 3020
diff changeset
142 uint32_t vlvo_draw_slice_420(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
143 {
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
144 uint8_t *src;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
145 uint8_t *dest;
3020
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
146 uint32_t bespitch,bespitch2;
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
147 int i;
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 bespitch = (mga_vid_config.src_width + (WIDTH_ALIGN-1)) & ~(WIDTH_ALIGN-1);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
150 bespitch2 = bespitch/2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
151
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
152 dest = lvo_mem + bespitch * y + x;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
153 src = image[0];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
154 for(i=0;i<h;i++){
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
155 memcpy(dest,src,w);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
156 src+=stride[0];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
157 dest += bespitch;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
158 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
159
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
160 w/=2;h/=2;x/=2;y/=2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
161
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
162 dest = lvo_mem + bespitch*mga_vid_config.src_height + bespitch2 * y + x;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
163 src = image[1];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
164 for(i=0;i<h;i++){
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
165 memcpy(dest,src,w);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
166 src+=stride[1];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
167 dest += bespitch2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
168 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
169
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
170 dest = lvo_mem + bespitch*mga_vid_config.src_height
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
171 + bespitch*mga_vid_config.src_height / 4
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
172 + bespitch2 * y + x;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
173 src = image[2];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
174 for(i=0;i<h;i++){
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
175 memcpy(dest,src,w);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
176 src+=stride[2];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
177 dest += bespitch2;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
178 }
3020
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
179 return 0;
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
180 }
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
181
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
182 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
183 {
e5ebde3ebdd6 Minor fixes with the same results
nick
parents: 3019
diff changeset
184 if(verbose > 1) printf("vesa_lvo: vlvo_draw_slice() was called\n");
3165
c9f140f5a34e Direct i420 support for Radeons
nick
parents: 3020
diff changeset
185 if(src_format == IMGFMT_YV12 || src_format == IMGFMT_I420 || src_format == IMGFMT_IYUV)
3202
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
186 vlvo_draw_slice_420(image,stride,w,h,x,y);
2974
49199909c939 Ugly YV12 support on Radeon BES. (Only radeon_vid currently work with this stuff :( Sorry!)
nick
parents: 2971
diff changeset
187 else
3202
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
188 {
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
189 uint8_t *dst;
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
190 uint8_t bytpp;
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
191 bytpp = (image_bpp+7)/8;
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
192 dst = lvo_mem + (image_width * y + x)*bytpp;
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
193 /* vlvo_draw_slice_422(image,stride,w,h,x,y); just for speed */
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
194 memcpy(dst,image[0],mga_vid_config.frame_size);
e9b18714e3dc Minor optimization
nick
parents: 3165
diff changeset
195 }
2924
8350b8c25c02 Xv stuff
nick
parents: 2869
diff changeset
196 return 0;
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
197 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
198
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
199 uint32_t vlvo_draw_frame(uint8_t *image[])
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
200 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
201 /* Note it's very strange but sometime for YUY2 draw_frame is called */
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
202 memcpy(lvo_mem,image[0],mga_vid_config.frame_size);
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
203 if(verbose > 1) printf("vesa_lvo: vlvo_draw_frame() was called\n");
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
204 return 0;
2869
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
205 }
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 void vlvo_flip_page(void)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
208 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
209 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
210 ioctl(lvo_handler,MGA_VID_FSEL,&next_frame);
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
211 next_frame=(next_frame+1)%mga_vid_config.num_frames;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
212 lvo_mem=frames[next_frame];
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
213 }
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 void vlvo_draw_osd(void)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
216 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
217 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
218 /* TODO: hw support */
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
219 }
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
220
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
221 uint32_t vlvo_query_info(uint32_t format)
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
222 {
3017
fb792e58aac5 Verbosing and minor optimization
nick
parents: 2974
diff changeset
223 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
224 return 1;
107d9e9e5bd1 New video output technique Linux Video Overlay:
nick
parents:
diff changeset
225 }