[svn] / branches / dev-api-4 / xvidcore / src / motion / motion_comp.c Repository:
ViewVC logotype

Annotation of /branches/dev-api-4/xvidcore/src/motion/motion_comp.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1125 - (view) (download)

1 : edgomez 1054 /*****************************************************************************
2 :     *
3 :     * XVID MPEG-4 VIDEO CODEC
4 :     * - Motion Compensation related code -
5 :     *
6 :     * Copyright(C) 2002 Peter Ross <pross@xvid.org>
7 :     * 2003 Christoph Lampert <gruel@web.de>
8 :     *
9 :     * This program is free software ; you can redistribute it and/or modify
10 :     * it under the terms of the GNU General Public License as published by
11 :     * the Free Software Foundation ; either version 2 of the License, or
12 :     * (at your option) any later version.
13 :     *
14 :     * This program is distributed in the hope that it will be useful,
15 :     * but WITHOUT ANY WARRANTY ; without even the implied warranty of
16 :     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 :     * GNU General Public License for more details.
18 :     *
19 :     * You should have received a copy of the GNU General Public License
20 :     * along with this program ; if not, write to the Free Software
21 :     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 :     *
23 : Isibaar 1125 * $Id: motion_comp.c,v 1.18.2.8 2003-08-22 15:52:35 Isibaar Exp $
24 : edgomez 1054 *
25 :     ****************************************************************************/
26 : suxen_drol 118
27 : edgomez 851 #include <stdio.h>
28 :    
29 : Isibaar 3 #include "../encoder.h"
30 :     #include "../utils/mbfunctions.h"
31 :     #include "../image/interpolate8x8.h"
32 : Isibaar 1125 #include "../image/qpel.h"
33 : edgomez 851 #include "../image/reduced.h"
34 : Isibaar 3 #include "../utils/timer.h"
35 : suxen_drol 118 #include "motion.h"
36 : Isibaar 3
37 : edgomez 851 #ifndef RSHIFT
38 :     #define RSHIFT(a,b) ((a) > 0 ? ((a) + (1<<((b)-1)))>>(b) : ((a) + (1<<((b)-1))-1)>>(b))
39 :     #endif
40 :    
41 :     /* assume b>0 */
42 :     #ifndef RDIV
43 :     #define RDIV(a,b) (((a)>0 ? (a) + ((b)>>1) : (a) - ((b)>>1))/(b))
44 :     #endif
45 :    
46 :    
47 : chl 1077 /* This is borrowed from bitstream.c until we find a common solution */
48 : edgomez 851
49 :     static uint32_t __inline
50 :     log2bin(uint32_t value)
51 :     {
52 :     /* Changed by Chenm001 */
53 :     #if !defined(_MSC_VER)
54 :     int n = 0;
55 :    
56 :     while (value) {
57 :     value >>= 1;
58 :     n++;
59 :     }
60 :     return n;
61 :     #else
62 :     __asm {
63 : syskin 935 bsr eax, value
64 : edgomez 851 inc eax
65 :     }
66 :     #endif
67 :     }
68 :    
69 :    
70 : edgomez 195 static __inline void
71 : edgomez 851 compensate16x16_interpolate(int16_t * const dct_codes,
72 :     uint8_t * const cur,
73 :     const uint8_t * const ref,
74 :     const uint8_t * const refh,
75 :     const uint8_t * const refv,
76 :     const uint8_t * const refhv,
77 :     uint8_t * const tmp,
78 :     uint32_t x,
79 :     uint32_t y,
80 :     const int32_t dx,
81 :     const int32_t dy,
82 :     const int32_t stride,
83 :     const int quarterpel,
84 :     const int reduced_resolution,
85 :     const int32_t rounding)
86 : Isibaar 3 {
87 : edgomez 851 const uint8_t * ptr;
88 : Isibaar 3
89 : edgomez 851 if (!reduced_resolution) {
90 : Isibaar 3
91 : edgomez 851 if(quarterpel) {
92 :     if ((dx&3) | (dy&3)) {
93 : Isibaar 1125 #if defined(ARCH_IS_IA32) /* new_interpolate is only faster on x86 (MMX) machines */
94 :     new_interpolate16x16_quarterpel(tmp - y * stride - x,
95 :     (uint8_t *) ref, tmp + 32,
96 :     tmp + 64, tmp + 96, x, y, dx, dy, stride, rounding);
97 :     #else
98 : edgomez 851 interpolate16x16_quarterpel(tmp - y * stride - x,
99 :     (uint8_t *) ref, tmp + 32,
100 :     tmp + 64, tmp + 96, x, y, dx, dy, stride, rounding);
101 : Isibaar 1125 #endif
102 : edgomez 851 ptr = tmp;
103 : edgomez 1053 } else ptr = ref + (y + dy/4)*stride + x + dx/4; /* fullpixel position */
104 : Isibaar 3
105 : edgomez 851 } else ptr = get_ref(ref, refh, refv, refhv, x, y, 1, dx, dy, stride);
106 :    
107 : edgomez 195 transfer_8to16sub(dct_codes, cur + y * stride + x,
108 : syskin 935 ptr, stride);
109 : edgomez 851 transfer_8to16sub(dct_codes+64, cur + y * stride + x + 8,
110 : syskin 935 ptr + 8, stride);
111 : edgomez 851 transfer_8to16sub(dct_codes+128, cur + y * stride + x + 8*stride,
112 : syskin 935 ptr + 8*stride, stride);
113 : edgomez 851 transfer_8to16sub(dct_codes+192, cur + y * stride + x + 8*stride+8,
114 : syskin 935 ptr + 8*stride + 8, stride);
115 : Isibaar 3
116 : edgomez 1053 } else { /* reduced_resolution */
117 : syskin 935
118 : edgomez 851 x *= 2; y *= 2;
119 :    
120 :     ptr = get_ref(ref, refh, refv, refhv, x, y, 1, dx, dy, stride);
121 : syskin 935
122 : edgomez 851 filter_18x18_to_8x8(dct_codes, cur+y*stride + x, stride);
123 :     filter_diff_18x18_to_8x8(dct_codes, ptr, stride);
124 :    
125 :     filter_18x18_to_8x8(dct_codes+64, cur+y*stride + x + 16, stride);
126 :     filter_diff_18x18_to_8x8(dct_codes+64, ptr + 16, stride);
127 :    
128 :     filter_18x18_to_8x8(dct_codes+128, cur+(y+16)*stride + x, stride);
129 :     filter_diff_18x18_to_8x8(dct_codes+128, ptr + 16*stride, stride);
130 :    
131 :     filter_18x18_to_8x8(dct_codes+192, cur+(y+16)*stride + x + 16, stride);
132 :     filter_diff_18x18_to_8x8(dct_codes+192, ptr + 16*stride + 16, stride);
133 :    
134 :     transfer32x32_copy(cur + y*stride + x, ptr, stride);
135 : edgomez 195 }
136 : Isibaar 3 }
137 :    
138 : edgomez 851 static __inline void
139 :     compensate8x8_interpolate( int16_t * const dct_codes,
140 :     uint8_t * const cur,
141 :     const uint8_t * const ref,
142 :     const uint8_t * const refh,
143 :     const uint8_t * const refv,
144 :     const uint8_t * const refhv,
145 :     uint8_t * const tmp,
146 :     uint32_t x,
147 :     uint32_t y,
148 :     const int32_t dx,
149 :     const int32_t dy,
150 :     const int32_t stride,
151 :     const int32_t quarterpel,
152 :     const int reduced_resolution,
153 :     const int32_t rounding)
154 :     {
155 :     const uint8_t * ptr;
156 : Isibaar 3
157 : edgomez 851 if (!reduced_resolution) {
158 : Isibaar 3
159 : edgomez 851 if(quarterpel) {
160 :     if ((dx&3) | (dy&3)) {
161 : Isibaar 1125 #if defined(ARCH_IS_IA32) /* new_interpolate is only faster on x86 (MMX) machines */
162 :     new_interpolate8x8_quarterpel(tmp - y*stride - x,
163 :     (uint8_t *) ref, tmp + 32,
164 :     tmp + 64, tmp + 96, x, y, dx, dy, stride, rounding);
165 :     #else
166 : edgomez 851 interpolate8x8_quarterpel(tmp - y*stride - x,
167 :     (uint8_t *) ref, tmp + 32,
168 :     tmp + 64, tmp + 96, x, y, dx, dy, stride, rounding);
169 : Isibaar 1125 #endif
170 : edgomez 851 ptr = tmp;
171 : edgomez 1053 } else ptr = ref + (y + dy/4)*stride + x + dx/4; /* fullpixel position */
172 : edgomez 851 } else ptr = get_ref(ref, refh, refv, refhv, x, y, 1, dx, dy, stride);
173 :    
174 :     transfer_8to16sub(dct_codes, cur + y * stride + x, ptr, stride);
175 :    
176 : edgomez 1053 } else { /* reduced_resolution */
177 : edgomez 851
178 :     x *= 2; y *= 2;
179 :    
180 :     ptr = get_ref(ref, refh, refv, refhv, x, y, 1, dx, dy, stride);
181 :    
182 :     filter_18x18_to_8x8(dct_codes, cur+y*stride + x, stride);
183 :     filter_diff_18x18_to_8x8(dct_codes, ptr, stride);
184 : syskin 935
185 : edgomez 851 transfer16x16_copy(cur + y*stride + x, ptr, stride);
186 :     }
187 :     }
188 :    
189 :     /* XXX: slow, inelegant... */
190 :     static void
191 :     interpolate18x18_switch(uint8_t * const cur,
192 :     const uint8_t * const refn,
193 :     const uint32_t x,
194 :     const uint32_t y,
195 :     const int32_t dx,
196 :     const int dy,
197 :     const int32_t stride,
198 :     const int32_t rounding)
199 :     {
200 :     interpolate8x8_switch(cur, refn, x-1, y-1, dx, dy, stride, rounding);
201 :     interpolate8x8_switch(cur, refn, x+7, y-1, dx, dy, stride, rounding);
202 :     interpolate8x8_switch(cur, refn, x+9, y-1, dx, dy, stride, rounding);
203 :    
204 :     interpolate8x8_switch(cur, refn, x-1, y+7, dx, dy, stride, rounding);
205 :     interpolate8x8_switch(cur, refn, x+7, y+7, dx, dy, stride, rounding);
206 :     interpolate8x8_switch(cur, refn, x+9, y+7, dx, dy, stride, rounding);
207 :    
208 :     interpolate8x8_switch(cur, refn, x-1, y+9, dx, dy, stride, rounding);
209 :     interpolate8x8_switch(cur, refn, x+7, y+9, dx, dy, stride, rounding);
210 :     interpolate8x8_switch(cur, refn, x+9, y+9, dx, dy, stride, rounding);
211 :     }
212 :    
213 :     static void
214 :     CompensateChroma( int dx, int dy,
215 :     const int i, const int j,
216 :     IMAGE * const Cur,
217 :     const IMAGE * const Ref,
218 :     uint8_t * const temp,
219 :     int16_t * const coeff,
220 :     const int32_t stride,
221 :     const int rounding,
222 :     const int rrv)
223 :     { /* uv-block-based compensation */
224 :    
225 :     if (!rrv) {
226 :     transfer_8to16sub(coeff, Cur->u + 8 * j * stride + 8 * i,
227 : syskin 935 interpolate8x8_switch2(temp, Ref->u, 8 * i, 8 * j,
228 : edgomez 851 dx, dy, stride, rounding),
229 :     stride);
230 :     transfer_8to16sub(coeff + 64, Cur->v + 8 * j * stride + 8 * i,
231 : syskin 935 interpolate8x8_switch2(temp, Ref->v, 8 * i, 8 * j,
232 : edgomez 851 dx, dy, stride, rounding),
233 :     stride);
234 :     } else {
235 :     uint8_t * current, * reference;
236 :    
237 :     current = Cur->u + 16*j*stride + 16*i;
238 :     reference = temp - 16*j*stride - 16*i;
239 :     interpolate18x18_switch(reference, Ref->u, 16*i, 16*j, dx, dy, stride, rounding);
240 :     filter_18x18_to_8x8(coeff, current, stride);
241 :     filter_diff_18x18_to_8x8(coeff, temp, stride);
242 :     transfer16x16_copy(current, temp, stride);
243 :    
244 :     current = Cur->v + 16*j*stride + 16*i;
245 :     interpolate18x18_switch(reference, Ref->v, 16*i, 16*j, dx, dy, stride, rounding);
246 :     filter_18x18_to_8x8(coeff + 64, current, stride);
247 :     filter_diff_18x18_to_8x8(coeff + 64, temp, stride);
248 :     transfer16x16_copy(current, temp, stride);
249 :     }
250 :     }
251 :    
252 : edgomez 195 void
253 :     MBMotionCompensation(MACROBLOCK * const mb,
254 : syskin 935 const uint32_t i,
255 :     const uint32_t j,
256 :     const IMAGE * const ref,
257 :     const IMAGE * const refh,
258 :     const IMAGE * const refv,
259 :     const IMAGE * const refhv,
260 :     const IMAGE * const refGMC,
261 :     IMAGE * const cur,
262 :     int16_t * dct_codes,
263 :     const uint32_t width,
264 :     const uint32_t height,
265 :     const uint32_t edged_width,
266 :     const int32_t quarterpel,
267 :     const int reduced_resolution,
268 :     const int32_t rounding)
269 : Isibaar 3 {
270 : edgomez 851 int32_t dx;
271 :     int32_t dy;
272 : Isibaar 3
273 : edgomez 851 uint8_t * const tmp = refv->u;
274 : Isibaar 3
275 : edgomez 851 if ( (!reduced_resolution) && (mb->mode == MODE_NOT_CODED) ) { /* quick copy for early SKIP */
276 :     /* early SKIP is only activated in P-VOPs, not in S-VOPs, so mcsel can never be 1 */
277 : Isibaar 3
278 : edgomez 851 transfer16x16_copy(cur->y + 16 * (i + j * edged_width),
279 : syskin 935 ref->y + 16 * (i + j * edged_width),
280 :     edged_width);
281 :    
282 : edgomez 851 transfer8x8_copy(cur->u + 8 * (i + j * edged_width/2),
283 :     ref->u + 8 * (i + j * edged_width/2),
284 :     edged_width / 2);
285 :     transfer8x8_copy(cur->v + 8 * (i + j * edged_width/2),
286 :     ref->v + 8 * (i + j * edged_width/2),
287 :     edged_width / 2);
288 :     return;
289 :     }
290 : Isibaar 3
291 : syskin 935 if ((mb->mode == MODE_NOT_CODED || mb->mode == MODE_INTER
292 : edgomez 851 || mb->mode == MODE_INTER_Q)) {
293 : chl 437
294 : edgomez 851 /* reduced resolution + GMC: not possible */
295 : Isibaar 3
296 : edgomez 851 if (mb->mcsel) {
297 : syskin 935
298 : edgomez 851 /* call normal routine once, easier than "if (mcsel)"ing all the time */
299 : syskin 935
300 : edgomez 851 transfer_8to16sub(&dct_codes[0*64], cur->y + 16*j*edged_width + 16*i,
301 : syskin 935 refGMC->y + 16*j*edged_width + 16*i, edged_width);
302 : edgomez 851 transfer_8to16sub(&dct_codes[1*64], cur->y + 16*j*edged_width + 16*i+8,
303 : syskin 935 refGMC->y + 16*j*edged_width + 16*i+8, edged_width);
304 : edgomez 851 transfer_8to16sub(&dct_codes[2*64], cur->y + (16*j+8)*edged_width + 16*i,
305 : syskin 935 refGMC->y + (16*j+8)*edged_width + 16*i, edged_width);
306 : edgomez 851 transfer_8to16sub(&dct_codes[3*64], cur->y + (16*j+8)*edged_width + 16*i+8,
307 : syskin 935 refGMC->y + (16*j+8)*edged_width + 16*i+8, edged_width);
308 : chl 437
309 : edgomez 851 /* lumi is needed earlier for mode decision, but chroma should be done block-based, but it isn't, yet. */
310 :    
311 :     transfer_8to16sub(&dct_codes[4 * 64], cur->u + 8 *j*edged_width/2 + 8*i,
312 :     refGMC->u + 8 *j*edged_width/2 + 8*i, edged_width/2);
313 :    
314 :     transfer_8to16sub(&dct_codes[5 * 64], cur->v + 8*j* edged_width/2 + 8*i,
315 :     refGMC->v + 8*j* edged_width/2 + 8*i, edged_width/2);
316 :    
317 :     return;
318 :     }
319 :    
320 :     /* ordinary compensation */
321 : syskin 935
322 : edgomez 851 dx = (quarterpel ? mb->qmvs[0].x : mb->mvs[0].x);
323 :     dy = (quarterpel ? mb->qmvs[0].y : mb->mvs[0].y);
324 :    
325 :     if (reduced_resolution) {
326 :     dx = RRV_MV_SCALEUP(dx);
327 :     dy = RRV_MV_SCALEUP(dy);
328 :     }
329 :    
330 :     compensate16x16_interpolate(&dct_codes[0 * 64], cur->y, ref->y, refh->y,
331 :     refv->y, refhv->y, tmp, 16 * i, 16 * j, dx, dy,
332 :     edged_width, quarterpel, reduced_resolution, rounding);
333 :    
334 : syskin 935 if (quarterpel) { dx /= 2; dy /= 2; }
335 :    
336 : edgomez 851 dx = (dx >> 1) + roundtab_79[dx & 0x3];
337 :     dy = (dy >> 1) + roundtab_79[dy & 0x3];
338 :    
339 : edgomez 1053 } else { /* mode == MODE_INTER4V */
340 : edgomez 851 int k, sumx = 0, sumy = 0;
341 :     const VECTOR * const mvs = (quarterpel ? mb->qmvs : mb->mvs);
342 :    
343 :     for (k = 0; k < 4; k++) {
344 :     dx = mvs[k].x;
345 :     dy = mvs[k].y;
346 : syskin 935 sumx += quarterpel ? dx/2 : dx;
347 :     sumy += quarterpel ? dy/2 : dy;
348 : edgomez 851
349 :     if (reduced_resolution){
350 :     dx = RRV_MV_SCALEUP(dx);
351 :     dy = RRV_MV_SCALEUP(dy);
352 :     }
353 :    
354 :     compensate8x8_interpolate(&dct_codes[k * 64], cur->y, ref->y, refh->y,
355 :     refv->y, refhv->y, tmp, 16 * i + 8*(k&1), 16 * j + 8*(k>>1), dx,
356 :     dy, edged_width, quarterpel, reduced_resolution, rounding);
357 :     }
358 :     dx = (sumx >> 3) + roundtab_76[sumx & 0xf];
359 :     dy = (sumy >> 3) + roundtab_76[sumy & 0xf];
360 :     }
361 :    
362 :     CompensateChroma(dx, dy, i, j, cur, ref, tmp,
363 :     &dct_codes[4 * 64], edged_width / 2, rounding, reduced_resolution);
364 :     }
365 :    
366 :    
367 :     void
368 :     MBMotionCompensationBVOP(MBParam * pParam,
369 :     MACROBLOCK * const mb,
370 :     const uint32_t i,
371 :     const uint32_t j,
372 :     IMAGE * const cur,
373 :     const IMAGE * const f_ref,
374 :     const IMAGE * const f_refh,
375 :     const IMAGE * const f_refv,
376 :     const IMAGE * const f_refhv,
377 :     const IMAGE * const b_ref,
378 :     const IMAGE * const b_refh,
379 :     const IMAGE * const b_refv,
380 :     const IMAGE * const b_refhv,
381 :     int16_t * dct_codes)
382 :     {
383 :     const uint32_t edged_width = pParam->edged_width;
384 :     int32_t dx, dy, b_dx, b_dy, sumx, sumy, b_sumx, b_sumy;
385 :     int k;
386 : edgomez 949 const int quarterpel = pParam->vol_flags & XVID_VOL_QUARTERPEL;
387 : edgomez 851 const uint8_t * ptr1, * ptr2;
388 :     uint8_t * const tmp = f_refv->u;
389 :     const VECTOR * const fmvs = (quarterpel ? mb->qmvs : mb->mvs);
390 :     const VECTOR * const bmvs = (quarterpel ? mb->b_qmvs : mb->b_mvs);
391 :    
392 :     switch (mb->mode) {
393 :     case MODE_FORWARD:
394 :     dx = fmvs->x; dy = fmvs->y;
395 :    
396 :     compensate16x16_interpolate(&dct_codes[0 * 64], cur->y, f_ref->y, f_refh->y,
397 :     f_refv->y, f_refhv->y, tmp, 16 * i, 16 * j, dx,
398 :     dy, edged_width, quarterpel, 0, 0);
399 :    
400 :     if (quarterpel) { dx /= 2; dy /= 2; }
401 :    
402 :     CompensateChroma( (dx >> 1) + roundtab_79[dx & 0x3],
403 :     (dy >> 1) + roundtab_79[dy & 0x3],
404 :     i, j, cur, f_ref, tmp,
405 :     &dct_codes[4 * 64], edged_width / 2, 0, 0);
406 :    
407 :     return;
408 :    
409 :     case MODE_BACKWARD:
410 :     b_dx = bmvs->x; b_dy = bmvs->y;
411 :    
412 : syskin 935 compensate16x16_interpolate(&dct_codes[0 * 64], cur->y, b_ref->y, b_refh->y,
413 : edgomez 851 b_refv->y, b_refhv->y, tmp, 16 * i, 16 * j, b_dx,
414 : syskin 935 b_dy, edged_width, quarterpel, 0, 0);
415 : edgomez 851
416 :     if (quarterpel) { b_dx /= 2; b_dy /= 2; }
417 :    
418 :     CompensateChroma( (b_dx >> 1) + roundtab_79[b_dx & 0x3],
419 :     (b_dy >> 1) + roundtab_79[b_dy & 0x3],
420 :     i, j, cur, b_ref, tmp,
421 :     &dct_codes[4 * 64], edged_width / 2, 0, 0);
422 :    
423 :     return;
424 :    
425 :     case MODE_INTERPOLATE: /* _could_ use DIRECT, but would be overkill (no 4MV there) */
426 :     case MODE_DIRECT_NO4V:
427 :     dx = fmvs->x; dy = fmvs->y;
428 :     b_dx = bmvs->x; b_dy = bmvs->y;
429 :    
430 :     if (quarterpel) {
431 : syskin 935
432 : edgomez 851 if ((dx&3) | (dy&3)) {
433 :     interpolate16x16_quarterpel(tmp - i * 16 - j * 16 * edged_width,
434 :     (uint8_t *) f_ref->y, tmp + 32,
435 :     tmp + 64, tmp + 96, 16*i, 16*j, dx, dy, edged_width, 0);
436 :     ptr1 = tmp;
437 : edgomez 1053 } else ptr1 = f_ref->y + (16*j + dy/4)*edged_width + 16*i + dx/4; /* fullpixel position */
438 : edgomez 851
439 :     if ((b_dx&3) | (b_dy&3)) {
440 :     interpolate16x16_quarterpel(tmp - i * 16 - j * 16 * edged_width + 16,
441 :     (uint8_t *) b_ref->y, tmp + 32,
442 :     tmp + 64, tmp + 96, 16*i, 16*j, b_dx, b_dy, edged_width, 0);
443 :     ptr2 = tmp + 16;
444 : edgomez 1053 } else ptr2 = b_ref->y + (16*j + b_dy/4)*edged_width + 16*i + b_dx/4; /* fullpixel position */
445 : edgomez 851
446 :     b_dx /= 2;
447 :     b_dy /= 2;
448 :     dx /= 2;
449 :     dy /= 2;
450 :    
451 :     } else {
452 :     ptr1 = get_ref(f_ref->y, f_refh->y, f_refv->y, f_refhv->y,
453 :     i, j, 16, dx, dy, edged_width);
454 :    
455 :     ptr2 = get_ref(b_ref->y, b_refh->y, b_refv->y, b_refhv->y,
456 :     i, j, 16, b_dx, b_dy, edged_width);
457 :     }
458 :     for (k = 0; k < 4; k++)
459 :     transfer_8to16sub2(&dct_codes[k * 64],
460 :     cur->y + (i * 16+(k&1)*8) + (j * 16+((k>>1)*8)) * edged_width,
461 :     ptr1 + (k&1)*8 + (k>>1)*8*edged_width,
462 :     ptr2 + (k&1)*8 + (k>>1)*8*edged_width, edged_width);
463 :    
464 :    
465 :     dx = (dx >> 1) + roundtab_79[dx & 0x3];
466 :     dy = (dy >> 1) + roundtab_79[dy & 0x3];
467 :    
468 :     b_dx = (b_dx >> 1) + roundtab_79[b_dx & 0x3];
469 :     b_dy = (b_dy >> 1) + roundtab_79[b_dy & 0x3];
470 :    
471 :     break;
472 : syskin 935
473 : edgomez 1053 default: /* MODE_DIRECT (or MODE_DIRECT_NONE_MV in case of bframes decoding) */
474 : edgomez 851 sumx = sumy = b_sumx = b_sumy = 0;
475 :    
476 :     for (k = 0; k < 4; k++) {
477 : syskin 935
478 : edgomez 851 dx = fmvs[k].x; dy = fmvs[k].y;
479 :     b_dx = bmvs[k].x; b_dy = bmvs[k].y;
480 :    
481 :     if (quarterpel) {
482 :     sumx += dx/2; sumy += dy/2;
483 :     b_sumx += b_dx/2; b_sumy += b_dy/2;
484 :    
485 :     if ((dx&3) | (dy&3)) {
486 :     interpolate8x8_quarterpel(tmp - (i * 16+(k&1)*8) - (j * 16+((k>>1)*8)) * edged_width,
487 : syskin 935 (uint8_t *) f_ref->y,
488 :     tmp + 32, tmp + 64, tmp + 96,
489 : edgomez 851 16*i + (k&1)*8, 16*j + (k>>1)*8, dx, dy, edged_width, 0);
490 :     ptr1 = tmp;
491 :     } else ptr1 = f_ref->y + (16*j + (k>>1)*8 + dy/4)*edged_width + 16*i + (k&1)*8 + dx/4;
492 :    
493 :     if ((b_dx&3) | (b_dy&3)) {
494 :     interpolate8x8_quarterpel(tmp - (i * 16+(k&1)*8) - (j * 16+((k>>1)*8)) * edged_width + 16,
495 :     (uint8_t *) b_ref->y,
496 : syskin 935 tmp + 16, tmp + 32, tmp + 48,
497 : edgomez 851 16*i + (k&1)*8, 16*j + (k>>1)*8, b_dx, b_dy, edged_width, 0);
498 :     ptr2 = tmp + 16;
499 :     } else ptr2 = b_ref->y + (16*j + (k>>1)*8 + b_dy/4)*edged_width + 16*i + (k&1)*8 + b_dx/4;
500 :     } else {
501 :     sumx += dx; sumy += dy;
502 :     b_sumx += b_dx; b_sumy += b_dy;
503 :    
504 : syskin 935 ptr1 = get_ref(f_ref->y, f_refh->y, f_refv->y, f_refhv->y,
505 : edgomez 851 2*i + (k&1), 2*j + (k>>1), 8, dx, dy, edged_width);
506 : syskin 935 ptr2 = get_ref(b_ref->y, b_refh->y, b_refv->y, b_refhv->y,
507 : edgomez 851 2*i + (k&1), 2*j + (k>>1), 8, b_dx, b_dy, edged_width);
508 :     }
509 :     transfer_8to16sub2(&dct_codes[k * 64],
510 :     cur->y + (i * 16+(k&1)*8) + (j * 16+((k>>1)*8)) * edged_width,
511 :     ptr1, ptr2, edged_width);
512 : syskin 935
513 : edgomez 851 }
514 :    
515 :     dx = (sumx >> 3) + roundtab_76[sumx & 0xf];
516 :     dy = (sumy >> 3) + roundtab_76[sumy & 0xf];
517 :     b_dx = (b_sumx >> 3) + roundtab_76[b_sumx & 0xf];
518 :     b_dy = (b_sumy >> 3) + roundtab_76[b_sumy & 0xf];
519 :    
520 :     break;
521 :     }
522 :    
523 : edgomez 1053 /* v block-based chroma interpolation for direct and interpolate modes */
524 : edgomez 851 transfer_8to16sub2(&dct_codes[4 * 64],
525 :     cur->u + (j * 8) * edged_width / 2 + (i * 8),
526 :     interpolate8x8_switch2(tmp, b_ref->u, 8 * i, 8 * j,
527 :     b_dx, b_dy, edged_width / 2, 0),
528 :     interpolate8x8_switch2(tmp + 8, f_ref->u, 8 * i, 8 * j,
529 :     dx, dy, edged_width / 2, 0),
530 :     edged_width / 2);
531 :    
532 :     transfer_8to16sub2(&dct_codes[5 * 64],
533 :     cur->v + (j * 8) * edged_width / 2 + (i * 8),
534 :     interpolate8x8_switch2(tmp, b_ref->v, 8 * i, 8 * j,
535 :     b_dx, b_dy, edged_width / 2, 0),
536 :     interpolate8x8_switch2(tmp + 8, f_ref->v, 8 * i, 8 * j,
537 :     dx, dy, edged_width / 2, 0),
538 :     edged_width / 2);
539 :     }

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4