2 * Copyright (C) 2002 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of MPlayer.
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.
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.
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.
35 #include "img_format.h"
39 #define SUB_PIXEL_BITS 8
40 #define SUB_PIXELS (1<<SUB_PIXEL_BITS)
43 //===========================================================================//
47 int32_t coeff
[1<<SUB_PIXEL_BITS
][4];
54 /***************************************************************************/
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
;
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]);
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];
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];
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);
82 priv
->pv
[x
+ y
*W
][0]= u
;
83 priv
->pv
[x
+ y
*W
][1]= v
;
88 static double getCoeff(double d
){
94 // Equation is from VirtualDub
96 coeff
= (1.0 - (A
+3.0)*d
*d
+ (A
+2.0)*d
*d
*d
);
98 coeff
= (-4.0*A
+ 8.0*A
*d
- 5.0*A
*d
*d
+ A
*d
*d
*d
);
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
){
110 vf
->priv
->pvStride
= width
;
111 vf
->priv
->pv
= (void*)memalign(8, width
*height
*2*sizeof(int32_t));
112 initPv(vf
->priv
, width
, height
);
114 for(i
=0; i
<SUB_PIXELS
; i
++){
115 double d
= i
/(double)SUB_PIXELS
;
120 temp
[j
]= getCoeff(j
- d
- 1);
126 vf
->priv
->coeff
[i
][j
]= (int)floor((1<<COEFF_BITS
)*temp
[j
]/sum
+ 0.5);
129 return vf_next_config(vf
,width
,height
,d_width
,d_height
,flags
,outfmt
);
132 static void uninit(struct vf_instance
* vf
){
133 if(!vf
->priv
) return;
135 if(vf
->priv
->pv
) free(vf
->priv
->pv
);
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
){
144 struct vf_priv_s priv
= *privParam
;
148 int u
, v
, subU
, subV
, sum
, sx
, sy
;
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
;
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];
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
]);
179 for(dy
=0; dy
<4; dy
++){
182 else if(iy
>=h
) iy
=h
-1;
183 for(dx
=0; dx
<4; dx
++){
186 else if(ix
>=w
) ix
=w
-1;
188 sum
+= priv
.coeff
[subU
][dx
]*priv
.coeff
[subV
][dy
]
189 *src
[ ix
+ iy
*srcStride
];
193 sum
= (sum
+ (1<<(COEFF_BITS
*2-1)) ) >> (COEFF_BITS
*2);
198 dst
[ x
+ y
*dstStride
]= sum
;
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
){
206 struct vf_priv_s priv
= *privParam
;
210 int u
, v
, subU
, subV
, sum
, sx
, sy
, index
, subUI
, subVI
;
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
;
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);
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
;
237 if((unsigned)v
< (unsigned)(h
- 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
;
248 index
= u
+ v
*srcStride
;
256 dst
[ x
+ y
*dstStride
]= sum
;
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
;
265 mp_image_t
*dmpi
=vf_get_image(vf
->next
,mpi
->imgfmt
,
266 MP_IMGTYPE_TEMP
, MP_IMGFLAG_ACCEPT_STRIDE
,
269 assert(mpi
->flags
&MP_IMGFLAG_PLANAR
);
272 resampleCubic(dmpi
->planes
[0], mpi
->planes
[0], mpi
->w
,mpi
->h
, dmpi
->stride
[0], mpi
->stride
[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
);
279 resampleLinear(dmpi
->planes
[0], mpi
->planes
[0], mpi
->w
,mpi
->h
, dmpi
->stride
[0], mpi
->stride
[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
);
287 return vf_next_put_image(vf
,dmpi
, pts
);
290 //===========================================================================//
292 static int query_format(struct vf_instance
* vf
, unsigned int fmt
){
302 return vf_next_query_format(vf
, fmt
);
307 static int open(vf_instance_t
*vf
, char* args
){
311 vf
->put_image
=put_image
;
312 // vf->get_image=get_image;
313 vf
->query_format
=query_format
;
315 vf
->priv
=malloc(sizeof(struct vf_priv_s
));
316 memset(vf
->priv
, 0, sizeof(struct vf_priv_s
));
318 if(args
==NULL
) return 0;
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],
334 const vf_info_t vf_info_perspective
= {
335 "perspective correcture",
337 "Michael Niedermayer",
343 //===========================================================================//