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