ffmpeg / libavfilter / libmpcodecs / vf_perspective.c @ e4852fb3
History | View | Annotate | Download (11.1 KB)
1 |
/*
|
---|---|
2 |
* Copyright (C) 2002 Michael Niedermayer <michaelni@gmx.at>
|
3 |
*
|
4 |
* This file is part of MPlayer.
|
5 |
*
|
6 |
* MPlayer is free software; you can redistribute it and/or modify
|
7 |
* it under the terms of the GNU General Public License as published by
|
8 |
* the Free Software Foundation; either version 2 of the License, or
|
9 |
* (at your option) any later version.
|
10 |
*
|
11 |
* MPlayer is distributed in the hope that it will be useful,
|
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14 |
* GNU General Public License for more details.
|
15 |
*
|
16 |
* You should have received a copy of the GNU General Public License along
|
17 |
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
18 |
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
19 |
*/
|
20 |
|
21 |
#include <stdio.h> |
22 |
#include <stdlib.h> |
23 |
#include <string.h> |
24 |
#include <inttypes.h> |
25 |
#include <assert.h> |
26 |
#include <math.h> |
27 |
|
28 |
#include "config.h" |
29 |
#include "mp_msg.h" |
30 |
|
31 |
#if HAVE_MALLOC_H
|
32 |
#include <malloc.h> |
33 |
#endif
|
34 |
|
35 |
#include "img_format.h" |
36 |
#include "mp_image.h" |
37 |
#include "vf.h" |
38 |
|
39 |
#define SUB_PIXEL_BITS 8 |
40 |
#define SUB_PIXELS (1<<SUB_PIXEL_BITS) |
41 |
#define COEFF_BITS 11 |
42 |
|
43 |
//===========================================================================//
|
44 |
|
45 |
struct vf_priv_s {
|
46 |
double ref[4][2]; |
47 |
int32_t coeff[1<<SUB_PIXEL_BITS][4]; |
48 |
int32_t (*pv)[2];
|
49 |
int pvStride;
|
50 |
int cubic;
|
51 |
}; |
52 |
|
53 |
|
54 |
/***************************************************************************/
|
55 |
|
56 |
static void initPv(struct vf_priv_s *priv, int W, int H){ |
57 |
double a,b,c,d,e,f,g,h,D;
|
58 |
double (*ref)[2]= priv->ref; |
59 |
int x,y;
|
60 |
|
61 |
g= ( (ref[0][0] - ref[1][0] - ref[2][0] + ref[3][0])*(ref[2][1] - ref[3][1]) |
62 |
- (ref[0][1] - ref[1][1] - ref[2][1] + ref[3][1])*(ref[2][0] - ref[3][0]))*H; |
63 |
h= ( (ref[0][1] - ref[1][1] - ref[2][1] + ref[3][1])*(ref[1][0] - ref[3][0]) |
64 |
- (ref[0][0] - ref[1][0] - ref[2][0] + ref[3][0])*(ref[1][1] - ref[3][1]))*W; |
65 |
D= (ref[1][0] - ref[3][0])*(ref[2][1] - ref[3][1]) |
66 |
- (ref[2][0] - ref[3][0])*(ref[1][1] - ref[3][1]); |
67 |
|
68 |
a= D*(ref[1][0] - ref[0][0])*H + g*ref[1][0]; |
69 |
b= D*(ref[2][0] - ref[0][0])*W + h*ref[2][0]; |
70 |
c= D*ref[0][0]*W*H; |
71 |
d= D*(ref[1][1] - ref[0][1])*H + g*ref[1][1]; |
72 |
e= D*(ref[2][1] - ref[0][1])*W + h*ref[2][1]; |
73 |
f= D*ref[0][1]*W*H; |
74 |
|
75 |
for(y=0; y<H; y++){ |
76 |
for(x=0; x<W; x++){ |
77 |
int u, v;
|
78 |
|
79 |
u= (int)floor( SUB_PIXELS*(a*x + b*y + c)/(g*x + h*y + D*W*H) + 0.5); |
80 |
v= (int)floor( SUB_PIXELS*(d*x + e*y + f)/(g*x + h*y + D*W*H) + 0.5); |
81 |
|
82 |
priv->pv[x + y*W][0]= u;
|
83 |
priv->pv[x + y*W][1]= v;
|
84 |
} |
85 |
} |
86 |
} |
87 |
|
88 |
static double getCoeff(double d){ |
89 |
double A= -0.60; |
90 |
double coeff;
|
91 |
|
92 |
d= fabs(d); |
93 |
|
94 |
// Equation is from VirtualDub
|
95 |
if(d<1.0) |
96 |
coeff = (1.0 - (A+3.0)*d*d + (A+2.0)*d*d*d); |
97 |
else if(d<2.0) |
98 |
coeff = (-4.0*A + 8.0*A*d - 5.0*A*d*d + A*d*d*d); |
99 |
else
|
100 |
coeff=0.0; |
101 |
|
102 |
return coeff;
|
103 |
} |
104 |
|
105 |
static int config(struct vf_instance *vf, |
106 |
int width, int height, int d_width, int d_height, |
107 |
unsigned int flags, unsigned int outfmt){ |
108 |
int i, j;
|
109 |
|
110 |
vf->priv->pvStride= width; |
111 |
vf->priv->pv= (void*)memalign(8, width*height*2*sizeof(int32_t)); |
112 |
initPv(vf->priv, width, height); |
113 |
|
114 |
for(i=0; i<SUB_PIXELS; i++){ |
115 |
double d= i/(double)SUB_PIXELS; |
116 |
double temp[4]; |
117 |
double sum=0; |
118 |
|
119 |
for(j=0; j<4; j++) |
120 |
temp[j]= getCoeff(j - d - 1);
|
121 |
|
122 |
for(j=0; j<4; j++) |
123 |
sum+= temp[j]; |
124 |
|
125 |
for(j=0; j<4; j++) |
126 |
vf->priv->coeff[i][j]= (int)floor((1<<COEFF_BITS)*temp[j]/sum + 0.5); |
127 |
} |
128 |
|
129 |
return vf_next_config(vf,width,height,d_width,d_height,flags,outfmt);
|
130 |
} |
131 |
|
132 |
static void uninit(struct vf_instance *vf){ |
133 |
if(!vf->priv) return; |
134 |
|
135 |
free(vf->priv->pv); |
136 |
vf->priv->pv= NULL;
|
137 |
|
138 |
free(vf->priv); |
139 |
vf->priv=NULL;
|
140 |
} |
141 |
|
142 |
static inline void resampleCubic(uint8_t *dst, uint8_t *src, int w, int h, int dstStride, int srcStride, struct vf_priv_s *privParam, int xShift, int yShift){ |
143 |
int x, y;
|
144 |
struct vf_priv_s priv= *privParam;
|
145 |
|
146 |
for(y=0; y<h; y++){ |
147 |
for(x=0; x<w; x++){ |
148 |
int u, v, subU, subV, sum, sx, sy;
|
149 |
|
150 |
sx= x << xShift; |
151 |
sy= y << yShift; |
152 |
u= priv.pv[sx + sy*priv.pvStride][0]>>xShift;
|
153 |
v= priv.pv[sx + sy*priv.pvStride][1]>>yShift;
|
154 |
subU= u & (SUB_PIXELS-1);
|
155 |
subV= v & (SUB_PIXELS-1);
|
156 |
u >>= SUB_PIXEL_BITS; |
157 |
v >>= SUB_PIXEL_BITS; |
158 |
|
159 |
if(u>0 && v>0 && u<w-2 && v<h-2){ |
160 |
const int index= u + v*srcStride; |
161 |
const int a= priv.coeff[subU][0]; |
162 |
const int b= priv.coeff[subU][1]; |
163 |
const int c= priv.coeff[subU][2]; |
164 |
const int d= priv.coeff[subU][3]; |
165 |
|
166 |
sum= |
167 |
priv.coeff[subV][0]*( a*src[index - 1 - srcStride] + b*src[index - 0 - srcStride] |
168 |
+ c*src[index + 1 - srcStride] + d*src[index + 2 - srcStride]) |
169 |
+priv.coeff[subV][1]*( a*src[index - 1 ] + b*src[index - 0 ] |
170 |
+ c*src[index + 1 ] + d*src[index + 2 ]) |
171 |
+priv.coeff[subV][2]*( a*src[index - 1 + srcStride] + b*src[index - 0 + srcStride] |
172 |
+ c*src[index + 1 + srcStride] + d*src[index + 2 + srcStride]) |
173 |
+priv.coeff[subV][3]*( a*src[index - 1+2*srcStride] + b*src[index - 0+2*srcStride] |
174 |
+ c*src[index + 1+2*srcStride] + d*src[index + 2+2*srcStride]); |
175 |
}else{
|
176 |
int dx, dy;
|
177 |
sum=0;
|
178 |
|
179 |
for(dy=0; dy<4; dy++){ |
180 |
int iy= v + dy - 1; |
181 |
if (iy< 0) iy=0; |
182 |
else if(iy>=h) iy=h-1; |
183 |
for(dx=0; dx<4; dx++){ |
184 |
int ix= u + dx - 1; |
185 |
if (ix< 0) ix=0; |
186 |
else if(ix>=w) ix=w-1; |
187 |
|
188 |
sum+= priv.coeff[subU][dx]*priv.coeff[subV][dy] |
189 |
*src[ ix + iy*srcStride]; |
190 |
} |
191 |
} |
192 |
} |
193 |
sum= (sum + (1<<(COEFF_BITS*2-1)) ) >> (COEFF_BITS*2); |
194 |
if(sum&~255){ |
195 |
if(sum<0) sum=0; |
196 |
else sum=255; |
197 |
} |
198 |
dst[ x + y*dstStride]= sum; |
199 |
} |
200 |
} |
201 |
} |
202 |
|
203 |
static inline void resampleLinear(uint8_t *dst, uint8_t *src, int w, int h, int dstStride, int srcStride, |
204 |
struct vf_priv_s *privParam, int xShift, int yShift){ |
205 |
int x, y;
|
206 |
struct vf_priv_s priv= *privParam;
|
207 |
|
208 |
for(y=0; y<h; y++){ |
209 |
for(x=0; x<w; x++){ |
210 |
int u, v, subU, subV, sum, sx, sy, index, subUI, subVI;
|
211 |
|
212 |
sx= x << xShift; |
213 |
sy= y << yShift; |
214 |
u= priv.pv[sx + sy*priv.pvStride][0]>>xShift;
|
215 |
v= priv.pv[sx + sy*priv.pvStride][1]>>yShift;
|
216 |
subU= u & (SUB_PIXELS-1);
|
217 |
subV= v & (SUB_PIXELS-1);
|
218 |
u >>= SUB_PIXEL_BITS; |
219 |
v >>= SUB_PIXEL_BITS; |
220 |
index= u + v*srcStride; |
221 |
subUI= SUB_PIXELS - subU; |
222 |
subVI= SUB_PIXELS - subV; |
223 |
|
224 |
if((unsigned)u < (unsigned)(w - 1)){ |
225 |
if((unsigned)v < (unsigned)(h - 1)){ |
226 |
sum= subVI*(subUI*src[index ] + subU*src[index +1])
|
227 |
+subV *(subUI*src[index+srcStride] + subU*src[index+srcStride+1]);
|
228 |
sum= (sum + (1<<(SUB_PIXEL_BITS*2-1)) ) >> (SUB_PIXEL_BITS*2); |
229 |
}else{
|
230 |
if(v<0) v= 0; |
231 |
else v= h-1; |
232 |
index= u + v*srcStride; |
233 |
sum= subUI*src[index] + subU*src[index+1];
|
234 |
sum= (sum + (1<<(SUB_PIXEL_BITS-1)) ) >> SUB_PIXEL_BITS; |
235 |
} |
236 |
}else{
|
237 |
if((unsigned)v < (unsigned)(h - 1)){ |
238 |
if(u<0) u= 0; |
239 |
else u= w-1; |
240 |
index= u + v*srcStride; |
241 |
sum= subVI*src[index] + subV*src[index+srcStride]; |
242 |
sum= (sum + (1<<(SUB_PIXEL_BITS-1)) ) >> SUB_PIXEL_BITS; |
243 |
}else{
|
244 |
if(u<0) u= 0; |
245 |
else u= w-1; |
246 |
if(v<0) v= 0; |
247 |
else v= h-1; |
248 |
index= u + v*srcStride; |
249 |
sum= src[index]; |
250 |
} |
251 |
} |
252 |
if(sum&~255){ |
253 |
if(sum<0) sum=0; |
254 |
else sum=255; |
255 |
} |
256 |
dst[ x + y*dstStride]= sum; |
257 |
} |
258 |
} |
259 |
} |
260 |
|
261 |
static int put_image(struct vf_instance *vf, mp_image_t *mpi, double pts){ |
262 |
int cw= mpi->w >> mpi->chroma_x_shift;
|
263 |
int ch= mpi->h >> mpi->chroma_y_shift;
|
264 |
|
265 |
mp_image_t *dmpi=vf_get_image(vf->next,mpi->imgfmt, |
266 |
MP_IMGTYPE_TEMP, MP_IMGFLAG_ACCEPT_STRIDE, |
267 |
mpi->w,mpi->h); |
268 |
|
269 |
assert(mpi->flags&MP_IMGFLAG_PLANAR); |
270 |
|
271 |
if(vf->priv->cubic){
|
272 |
resampleCubic(dmpi->planes[0], mpi->planes[0], mpi->w,mpi->h, dmpi->stride[0], mpi->stride[0], |
273 |
vf->priv, 0, 0); |
274 |
resampleCubic(dmpi->planes[1], mpi->planes[1], cw , ch , dmpi->stride[1], mpi->stride[1], |
275 |
vf->priv, mpi->chroma_x_shift, mpi->chroma_y_shift); |
276 |
resampleCubic(dmpi->planes[2], mpi->planes[2], cw , ch , dmpi->stride[2], mpi->stride[2], |
277 |
vf->priv, mpi->chroma_x_shift, mpi->chroma_y_shift); |
278 |
}else{
|
279 |
resampleLinear(dmpi->planes[0], mpi->planes[0], mpi->w,mpi->h, dmpi->stride[0], mpi->stride[0], |
280 |
vf->priv, 0, 0); |
281 |
resampleLinear(dmpi->planes[1], mpi->planes[1], cw , ch , dmpi->stride[1], mpi->stride[1], |
282 |
vf->priv, mpi->chroma_x_shift, mpi->chroma_y_shift); |
283 |
resampleLinear(dmpi->planes[2], mpi->planes[2], cw , ch , dmpi->stride[2], mpi->stride[2], |
284 |
vf->priv, mpi->chroma_x_shift, mpi->chroma_y_shift); |
285 |
} |
286 |
|
287 |
return vf_next_put_image(vf,dmpi, pts);
|
288 |
} |
289 |
|
290 |
//===========================================================================//
|
291 |
|
292 |
static int query_format(struct vf_instance *vf, unsigned int fmt){ |
293 |
switch(fmt)
|
294 |
{ |
295 |
case IMGFMT_YV12:
|
296 |
case IMGFMT_I420:
|
297 |
case IMGFMT_IYUV:
|
298 |
case IMGFMT_YVU9:
|
299 |
case IMGFMT_444P:
|
300 |
case IMGFMT_422P:
|
301 |
case IMGFMT_411P:
|
302 |
return vf_next_query_format(vf, fmt);
|
303 |
} |
304 |
return 0; |
305 |
} |
306 |
|
307 |
static int vf_open(vf_instance_t *vf, char *args){ |
308 |
int e;
|
309 |
|
310 |
vf->config=config; |
311 |
vf->put_image=put_image; |
312 |
// vf->get_image=get_image;
|
313 |
vf->query_format=query_format; |
314 |
vf->uninit=uninit; |
315 |
vf->priv=malloc(sizeof(struct vf_priv_s)); |
316 |
memset(vf->priv, 0, sizeof(struct vf_priv_s)); |
317 |
|
318 |
if(args==NULL) return 0; |
319 |
|
320 |
e=sscanf(args, "%lf:%lf:%lf:%lf:%lf:%lf:%lf:%lf:%d",
|
321 |
&vf->priv->ref[0][0], &vf->priv->ref[0][1], |
322 |
&vf->priv->ref[1][0], &vf->priv->ref[1][1], |
323 |
&vf->priv->ref[2][0], &vf->priv->ref[2][1], |
324 |
&vf->priv->ref[3][0], &vf->priv->ref[3][1], |
325 |
&vf->priv->cubic |
326 |
); |
327 |
|
328 |
if(e!=9) |
329 |
return 0; |
330 |
|
331 |
return 1; |
332 |
} |
333 |
|
334 |
const vf_info_t vf_info_perspective = {
|
335 |
"perspective correcture",
|
336 |
"perspective",
|
337 |
"Michael Niedermayer",
|
338 |
"",
|
339 |
vf_open, |
340 |
NULL
|
341 |
}; |
342 |
|
343 |
//===========================================================================//
|