annotate libmpcodecs/vf_yvu9.c @ 22997:fd0fda0c6555

skip MMX code in rgb24tobgr24 if the size of the input is smaller than the size of the units the MMX code processes
author ivo
date Wed, 18 Apr 2007 09:27:59 +0000
parents 497ebe3ecc2b
children a124f3abc1ec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6485
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
1 #include <stdio.h>
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
2 #include <stdlib.h>
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
3 #include <string.h>
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
4 #include <inttypes.h>
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
5
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 9934
diff changeset
6 #include "config.h"
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 9934
diff changeset
7 #include "mp_msg.h"
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17906
diff changeset
8 #include "help_mp.h"
6485
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
9
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
10 #include "img_format.h"
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
11 #include "mp_image.h"
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
12 #include "vf.h"
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
13
17012
6ff3379a0862 Unify include path handling, -I.. is in CFLAGS.
diego
parents: 9934
diff changeset
14 #include "libvo/fastmemcpy.h"
6485
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
15
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
16 //===========================================================================//
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
17
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
18 static int config(struct vf_instance_s* vf,
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
19 int width, int height, int d_width, int d_height,
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
20 unsigned int flags, unsigned int outfmt){
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
21
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
22 if(vf_next_query_format(vf,IMGFMT_YV12)<=0){
18004
bcd805923554 Part2 of several printf2mp_msg changes in patch from Otvos Attila oattila AT chello DOT hu with LOTS of modifications by me
reynaldo
parents: 17906
diff changeset
23 mp_msg(MSGT_VFILTER, MSGL_WARN, MSGTR_MPCODECS_WarnNextFilterDoesntSupport, "YVU9");
6485
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
24 return 0;
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
25 }
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
26
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
27 return vf_next_config(vf,width,height,d_width,d_height,flags,IMGFMT_YV12);
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
28 }
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
29
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17012
diff changeset
30 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){
6485
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
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
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
33
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
34 // hope we'll get DR buffer:
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
35 dmpi=vf_get_image(vf->next,IMGFMT_YV12,
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
36 MP_IMGTYPE_TEMP, 0/*MP_IMGFLAG_ACCEPT_STRIDE*/,
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
37 mpi->w, mpi->h);
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
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
9934
89da8ec89558 vf_clone_mpi_attributes()
michael
parents: 9593
diff changeset
58 vf_clone_mpi_attributes(dmpi, mpi);
6485
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
59
17906
20aca9baf5d8 passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents: 17012
diff changeset
60 return vf_next_put_image(vf,dmpi, pts);
6485
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
61 }
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
62
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
63 //===========================================================================//
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
64
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
65 static int query_format(struct vf_instance_s* vf, unsigned int fmt){
6524
05cd2cf758e4 if09 support
alex
parents: 6504
diff changeset
66 if (fmt == IMGFMT_YVU9 || fmt == IMGFMT_IF09)
6485
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
67 return vf_next_query_format(vf,IMGFMT_YV12) & (~VFCAP_CSP_SUPPORTED_BY_HW);
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
68 return 0;
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
69 }
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
70
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
71 static int open(vf_instance_t *vf, char* args){
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
72 vf->config=config;
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
73 vf->put_image=put_image;
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
74 vf->query_format=query_format;
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
75 return 1;
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
76 }
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
77
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
78 vf_info_t vf_info_yvu9 = {
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
79 "fast YVU9->YV12 conversion",
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
80 "yvu9",
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
81 "alex",
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
82 "",
9593
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 7368
diff changeset
83 open,
e9a2af584986 Add the new -vf option wich is the same as vop in reverse order.
albeu
parents: 7368
diff changeset
84 NULL
6485
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
85 };
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
86
52563321dc78 yvu9toyv12 converter
alex
parents:
diff changeset
87 //===========================================================================//