Mercurial > mplayer.hg
annotate libmpcodecs/vf_yvu9.c @ 9046:13b7ad16f278
This patch should fix the display problem with 4bpp and 8bpp modes.
The problem was that the new drawing method assumes a linear
framebuffer, which is not available in those modes. This can be worked
around by using the old drawing method, which is what this patch does.
The old method can be forced, by using the "old" driver option.
This patch also enables linear addressing, since it improves write speed
to video memory considerably. The mentioned problem:
"it is not compatable with vga_draw* for some cards"
Is a bug in svgalib, which I think should be fixed in recent svgalib
versions. If someone sees this problem, please report to svgalib
maintainer (that's me).
patch by Matan Ziv-Av. matan@svgalib.org
author | arpi |
---|---|
date | Mon, 20 Jan 2003 21:33:11 +0000 |
parents | a894e99c1e51 |
children | e9a2af584986 |
rev | line source |
---|---|
6485 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #include <inttypes.h> | |
5 | |
6 #include "../config.h" | |
7 #include "../mp_msg.h" | |
8 | |
9 #include "img_format.h" | |
10 #include "mp_image.h" | |
11 #include "vf.h" | |
12 | |
13 #include "../libvo/fastmemcpy.h" | |
14 #include "../postproc/rgb2rgb.h" | |
15 | |
16 //===========================================================================// | |
17 | |
18 static int config(struct vf_instance_s* vf, | |
19 int width, int height, int d_width, int d_height, | |
20 unsigned int flags, unsigned int outfmt){ | |
21 | |
22 if(vf_next_query_format(vf,IMGFMT_YV12)<=0){ | |
23 printf("yv12 not supported by next filter/vo :(\n"); | |
24 return 0; | |
25 } | |
26 | |
27 return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_YV12); | |
28 } | |
29 | |
7368 | 30 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){ |
6485 | 31 mp_image_t *dmpi; |
6504
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
32 int y,w,h; |
6485 | 33 |
34 // hope we'll get DR buffer: | |
35 dmpi=vf_get_image(vf->next,IMGFMT_YV12, | |
36 MP_IMGTYPE_TEMP, 0/*MP_IMGFLAG_ACCEPT_STRIDE*/, | |
37 mpi->w, mpi->h); | |
38 | |
6504
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
39 for(y=0;y<mpi->h;y++) |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
40 memcpy(dmpi->planes[0]+dmpi->stride[0]*y, |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
41 mpi->planes[0]+mpi->stride[0]*y, |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
42 mpi->w); |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
43 |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
44 w=mpi->w/4; h=mpi->h/2; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
45 for(y=0;y<h;y++){ |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
46 unsigned char* s=mpi->planes[1]+mpi->stride[1]*(y>>1); |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
47 unsigned char* d=dmpi->planes[1]+dmpi->stride[1]*y; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
48 int x; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
49 for(x=0;x<w;x++) d[2*x]=d[2*x+1]=s[x]; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
50 } |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
51 for(y=0;y<h;y++){ |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
52 unsigned char* s=mpi->planes[2]+mpi->stride[2]*(y>>1); |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
53 unsigned char* d=dmpi->planes[2]+dmpi->stride[2]*y; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
54 int x; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
55 for(x=0;x<w;x++) d[2*x]=d[2*x+1]=s[x]; |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
56 } |
11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
arpi
parents:
6485
diff
changeset
|
57 |
6485 | 58 dmpi->qscale=mpi->qscale; |
59 dmpi->qstride=mpi->qstride; | |
60 | |
7368 | 61 return vf_next_put_image(vf,dmpi); |
6485 | 62 } |
63 | |
64 //===========================================================================// | |
65 | |
66 static int query_format(struct vf_instance_s* vf, unsigned int fmt){ | |
6524 | 67 if (fmt == IMGFMT_YVU9 || fmt == IMGFMT_IF09) |
6485 | 68 return vf_next_query_format(vf,IMGFMT_YV12) & (~VFCAP_CSP_SUPPORTED_BY_HW); |
69 return 0; | |
70 } | |
71 | |
72 static int open(vf_instance_t *vf, char* args){ | |
73 vf->config=config; | |
74 vf->put_image=put_image; | |
75 vf->query_format=query_format; | |
76 return 1; | |
77 } | |
78 | |
79 vf_info_t vf_info_yvu9 = { | |
80 "fast YVU9->YV12 conversion", | |
81 "yvu9", | |
82 "alex", | |
83 "", | |
84 open | |
85 }; | |
86 | |
87 //===========================================================================// |