Mercurial > mplayer.hg
annotate libmpcodecs/vf_cropdetect.c @ 27319:09cf111f68b8
Revert to previous dependency checking behavior.
Take included header files into account when generating dependency files.
This has problems when header files are removed or renamed, but does not
silently miscompile files.
author | diego |
---|---|
date | Sat, 26 Jul 2008 18:36:48 +0000 |
parents | 00fff9a3b735 |
children | 0f1b5b68af32 |
rev | line source |
---|---|
6061 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 #include <string.h> | |
4 #include <inttypes.h> | |
5 | |
17012 | 6 #include "config.h" |
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" |
6061 | 9 |
10 #include "img_format.h" | |
11 #include "mp_image.h" | |
12 #include "vf.h" | |
13 | |
14 struct vf_priv_s { | |
15 int x1,y1,x2,y2; | |
16 int limit; | |
13205
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
17 int round; |
6118 | 18 int fno; |
6061 | 19 }; |
20 | |
21 static int checkline(unsigned char* src,int stride,int len,int bpp){ | |
22 int total=0; | |
23 int div=len; | |
24 switch(bpp){ | |
25 case 1: | |
26 while(--len>=0){ | |
27 total+=src[0]; src+=stride; | |
28 } | |
29 break; | |
30 case 3: | |
31 case 4: | |
32 while(--len>=0){ | |
33 total+=src[0]+src[1]+src[2]; src+=stride; | |
34 } | |
35 div*=3; | |
36 break; | |
37 } | |
38 total/=div; | |
39 // printf("total=%d\n",total); | |
40 return total; | |
41 } | |
42 | |
43 //===========================================================================// | |
44 | |
45 static int config(struct vf_instance_s* vf, | |
46 int width, int height, int d_width, int d_height, | |
47 unsigned int flags, unsigned int outfmt){ | |
14588
36b24b57ab53
x1 and y1 give last used position, must be < width/height
reimar
parents:
13233
diff
changeset
|
48 vf->priv->x1=width - 1; |
36b24b57ab53
x1 and y1 give last used position, must be < width/height
reimar
parents:
13233
diff
changeset
|
49 vf->priv->y1=height - 1; |
6061 | 50 vf->priv->x2=0; |
51 vf->priv->y2=0; | |
6118 | 52 vf->priv->fno=0; |
6061 | 53 return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt); |
54 } | |
55 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
56 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts){ |
6061 | 57 mp_image_t *dmpi; |
58 int bpp=mpi->bpp/8; | |
13205
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
59 int w,h,x,y,shrink_by; |
6061 | 60 |
61 // hope we'll get DR buffer: | |
62 dmpi=vf_get_image(vf->next,mpi->imgfmt, | |
63 MP_IMGTYPE_EXPORT, 0, | |
64 mpi->w, mpi->h); | |
65 | |
66 dmpi->planes[0]=mpi->planes[0]; | |
67 dmpi->planes[1]=mpi->planes[1]; | |
68 dmpi->planes[2]=mpi->planes[2]; | |
69 dmpi->stride[0]=mpi->stride[0]; | |
70 dmpi->stride[1]=mpi->stride[1]; | |
71 dmpi->stride[2]=mpi->stride[2]; | |
72 dmpi->width=mpi->width; | |
73 dmpi->height=mpi->height; | |
74 | |
6118 | 75 if(++vf->priv->fno>2){ // ignore first 2 frames - they may be empty |
6061 | 76 |
77 for(y=0;y<vf->priv->y1;y++){ | |
78 if(checkline(mpi->planes[0]+mpi->stride[0]*y,bpp,mpi->w,bpp)>vf->priv->limit){ | |
79 vf->priv->y1=y; | |
80 break; | |
81 } | |
82 } | |
83 | |
84 for(y=mpi->h-1;y>vf->priv->y2;y--){ | |
85 if(checkline(mpi->planes[0]+mpi->stride[0]*y,bpp,mpi->w,bpp)>vf->priv->limit){ | |
86 vf->priv->y2=y; | |
87 break; | |
88 } | |
89 } | |
90 | |
91 for(y=0;y<vf->priv->x1;y++){ | |
92 if(checkline(mpi->planes[0]+bpp*y,mpi->stride[0],mpi->h,bpp)>vf->priv->limit){ | |
93 vf->priv->x1=y; | |
94 break; | |
95 } | |
96 } | |
97 | |
98 for(y=mpi->w-1;y>vf->priv->x2;y--){ | |
99 if(checkline(mpi->planes[0]+bpp*y,mpi->stride[0],mpi->h,bpp)>vf->priv->limit){ | |
100 vf->priv->x2=y; | |
101 break; | |
102 } | |
103 } | |
104 | |
13205
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
105 // round x and y (up), important for yuv colorspaces |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
106 // make sure they stay rounded! |
6061 | 107 x=(vf->priv->x1+1)&(~1); |
108 y=(vf->priv->y1+1)&(~1); | |
109 | |
14588
36b24b57ab53
x1 and y1 give last used position, must be < width/height
reimar
parents:
13233
diff
changeset
|
110 w = vf->priv->x2 - x + 1; |
36b24b57ab53
x1 and y1 give last used position, must be < width/height
reimar
parents:
13233
diff
changeset
|
111 h = vf->priv->y2 - y + 1; |
13205
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
112 |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
113 // w and h must be divisible by 2 as well because of yuv |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
114 // colorspace problems. |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
115 if (vf->priv->round <= 1) |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
116 vf->priv->round = 16; |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
117 if (vf->priv->round % 2) |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
118 vf->priv->round *= 2; |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
119 |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
120 shrink_by = w % vf->priv->round; |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
121 w -= shrink_by; |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
122 x += (shrink_by / 2 + 1) & ~1; |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
123 |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
124 shrink_by = h % vf->priv->round; |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
125 h -= shrink_by; |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
126 y += (shrink_by / 2 + 1) & ~1; |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
127 |
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
|
128 mp_msg(MSGT_VFILTER, MSGL_INFO, MSGTR_MPCODECS_CropArea, |
6061 | 129 vf->priv->x1,vf->priv->x2, |
130 vf->priv->y1,vf->priv->y2, | |
13205
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
131 w,h,x,y); |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
132 |
6061 | 133 |
6118 | 134 } |
135 | |
17906
20aca9baf5d8
passing pts through the filter layer (lets see if pts or cola comes out at the end)
michael
parents:
17012
diff
changeset
|
136 return vf_next_put_image(vf,dmpi, pts); |
6061 | 137 } |
138 | |
16107
8d4a3c9001de
restrict to YV12 since the default limit does not work well for anything else.
reimar
parents:
14588
diff
changeset
|
139 static int query_format(struct vf_instance_s* vf, unsigned int fmt) { |
8d4a3c9001de
restrict to YV12 since the default limit does not work well for anything else.
reimar
parents:
14588
diff
changeset
|
140 switch(fmt) { |
8d4a3c9001de
restrict to YV12 since the default limit does not work well for anything else.
reimar
parents:
14588
diff
changeset
|
141 // the default limit value works only right with YV12 right now. |
8d4a3c9001de
restrict to YV12 since the default limit does not work well for anything else.
reimar
parents:
14588
diff
changeset
|
142 case IMGFMT_YV12: |
8d4a3c9001de
restrict to YV12 since the default limit does not work well for anything else.
reimar
parents:
14588
diff
changeset
|
143 return vf_next_query_format(vf, fmt); |
8d4a3c9001de
restrict to YV12 since the default limit does not work well for anything else.
reimar
parents:
14588
diff
changeset
|
144 } |
8d4a3c9001de
restrict to YV12 since the default limit does not work well for anything else.
reimar
parents:
14588
diff
changeset
|
145 return 0; |
8d4a3c9001de
restrict to YV12 since the default limit does not work well for anything else.
reimar
parents:
14588
diff
changeset
|
146 } |
6061 | 147 //===========================================================================// |
148 | |
149 static int open(vf_instance_t *vf, char* args){ | |
150 vf->config=config; | |
151 vf->put_image=put_image; | |
16107
8d4a3c9001de
restrict to YV12 since the default limit does not work well for anything else.
reimar
parents:
14588
diff
changeset
|
152 vf->query_format=query_format; |
6061 | 153 vf->priv=malloc(sizeof(struct vf_priv_s)); |
154 vf->priv->limit=24; // should be option | |
13233 | 155 vf->priv->round = 0; |
13205
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
156 if(args) sscanf(args, "%d:%d", |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
157 &vf->priv->limit, |
08bb01a9905a
Adds rounding parameter for width and height values returned.
reimar
parents:
11261
diff
changeset
|
158 &vf->priv->round); |
6061 | 159 return 1; |
160 } | |
161 | |
25221 | 162 const vf_info_t vf_info_cropdetect = { |
6061 | 163 "autodetect crop size", |
164 "cropdetect", | |
165 "A'rpi", | |
166 "", | |
9593
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
7472
diff
changeset
|
167 open, |
e9a2af584986
Add the new -vf option wich is the same as vop in reverse order.
albeu
parents:
7472
diff
changeset
|
168 NULL |
6061 | 169 }; |
170 | |
171 //===========================================================================// |