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

Diff of /branches/dev-api-3/xvidcore/src/motion/motion_comp.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/xvidcore/src/motion/motion_comp.c revision 373, Thu Aug 15 18:13:02 2002 UTC branches/dev-api-3/xvidcore/src/motion/motion_comp.c revision 539, Wed Sep 25 21:28:48 2002 UTC
# Line 10  Line 10 
10  #define ABS(X) (((X)>0)?(X):-(X))  #define ABS(X) (((X)>0)?(X):-(X))
11  #define SIGN(X) (((X)>0)?1:-1)  #define SIGN(X) (((X)>0)?1:-1)
12    
13    
14  static __inline void  static __inline void
15  compensate8x8_halfpel(int16_t * const dct_codes,  compensate8x8_halfpel(int16_t * const dct_codes,
16                                            uint8_t * const cur,                                            uint8_t * const cur,
# Line 23  Line 24 
24                                            const int dy,                                            const int dy,
25                                            const uint32_t stride)                                            const uint32_t stride)
26  {  {
27          int32_t ddx, ddy;          const uint8_t * reference;
28    
29          switch (((dx & 1) << 1) + (dy & 1))     // ((dx%2)?2:0)+((dy%2)?1:0)          switch (((dx & 1) << 1) + (dy & 1))     // ((dx%2)?2:0)+((dy%2)?1:0)
30          {          {
31          case 0:          case 0: reference = ref + ((y + dy / 2) * stride + x + dx / 2); break;
32                  ddx = dx / 2;          case 1: reference = refv + ((y + (dy-1) / 2) * stride + x + dx / 2); break;
33                  ddy = dy / 2;          case 2: reference = refh + ((y + dy / 2) * stride + x + (dx-1) / 2); break;
                 transfer_8to16sub(dct_codes, cur + y * stride + x,  
                                                   ref + (int) ((y + ddy) * stride + x + ddx), stride);  
                 break;  
   
         case 1:  
                 ddx = dx / 2;  
                 ddy = (dy - 1) / 2;  
                 transfer_8to16sub(dct_codes, cur + y * stride + x,  
                                                   refv + (int) ((y + ddy) * stride + x + ddx), stride);  
                 break;  
   
         case 2:  
                 ddx = (dx - 1) / 2;  
                 ddy = dy / 2;  
                 transfer_8to16sub(dct_codes, cur + y * stride + x,  
                                                   refh + (int) ((y + ddy) * stride + x + ddx), stride);  
                 break;  
   
34          default:                                        // case 3:          default:                                        // case 3:
35                  ddx = (dx - 1) / 2;                  reference = refhv + ((y + (dy-1) / 2) * stride + x + (dx-1) / 2); break;
                 ddy = (dy - 1) / 2;  
                 transfer_8to16sub(dct_codes, cur + y * stride + x,  
                                                   refhv + (int) ((y + ddy) * stride + x + ddx), stride);  
                 break;  
36          }          }
37            transfer_8to16sub(dct_codes, cur + y * stride + x,
38                                                      reference, stride);
39  }  }
40    
   
   
41  void  void
42  MBMotionCompensation(MACROBLOCK * const mb,  MBMotionCompensation(MACROBLOCK * const mb,
43                                           const uint32_t i,                                           const uint32_t i,
# Line 74  Line 53 
53                                           const uint32_t edged_width,                                           const uint32_t edged_width,
54                                           const uint32_t rounding)                                           const uint32_t rounding)
55  {  {
56          static const uint32_t roundtab[16] =          if (mb->mode == MODE_NOT_CODED) {
57                  { 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2 };                  transfer8x8_copy(cur->y + 16 * (i + j * edged_width),
58                                                            ref->y + 16 * (i + j * edged_width),
59                                                            edged_width);
60                    transfer8x8_copy(cur->y + 16 * (i + j * edged_width) + 8,
61                                                            ref->y + 16 * (i + j * edged_width) + 8,
62                                                            edged_width);
63                    transfer8x8_copy(cur->y + 16 * (i + j * edged_width) + 8 * edged_width,
64                                                            ref->y + 16 * (i + j * edged_width) + 8 * edged_width,
65                                                            edged_width);
66                    transfer8x8_copy(cur->y + 16 * (i + j * edged_width) + 8 * (edged_width+1),
67                                                            ref->y + 16 * (i + j * edged_width) + 8 * (edged_width+1),
68                                                            edged_width);
69    
70                    transfer8x8_copy(cur->u + 8 * (i + j * edged_width/2),
71                                                            ref->u + 8 * (i + j * edged_width/2),
72                                                            edged_width / 2);
73                    transfer8x8_copy(cur->v + 8 * (i + j * edged_width/2),
74                                                            ref->v + 8 * (i + j * edged_width/2),
75                                                            edged_width / 2);
76                    return;
77            }
78    
79          if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {          if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {
80                  int32_t dx = mb->mvs[0].x;                  int32_t dx = mb->mvs[0].x;
# Line 98  Line 96 
96                  dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;                  dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;
97                  dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;                  dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;
98    
                 /* uv-image-based compensation */  
 #ifdef BUGGY_BFRAMES  
 /* was #ifdef BFRAMES, but that's not possible because non-halfpel is _allowed_  
    if max_bframes<=0 . We should better check for XVID_HALFPEL flag */  
   
                 compensate8x8_halfpel(&dct_codes[4 * 64], cur->u, ref->u, refh->u,  
                                                           refv->u, refhv->u, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2);  
                 compensate8x8_halfpel(&dct_codes[5 * 64], cur->v, ref->v, refh->v,  
                                                           refv->v, refhv->v, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2);  
 #else  
   
   
99                  /* uv-block-based compensation */                  /* uv-block-based compensation */
                 interpolate8x8_switch(refv->u, ref->u, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2, rounding);  
100                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],
101                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,
102                                                    refv->u + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(refv->u, ref->u, 8 * i, 8 * j,
103                                                                                                            dx, dy, edged_width / 2, rounding),
104                                                    edged_width / 2);                                                    edged_width / 2);
105    
                 interpolate8x8_switch(refv->v, ref->v, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2, rounding);  
106                  transfer_8to16sub(&dct_codes[5 * 64],                  transfer_8to16sub(&dct_codes[5 * 64],
107                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,
108                                                    refv->v + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(refv->u, ref->v, 8 * i, 8 * j,
109                                                                                                            dx, dy, edged_width / 2, rounding),
110                                                    edged_width / 2);                                                    edged_width / 2);
111  #endif  
112          } else                                          // mode == MODE_INTER4V          } else {                                        // mode == MODE_INTER4V
         {  
113                  int32_t sum, dx, dy;                  int32_t sum, dx, dy;
114    
115                  compensate8x8_halfpel(&dct_codes[0 * 64], cur->y, ref->y, refh->y,                  compensate8x8_halfpel(&dct_codes[0 * 64], cur->y, ref->y, refh->y,
# Line 152  Line 133 
133                  dy = (sum ? SIGN(sum) *                  dy = (sum ? SIGN(sum) *
134                            (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);                            (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);
135    
                 /* uv-image-based compensation */  
 #ifdef BFRAMES  
                 compensate8x8_halfpel(&dct_codes[4 * 64], cur->u, ref->u, refh->u,  
                                                           refv->u, refhv->u, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2);  
                 compensate8x8_halfpel(&dct_codes[5 * 64], cur->v, ref->v, refh->v,  
                                                           refv->v, refhv->v, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2);  
 #else  
136                  /* uv-block-based compensation */                  /* uv-block-based compensation */
                 interpolate8x8_switch(refv->u, ref->u, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2, rounding);  
137                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],
138                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,
139                                                    refv->u + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(refv->u, ref->u, 8 * i, 8 * j,
140                                                                                                            dx, dy, edged_width / 2, rounding),
141                                                    edged_width / 2);                                                    edged_width / 2);
142    
                 interpolate8x8_switch(refv->v, ref->v, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2, rounding);  
143                  transfer_8to16sub(&dct_codes[5 * 64],                  transfer_8to16sub(&dct_codes[5 * 64],
144                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,
145                                                    refv->v + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(refv->u, ref->v, 8 * i, 8 * j,
146                                                                                                            dx, dy, edged_width / 2, rounding),
147    
148                                                    edged_width / 2);                                                    edged_width / 2);
 #endif  
149          }          }
150  }  }
151    
# Line 202  Line 172 
172          const int32_t edged_width = pParam->edged_width;          const int32_t edged_width = pParam->edged_width;
173          int32_t dx, dy;          int32_t dx, dy;
174          int32_t b_dx, b_dy;          int32_t b_dx, b_dy;
175            int k,sum;
176          int x = i;          int x = i;
177          int y = j;          int y = j;
178    
179    
   
180          switch (mb->mode) {          switch (mb->mode) {
181          case MODE_FORWARD:          case MODE_FORWARD:
182                  dx = mb->mvs[0].x;                  dx = mb->mvs[0].x;
183                  dy = mb->mvs[0].y;                  dy = mb->mvs[0].y;
184    
185                  transfer_8to16sub_c(&dct_codes[0 * 64],                  transfer_8to16sub(&dct_codes[0 * 64],
186                                                          cur->y + (j * 16) * edged_width + (i * 16),                                                          cur->y + (j * 16) * edged_width + (i * 16),
187                                                          get_ref(f_ref->y, f_refh->y, f_refv->y, f_refhv->y,                                                          get_ref(f_ref->y, f_refh->y, f_refv->y, f_refhv->y,
188                                                                          i * 16, j * 16, 1, dx, dy, edged_width),                                                                          i * 16, j * 16, 1, dx, dy, edged_width),
# Line 224  Line 194 
194                                                                    i * 16 + 8, j * 16, 1, dx, dy, edged_width),                                                                    i * 16 + 8, j * 16, 1, dx, dy, edged_width),
195                                                    edged_width);                                                    edged_width);
196    
197                  transfer_8to16sub_c(&dct_codes[2 * 64],                  transfer_8to16sub(&dct_codes[2 * 64],
198                                                          cur->y + (j * 16 + 8) * edged_width + (i * 16),                                                          cur->y + (j * 16 + 8) * edged_width + (i * 16),
199                                                          get_ref(f_ref->y, f_refh->y, f_refv->y, f_refhv->y,                                                          get_ref(f_ref->y, f_refh->y, f_refv->y, f_refhv->y,
200                                                                          i * 16, j * 16 + 8, 1, dx, dy,                                                                          i * 16, j * 16 + 8, 1, dx, dy, edged_width),
201                                                                          edged_width), edged_width);                                                          edged_width);
202    
203                  transfer_8to16sub(&dct_codes[3 * 64],                  transfer_8to16sub(&dct_codes[3 * 64],
204                                                    cur->y + (j * 16 + 8) * edged_width + (i * 16 + 8),                                                    cur->y + (j * 16 + 8) * edged_width + (i * 16 + 8),
205                                                    get_ref(f_ref->y, f_refh->y, f_refv->y, f_refhv->y,                                                    get_ref(f_ref->y, f_refh->y, f_refv->y, f_refhv->y,
206                                                                    i * 16 + 8, j * 16 + 8, 1, dx, dy,                                                                    i * 16 + 8, j * 16 + 8, 1, dx, dy, edged_width),
207                                                                    edged_width), edged_width);                                                          edged_width);
208    
209    
210                  dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;                  dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;
211                  dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;                  dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;
212    
213                  /* uv-image-based compensation */                  /* uv-block-based compensation */
214                  compensate8x8_halfpel(&dct_codes[4 * 64], cur->u, f_ref->u, f_refh->u,                  transfer_8to16sub(&dct_codes[4 * 64],
215                                                            f_refv->u, f_refhv->u, 8 * i, 8 * j, dx, dy,                                                          cur->u + 8 * j * edged_width / 2 + 8 * i,
216                                                            interpolate8x8_switch2(f_refv->u, f_ref->u, 8 * i, 8 * j,
217                                                                                                            dx, dy, edged_width / 2, 0),
218    
219                                                            edged_width / 2);                                                            edged_width / 2);
220                  compensate8x8_halfpel(&dct_codes[5 * 64], cur->v, f_ref->v, f_refh->v,  
221                                                            f_refv->v, f_refhv->v, 8 * i, 8 * j, dx, dy,                  transfer_8to16sub(&dct_codes[5 * 64],
222                                                            cur->v + 8 * j * edged_width / 2 + 8 * i,
223                                                            interpolate8x8_switch2(f_refv->u, f_ref->v, 8 * i, 8 * j,
224                                                                                                            dx, dy, edged_width / 2, 0),
225    
226                                                            edged_width / 2);                                                            edged_width / 2);
227    
228                  break;                  break;
# Line 254  Line 231 
231                  b_dx = mb->b_mvs[0].x;                  b_dx = mb->b_mvs[0].x;
232                  b_dy = mb->b_mvs[0].y;                  b_dy = mb->b_mvs[0].y;
233    
234                  transfer_8to16sub_c(&dct_codes[0 * 64],                  transfer_8to16sub(&dct_codes[0 * 64],
235                                                          cur->y + (j * 16) * edged_width + (i * 16),                                                          cur->y + (j * 16) * edged_width + (i * 16),
236                                                          get_ref(b_ref->y, b_refh->y, b_refv->y, b_refhv->y,                                                          get_ref(b_ref->y, b_refh->y, b_refv->y, b_refhv->y,
237                                                                          i * 16, j * 16, 1, b_dx, b_dy,                                                                          i * 16, j * 16, 1, b_dx, b_dy,
# Line 266  Line 243 
243                                                                    i * 16 + 8, j * 16, 1, b_dx, b_dy,                                                                    i * 16 + 8, j * 16, 1, b_dx, b_dy,
244                                                                    edged_width), edged_width);                                                                    edged_width), edged_width);
245    
246                  transfer_8to16sub_c(&dct_codes[2 * 64],                  transfer_8to16sub(&dct_codes[2 * 64],
247                                                          cur->y + (j * 16 + 8) * edged_width + (i * 16),                                                          cur->y + (j * 16 + 8) * edged_width + (i * 16),
248                                                          get_ref(b_ref->y, b_refh->y, b_refv->y, b_refhv->y,                                                          get_ref(b_ref->y, b_refh->y, b_refv->y, b_refhv->y,
249                                                                          i * 16, j * 16 + 8, 1, b_dx, b_dy,                                                                          i * 16, j * 16 + 8, 1, b_dx, b_dy,
# Line 281  Line 258 
258                  b_dx = (b_dx & 3) ? (b_dx >> 1) | 1 : b_dx / 2;                  b_dx = (b_dx & 3) ? (b_dx >> 1) | 1 : b_dx / 2;
259                  b_dy = (b_dy & 3) ? (b_dy >> 1) | 1 : b_dy / 2;                  b_dy = (b_dy & 3) ? (b_dy >> 1) | 1 : b_dy / 2;
260    
261                  /* uv-image-based compensation */                  /* uv-block-based compensation */
262                  compensate8x8_halfpel(&dct_codes[4 * 64], cur->u, b_ref->u, b_refh->u,                  transfer_8to16sub(&dct_codes[4 * 64],
263                                                            b_refv->u, b_refhv->u, 8 * i, 8 * j, b_dx, b_dy,                                                          cur->u + 8 * j * edged_width / 2 + 8 * i,
264                                                            interpolate8x8_switch2(f_refv->u, b_ref->u, 8 * i, 8 * j,
265                                                                                                            b_dx, b_dy, edged_width / 2, 0),
266    
267                                                            edged_width / 2);                                                            edged_width / 2);
268                  compensate8x8_halfpel(&dct_codes[5 * 64], cur->v, b_ref->v, b_refh->v,  
269                                                            b_refv->v, b_refhv->v, 8 * i, 8 * j, b_dx, b_dy,                  transfer_8to16sub(&dct_codes[5 * 64],
270                                                            cur->v + 8 * j * edged_width / 2 + 8 * i,
271                                                            interpolate8x8_switch2(f_refv->u, b_ref->v, 8 * i, 8 * j,
272                                                                                                            b_dx, b_dy, edged_width / 2, 0),
273    
274                                                            edged_width / 2);                                                            edged_width / 2);
275    
276                  break;                  break;
277    
278    
279          case MODE_INTERPOLATE:          case MODE_INTERPOLATE:          /* _could_ use DIRECT, but would be overkill (no 4MV there) */
280            case MODE_DIRECT_NO4V:
281    
282                  dx = mb->mvs[0].x;                  dx = mb->mvs[0].x;
283                  dy = mb->mvs[0].y;                  dy = mb->mvs[0].y;
284    
285                  b_dx = mb->b_mvs[0].x;                  b_dx = mb->b_mvs[0].x;
286                  b_dy = mb->b_mvs[0].y;                  b_dy = mb->b_mvs[0].y;
287    
288                  transfer_8to16sub2_c(&dct_codes[0 * 64],                  for (k = 0; k < 4; k++) {
289                                                           cur->y + (i * 16) + (j * 16) * edged_width,                          transfer_8to16sub2(&dct_codes[k * 64],
290                                                           get_ref(f_ref->y, f_refh->y, f_refv->y,                                                          cur->y + (i * 16+(k&1)*8) + (j * 16+((k>>1)*8)) * edged_width,
                                                                          f_refhv->y, 16 * i, 16 * j, 1, dx, dy,  
                                                                          edged_width), get_ref(b_ref->y, b_refh->y,  
                                                                                                                    b_refv->y,  
                                                                                                                    b_refhv->y, 16 * i,  
                                                                                                                    16 * j, 1, b_dx,  
                                                                                                                    b_dy, edged_width),  
                                                          edged_width);  
   
                 transfer_8to16sub2_c(&dct_codes[1 * 64],  
                                                          cur->y + (i * 16 + 8) + (j * 16) * edged_width,  
291                                                           get_ref(f_ref->y, f_refh->y, f_refv->y,                                                           get_ref(f_ref->y, f_refh->y, f_refv->y,
292                                                                           f_refhv->y, 16 * i + 8, 16 * j, 1, dx, dy,                                                                          f_refhv->y, 2*i + (k&1), 2*j + (k>>1), 8, dx, dy,
                                                                          edged_width), get_ref(b_ref->y, b_refh->y,  
                                                                                                                    b_refv->y,  
                                                                                                                    b_refhv->y,  
                                                                                                                    16 * i + 8, 16 * j,  
                                                                                                                    1, b_dx, b_dy,  
293                                                                                                                     edged_width),                                                                                                                     edged_width),
294                                                           edged_width);                                                          get_ref(b_ref->y, b_refh->y, b_refv->y,
295                                                                            b_refhv->y, 2*i + (k&1), 2 * j+(k>>1), 8, b_dx, b_dy,
                 transfer_8to16sub2_c(&dct_codes[2 * 64],  
                                                          cur->y + (i * 16) + (j * 16 + 8) * edged_width,  
                                                          get_ref(f_ref->y, f_refh->y, f_refv->y,  
                                                                          f_refhv->y, 16 * i, 16 * j + 8, 1, dx, dy,  
                                                                          edged_width), get_ref(b_ref->y, b_refh->y,  
                                                                                                                    b_refv->y,  
                                                                                                                    b_refhv->y, 16 * i,  
                                                                                                                    16 * j + 8, 1, b_dx,  
                                                                                                                    b_dy, edged_width),  
                                                          edged_width);  
   
                 transfer_8to16sub2_c(&dct_codes[3 * 64],  
                                                          cur->y + (i * 16 + 8) + (j * 16 +  
                                                                                                           8) * edged_width,  
                                                          get_ref(f_ref->y, f_refh->y, f_refv->y,  
                                                                          f_refhv->y, 16 * i + 8, 16 * j + 8, 1, dx,  
                                                                          dy, edged_width), get_ref(b_ref->y,  
                                                                                                                            b_refh->y,  
                                                                                                                            b_refv->y,  
                                                                                                                            b_refhv->y,  
                                                                                                                            16 * i + 8,  
                                                                                                                            16 * j + 8, 1,  
                                                                                                                            b_dx, b_dy,  
296                                                                                                                             edged_width),                                                                                                                             edged_width),
297                                                           edged_width);                                                           edged_width);
298                    }
299    
300                  dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;                  dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;
301                  dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;                  dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;
# Line 354  Line 303 
303                  b_dx = (b_dx & 3) ? (b_dx >> 1) | 1 : b_dx / 2;                  b_dx = (b_dx & 3) ? (b_dx >> 1) | 1 : b_dx / 2;
304                  b_dy = (b_dy & 3) ? (b_dy >> 1) | 1 : b_dy / 2;                  b_dy = (b_dy & 3) ? (b_dy >> 1) | 1 : b_dy / 2;
305    
306                  transfer_8to16sub2_c(&dct_codes[4 * 64],                  transfer_8to16sub2(&dct_codes[4 * 64],
307                                                           cur->u + (y * 8) * edged_width / 2 + (x * 8),                                                           cur->u + (y * 8) * edged_width / 2 + (x * 8),
308                                                           get_ref(f_ref->u, f_refh->u, f_refv->u,                                                          interpolate8x8_switch2(f_refv->u, b_ref->u, 8 * i, 8 * j,
309                                                                           f_refhv->u, 8 * i, 8 * j, 1, dx, dy,                                                                                                          b_dx, b_dy, edged_width / 2, 0),
310                                                                           edged_width / 2), get_ref(b_ref->u,                                                          interpolate8x8_switch2(f_refv->u + 8, f_ref->u, 8 * i, 8 * j,
311                                                                                                                             b_refh->u,                                                                                                          dx, dy, edged_width / 2, 0),
                                                                                                                            b_refv->u,  
                                                                                                                            b_refhv->u,  
                                                                                                                            8 * i, 8 * j, 1,  
                                                                                                                            b_dx, b_dy,  
                                                                                                                            edged_width /  
                                                                                                                            2),  
312                                                           edged_width / 2);                                                           edged_width / 2);
313    
314                  transfer_8to16sub2_c(&dct_codes[5 * 64],                  transfer_8to16sub2(&dct_codes[5 * 64],
315                                                           cur->v + (y * 8) * edged_width / 2 + (x * 8),                                                           cur->v + (y * 8) * edged_width / 2 + (x * 8),
316                                                           get_ref(f_ref->v, f_refh->v, f_refv->v,                                                          interpolate8x8_switch2(f_refv->u, b_ref->v, 8 * i, 8 * j,
317                                                                           f_refhv->v, 8 * i, 8 * j, 1, dx, dy,                                                                                                          b_dx, b_dy, edged_width / 2, 0),
318                                                                           edged_width / 2), get_ref(b_ref->v,                                                          interpolate8x8_switch2(f_refv->u + 8, f_ref->v, 8 * i, 8 * j,
319                                                                                                                             b_refh->v,                                                                                                          dx, dy, edged_width / 2, 0),
                                                                                                                            b_refv->v,  
                                                                                                                            b_refhv->v,  
                                                                                                                            8 * i, 8 * j, 1,  
                                                                                                                            b_dx, b_dy,  
                                                                                                                            edged_width /  
                                                                                                                            2),  
320                                                           edged_width / 2);                                                           edged_width / 2);
321    
322                  break;                  break;
323    
324          case MODE_DIRECT:          case MODE_DIRECT:
325                  // todo  
326                  break;                  for (k=0;k<4;k++)
327                    {
328                            dx = mb->mvs[k].x;
329                            dy = mb->mvs[k].y;
330    
331                            b_dx = mb->b_mvs[k].x;
332                            b_dy = mb->b_mvs[k].y;
333    
334    //              fprintf(stderr,"Direct Vector %d -- %d:%d    %d:%d\n",k,dx,dy,b_dx,b_dy);
335    
336                            transfer_8to16sub2(&dct_codes[k * 64],
337                                                            cur->y + (i*16 + (k&1)*8) + (j*16 + (k>>1)*8 ) * edged_width,
338                                                            get_ref(f_ref->y, f_refh->y, f_refv->y, f_refhv->y,
339                                                                            2*i + (k&1), 2*j + (k>>1), 8, dx, dy,
340                                                                            edged_width),
341                                                            get_ref(b_ref->y, b_refh->y, b_refv->y, b_refhv->y,
342                                                                            2*i + (k&1), 2*j + (k>>1), 8, b_dx, b_dy,
343                                                                            edged_width),
344                                                            edged_width);
345          }          }
346    
347                    sum = mb->mvs[0].x + mb->mvs[1].x + mb->mvs[2].x + mb->mvs[3].x;
348                    dx = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));
349    
350                    sum = mb->mvs[0].y + mb->mvs[1].y + mb->mvs[2].y + mb->mvs[3].y;
351                    dy = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));
352    
353    
354                    sum = mb->b_mvs[0].x + mb->b_mvs[1].x + mb->b_mvs[2].x + mb->b_mvs[3].x;
355                    b_dx = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));
356    
357                    sum = mb->b_mvs[0].y + mb->b_mvs[1].y + mb->b_mvs[2].y + mb->b_mvs[3].y;
358                    b_dy = (sum == 0 ? 0 : SIGN(sum) * (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2));
359    
360    /*              // for QPel don't forget to always do
361    
362                    if (quarterpel)
363                            sum /= 2;
364    */
365                    transfer_8to16sub2(&dct_codes[4 * 64],
366                                                            cur->u + (y * 8) * edged_width / 2 + (x * 8),
367                                                            interpolate8x8_switch2(f_refv->u, b_ref->u, 8 * i, 8 * j,
368                                                                                                            b_dx, b_dy, edged_width / 2, 0),
369                                                            interpolate8x8_switch2(f_refv->u + 8, f_ref->u, 8 * i, 8 * j, dx, dy,
370                                                              edged_width / 2, 0),
371                                                            edged_width / 2);
372    
373                    transfer_8to16sub2(&dct_codes[5 * 64],
374                                                            cur->v + (y * 8) * edged_width / 2 + (x * 8),
375                                                            interpolate8x8_switch2(f_refv->u, b_ref->v, 8 * i, 8 * j,
376                                                                                                            b_dx, b_dy, edged_width / 2, 0),
377                                                            interpolate8x8_switch2(f_refv->u + 8, f_ref->v, 8 * i, 8 * j,
378                                                                                                            dx, dy, edged_width / 2, 0),
379                                                            edged_width / 2);
380    
381    
382                    break;
383            }
384  }  }

Legend:
Removed from v.373  
changed lines
  Added in v.539

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