[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

revision 449, Sun Sep 8 09:49:55 2002 UTC revision 616, Wed Oct 30 18:06:41 2002 UTC
# Line 1  Line 1 
1    // 30.10.2002   corrected qpel chroma rounding
2    // 04.10.2002   added qpel support to MBMotionCompensation
3  // 01.05.2002   updated MBMotionCompensationBVOP  // 01.05.2002   updated MBMotionCompensationBVOP
4  // 14.04.2002   bframe compensation  // 14.04.2002   bframe compensation
5    
6  #include "../encoder.h"  #include "../encoder.h"
7  #include "../utils/mbfunctions.h"  #include "../utils/mbfunctions.h"
8  #include "../image/interpolate8x8.h"  #include "../image/interpolate8x8.h"
9    #include "../image/qpel.h"
10  #include "../utils/timer.h"  #include "../utils/timer.h"
11  #include "motion.h"  #include "motion.h"
12    
# Line 11  Line 14 
14  #define SIGN(X) (((X)>0)?1:-1)  #define SIGN(X) (((X)>0)?1:-1)
15    
16  static __inline void  static __inline void
17  compensate8x8_halfpel(int16_t * const dct_codes,  compensate16x16_interpolate(int16_t * const dct_codes,
18                                            uint8_t * const cur,                                            uint8_t * const cur,
19                                            const uint8_t * const ref,                                            const uint8_t * const ref,
20                                            const uint8_t * const refh,                                            const uint8_t * const refh,
# Line 20  Line 23 
23                                            const uint32_t x,                                            const uint32_t x,
24                                            const uint32_t y,                                            const uint32_t y,
25                                            const int32_t dx,                                            const int32_t dx,
26                                            const int dy,                                                      const int32_t dy,
27                                            const uint32_t stride)                                                      const uint32_t stride,
28                                                        const uint32_t quarterpel,
29                                                        const uint32_t rounding)
30    {
31            if(quarterpel) {
32                    interpolate16x16_quarterpel((uint8_t *) refv, (uint8_t *) ref, (uint8_t *) refh,
33                            (uint8_t *) refh + 64, (uint8_t *) refhv, x, y, dx, dy, stride, rounding);
34    
35                    transfer_8to16sub(dct_codes, cur + y*stride + x,
36                                                      refv + y*stride + x, stride);
37                    transfer_8to16sub(dct_codes+64, cur + y*stride + x + 8,
38                                                      refv + y*stride + x + 8, stride);
39                    transfer_8to16sub(dct_codes+128, cur + y*stride + x + 8*stride,
40                                                      refv + y*stride + x + 8*stride, stride);
41                    transfer_8to16sub(dct_codes+192, cur + y*stride + x + 8*stride + 8,
42                                                      refv + y*stride + x + 8*stride+8, stride);
43    
44            }
45            else
46  {  {
47          int32_t ddx, ddy;                  const uint8_t * reference;
48    
49          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)
50          {          {
51          case 0:                  case 0: reference = ref + ((y + dy / 2) * stride + x + dx / 2); break;
52                  ddx = dx / 2;                  case 1: reference = refv + ((y + (dy-1) / 2) * stride + x + dx / 2); break;
53                  ddy = dy / 2;                  case 2: reference = refh + ((y + dy / 2) * stride + x + (dx-1) / 2); break;
54                    default:                                        // case 3:
55                            reference = refhv + ((y + (dy-1) / 2) * stride + x + (dx-1) / 2); break;
56                    }
57                  transfer_8to16sub(dct_codes, cur + y * stride + x,                  transfer_8to16sub(dct_codes, cur + y * stride + x,
58                                                    ref + (int) ((y + ddy) * stride + x + ddx), stride);                                                            reference, stride);
59                  break;                  transfer_8to16sub(dct_codes+64, cur + y * stride + x + 8,
60                                                              reference + 8, stride);
61                    transfer_8to16sub(dct_codes+128, cur + y * stride + x + 8*stride,
62                                                              reference + 8*stride, stride);
63                    transfer_8to16sub(dct_codes+192, cur + y * stride + x + 8*stride+8,
64                                                              reference + 8*stride + 8, stride);
65            }
66    }
67    
68          case 1:  static __inline void
69                  ddx = dx / 2;  compensate8x8_interpolate(int16_t * const dct_codes,
70                  ddy = (dy - 1) / 2;                                                    uint8_t * const cur,
71                  transfer_8to16sub(dct_codes, cur + y * stride + x,                                                    const uint8_t * const ref,
72                                                    refv + (int) ((y + ddy) * stride + x + ddx), stride);                                                    const uint8_t * const refh,
73                  break;                                                    const uint8_t * const refv,
74                                                      const uint8_t * const refhv,
75                                                      const uint32_t x,
76                                                      const uint32_t y,
77                                                      const int32_t dx,
78                                                      const int32_t dy,
79                                                      const uint32_t stride,
80                                                      const uint32_t quarterpel,
81                                                      const uint32_t rounding)
82    {
83            if(quarterpel) {
84                    interpolate8x8_quarterpel((uint8_t *) refv, (uint8_t *) ref, (uint8_t *) refh,
85                            (uint8_t *) refh + 64, (uint8_t *) refhv, x, y, dx, dy, stride, rounding);
86    
         case 2:  
                 ddx = (dx - 1) / 2;  
                 ddy = dy / 2;  
87                  transfer_8to16sub(dct_codes, cur + y * stride + x,                  transfer_8to16sub(dct_codes, cur + y * stride + x,
88                                                    refh + (int) ((y + ddy) * stride + x + ddx), stride);                                                    refv + y*stride + x, stride);
89                  break;          }
90            else
91            {
92                    const uint8_t * reference;
93    
94                    switch (((dx & 1) << 1) + (dy & 1))     // ((dx%2)?2:0)+((dy%2)?1:0)
95                    {
96                    case 0: reference = ref + ((y + dy / 2) * stride + x + dx / 2); break;
97                    case 1: reference = refv + ((y + (dy-1) / 2) * stride + x + dx / 2); break;
98                    case 2: reference = refh + ((y + dy / 2) * stride + x + (dx-1) / 2); break;
99          default:                                        // case 3:          default:                                        // case 3:
100                  ddx = (dx - 1) / 2;                          reference = refhv + ((y + (dy-1) / 2) * stride + x + (dx-1) / 2); break;
101                  ddy = (dy - 1) / 2;                  }
102                  transfer_8to16sub(dct_codes, cur + y * stride + x,                  transfer_8to16sub(dct_codes, cur + y * stride + x,
103                                                    refhv + (int) ((y + ddy) * stride + x + ddx), stride);                                                            reference, stride);
                 break;  
104          }          }
105  }  }
106    
   
   
107  void  void
108  MBMotionCompensation(MACROBLOCK * const mb,  MBMotionCompensation(MACROBLOCK * const mb,
109                                           const uint32_t i,                                           const uint32_t i,
# Line 72  Line 117 
117                                           const uint32_t width,                                           const uint32_t width,
118                                           const uint32_t height,                                           const uint32_t height,
119                                           const uint32_t edged_width,                                           const uint32_t edged_width,
120                                             const uint32_t quarterpel,
121                                           const uint32_t rounding)                                           const uint32_t rounding)
122  {  {
123          static const uint32_t roundtab[16] =          if (mb->mode == MODE_NOT_CODED) {
124                  { 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),
125                                                            ref->y + 16 * (i + j * edged_width),
   
         if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {  
                 int32_t dx = mb->mvs[0].x;  
                 int32_t dy = mb->mvs[0].y;  
   
                 compensate8x8_halfpel(&dct_codes[0 * 64], cur->y, ref->y, refh->y,  
                                                           refv->y, refhv->y, 16 * i, 16 * j, dx, dy,  
126                                                            edged_width);                                                            edged_width);
127                  compensate8x8_halfpel(&dct_codes[1 * 64], cur->y, ref->y, refh->y,                  transfer8x8_copy(cur->y + 16 * (i + j * edged_width) + 8,
128                                                            refv->y, refhv->y, 16 * i + 8, 16 * j, dx, dy,                                                          ref->y + 16 * (i + j * edged_width) + 8,
129                                                            edged_width);                                                            edged_width);
130                  compensate8x8_halfpel(&dct_codes[2 * 64], cur->y, ref->y, refh->y,                  transfer8x8_copy(cur->y + 16 * (i + j * edged_width) + 8 * edged_width,
131                                                            refv->y, refhv->y, 16 * i, 16 * j + 8, dx, dy,                                                          ref->y + 16 * (i + j * edged_width) + 8 * edged_width,
132                                                            edged_width);
133                    transfer8x8_copy(cur->y + 16 * (i + j * edged_width) + 8 * (edged_width+1),
134                                                            ref->y + 16 * (i + j * edged_width) + 8 * (edged_width+1),
135                                                            edged_width);                                                            edged_width);
                 compensate8x8_halfpel(&dct_codes[3 * 64], cur->y, ref->y, refh->y,  
                                                           refv->y, refhv->y, 16 * i + 8, 16 * j + 8, dx,  
                                                           dy, edged_width);  
   
                 dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;  
                 dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;  
136    
137                  /* u,v-image-based compensation                  transfer8x8_copy(cur->u + 8 * (i + j * edged_width/2),
138                  compensate8x8_halfpel(&dct_codes[4 * 64], cur->u, ref->u, refh->u,                                                          ref->u + 8 * (i + j * edged_width/2),
                                                           refv->u, refhv->u, 8 * i, 8 * j, dx, dy,  
139                                                            edged_width / 2);                                                            edged_width / 2);
140                  compensate8x8_halfpel(&dct_codes[5 * 64], cur->v, ref->v, refh->v,                  transfer8x8_copy(cur->v + 8 * (i + j * edged_width/2),
141                                                            refv->v, refhv->v, 8 * i, 8 * j, dx, dy,                                                          ref->v + 8 * (i + j * edged_width/2),
142                                                            edged_width / 2);                                                            edged_width / 2);
143                  */                  return;
144            }
145    
146            if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {
147                    int32_t dx = mb->mvs[0].x;
148                    int32_t dy = mb->mvs[0].y;
149    
150                    if(quarterpel) {
151                            dx = mb->qmvs[0].x;
152                            dy = mb->qmvs[0].y;
153                    }
154    
155                    compensate16x16_interpolate(&dct_codes[0 * 64], cur->y, ref->y, refh->y,
156                                                              refv->y, refhv->y, 16 * i, 16 * j, dx,
157                                                              dy, edged_width, quarterpel, rounding);
158    
159                  /* --- u,v-block-based interpolation & compensation --- */                  if (quarterpel)
160                    {
161                            dx = (dx >> 2) + roundtab_78[dx & 0x7];
162                            dy = (dy >> 2) + roundtab_78[dy & 0x7];
163                    }
164                    else {
165                            dx = (dx >> 1) + roundtab_79[dx & 0x3];
166                            dy = (dy >> 1) + roundtab_79[dy & 0x3];
167                    }
168    
169                  interpolate8x8_switch(refv->u, ref->u, 8 * i, 8 * j, dx, dy,                  /* uv-block-based compensation */
                                                           edged_width / 2, rounding);  
170                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],
171                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,
172                                                    refv->u + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(refv->u, ref->u, 8 * i, 8 * j,
173                                                                                                            dx, dy, edged_width / 2, rounding),
174                                                    edged_width / 2);                                                    edged_width / 2);
175    
                 interpolate8x8_switch(refv->v, ref->v, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2, rounding);  
176                  transfer_8to16sub(&dct_codes[5 * 64],                  transfer_8to16sub(&dct_codes[5 * 64],
177                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,
178                                                    refv->v + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(refv->u, ref->v, 8 * i, 8 * j,
179                                                                                                            dx, dy, edged_width / 2, rounding),
180                                                    edged_width / 2);                                                    edged_width / 2);
                 /* */  
181    
182          } else                                          // mode == MODE_INTER4V          } else {                                        // mode == MODE_INTER4V
         {  
183                  int32_t sum, dx, dy;                  int32_t sum, dx, dy;
184                    VECTOR *mvs;
185    
186                  compensate8x8_halfpel(&dct_codes[0 * 64], cur->y, ref->y, refh->y,                  if(quarterpel)
187                                                            refv->y, refhv->y, 16 * i, 16 * j, mb->mvs[0].x,                          mvs = mb->qmvs;
188                                                            mb->mvs[0].y, edged_width);                  else
189                  compensate8x8_halfpel(&dct_codes[1 * 64], cur->y, ref->y, refh->y,                          mvs = mb->mvs;
190    
191                    compensate8x8_interpolate(&dct_codes[0 * 64], cur->y, ref->y, refh->y,
192                                                              refv->y, refhv->y, 16 * i, 16 * j, mvs[0].x,
193                                                              mvs[0].y, edged_width, quarterpel, rounding);
194                    compensate8x8_interpolate(&dct_codes[1 * 64], cur->y, ref->y, refh->y,
195                                                            refv->y, refhv->y, 16 * i + 8, 16 * j,                                                            refv->y, refhv->y, 16 * i + 8, 16 * j,
196                                                            mb->mvs[1].x, mb->mvs[1].y, edged_width);                                                            mvs[1].x, mvs[1].y, edged_width, quarterpel, rounding);
197                  compensate8x8_halfpel(&dct_codes[2 * 64], cur->y, ref->y, refh->y,                  compensate8x8_interpolate(&dct_codes[2 * 64], cur->y, ref->y, refh->y,
198                                                            refv->y, refhv->y, 16 * i, 16 * j + 8,                                                            refv->y, refhv->y, 16 * i, 16 * j + 8,
199                                                            mb->mvs[2].x, mb->mvs[2].y, edged_width);                                                            mvs[2].x, mvs[2].y, edged_width, quarterpel, rounding);
200                  compensate8x8_halfpel(&dct_codes[3 * 64], cur->y, ref->y, refh->y,                  compensate8x8_interpolate(&dct_codes[3 * 64], cur->y, ref->y, refh->y,
201                                                            refv->y, refhv->y, 16 * i + 8, 16 * j + 8,                                                            refv->y, refhv->y, 16 * i + 8, 16 * j + 8,
202                                                            mb->mvs[3].x, mb->mvs[3].y, edged_width);                                                            mvs[3].x, mvs[3].y, edged_width, quarterpel, rounding);
203    
204                  sum = mb->mvs[0].x + mb->mvs[1].x + mb->mvs[2].x + mb->mvs[3].x;                  if(quarterpel)
205                  dx = (sum ? SIGN(sum) *                          sum = (mvs[0].x / 2) + (mvs[1].x / 2) + (mvs[2].x / 2) + (mvs[3].x / 2);
206                            (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);                  else
207                            sum = mvs[0].x + mvs[1].x + mvs[2].x + mvs[3].x;
208    
209                  sum = mb->mvs[0].y + mb->mvs[1].y + mb->mvs[2].y + mb->mvs[3].y;                  dx = (sum >> 3) + roundtab_76[sum & 0xf];
                 dy = (sum ? SIGN(sum) *  
                           (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);  
210    
211                  /* --- uv-image-based compensation -- -                  if(quarterpel)
212                  compensate8x8_halfpel(&dct_codes[4 * 64], cur->u, ref->u, refh->u,                          sum = (mvs[0].y / 2) + (mvs[1].y / 2) + (mvs[2].y / 2) + (mvs[3].y / 2);
213                                                            refv->u, refhv->u, 8 * i, 8 * j, dx, dy,                  else
214                                                            edged_width / 2);                          sum = mvs[0].y + mvs[1].y + mvs[2].y + mvs[3].y;
                 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);  
                 */  
215    
216                  /* --- uv-block-based compensation ---                  dy = (sum >> 3) + roundtab_76[sum & 0xf];
                 WARNING: these ditry the refv->u and refv->v images   */  
217    
218                  interpolate8x8_switch(refv->u, ref->u, 8 * i, 8 * j, dx, dy,                  /* uv-block-based compensation */
                                                           edged_width / 2, rounding);  
219                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],
220                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,
221                                                    refv->u + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(refv->u, ref->u, 8 * i, 8 * j,
222                                                                                                            dx, dy, edged_width / 2, rounding),
223                                                    edged_width / 2);                                                    edged_width / 2);
224    
                 interpolate8x8_switch(refv->v, ref->v, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2, rounding);  
225                  transfer_8to16sub(&dct_codes[5 * 64],                  transfer_8to16sub(&dct_codes[5 * 64],
226                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,
227                                                    refv->v + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(refv->u, ref->v, 8 * i, 8 * j,
228                                                                                                            dx, dy, edged_width / 2, rounding),
229    
230                                                    edged_width / 2);                                                    edged_width / 2);
                 /* */  
231          }          }
232  }  }
233    
# Line 212  Line 264 
264                  dx = mb->mvs[0].x;                  dx = mb->mvs[0].x;
265                  dy = mb->mvs[0].y;                  dy = mb->mvs[0].y;
266    
267                  transfer_8to16sub_c(&dct_codes[0 * 64],                  transfer_8to16sub(&dct_codes[0 * 64],
268                                                          cur->y + (j * 16) * edged_width + (i * 16),                                                          cur->y + (j * 16) * edged_width + (i * 16),
269                                                          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,
270                                                                          i * 16, j * 16, 1, dx, dy, edged_width),                                                                          i * 16, j * 16, 1, dx, dy, edged_width),
# Line 224  Line 276 
276                                                                    i * 16 + 8, j * 16, 1, dx, dy, edged_width),                                                                    i * 16 + 8, j * 16, 1, dx, dy, edged_width),
277                                                    edged_width);                                                    edged_width);
278    
279                  transfer_8to16sub_c(&dct_codes[2 * 64],                  transfer_8to16sub(&dct_codes[2 * 64],
280                                                          cur->y + (j * 16 + 8) * edged_width + (i * 16),                                                          cur->y + (j * 16 + 8) * edged_width + (i * 16),
281                                                          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,
282                                                                          i * 16, j * 16 + 8, 1, dx, dy,                                                                          i * 16, j * 16 + 8, 1, dx, dy, edged_width),
283                                                                          edged_width), edged_width);                                                          edged_width);
284    
285                  transfer_8to16sub(&dct_codes[3 * 64],                  transfer_8to16sub(&dct_codes[3 * 64],
286                                                    cur->y + (j * 16 + 8) * edged_width + (i * 16 + 8),                                                    cur->y + (j * 16 + 8) * edged_width + (i * 16 + 8),
287                                                    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,
288                                                                    i * 16 + 8, j * 16 + 8, 1, dx, dy,                                                                    i * 16 + 8, j * 16 + 8, 1, dx, dy, edged_width),
289                                                                    edged_width), edged_width);                                                          edged_width);
290    
291    
292                  dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;                  dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;
293                  dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;                  dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;
294    
295                  /* --- uv-image-based compensation ---                  /* uv-block-based compensation */
                 compensate8x8_halfpel(&dct_codes[4 * 64], cur->u, f_ref->u, f_refh->u,  
                                                           f_refv->u, f_refhv->u, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2);  
                 compensate8x8_halfpel(&dct_codes[5 * 64], cur->v, f_ref->v, f_refh->v,  
                                                           f_refv->v, f_refhv->v, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2);  
                 */  
   
                 /* --- u,v-block-based interpolation & compensation --- */  
                 interpolate8x8_switch(f_refv->u, f_ref->u, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2, 0);  
296                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],
297                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,
298                                                    f_refv->u + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(f_refv->u, f_ref->u, 8 * i, 8 * j,
299                                                                                                            dx, dy, edged_width / 2, 0),
300    
301                                                    edged_width / 2);                                                    edged_width / 2);
302    
                 interpolate8x8_switch(f_refv->v, f_ref->v, 8 * i, 8 * j, dx, dy,  
                                                           edged_width / 2, 0);  
303                  transfer_8to16sub(&dct_codes[5 * 64],                  transfer_8to16sub(&dct_codes[5 * 64],
304                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,
305                                                    f_refv->v + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(f_refv->u, f_ref->v, 8 * i, 8 * j,
306                                                                                                            dx, dy, edged_width / 2, 0),
307    
308                                                    edged_width / 2);                                                    edged_width / 2);
                 /* */  
309    
310                  break;                  break;
311    
# Line 271  Line 313 
313                  b_dx = mb->b_mvs[0].x;                  b_dx = mb->b_mvs[0].x;
314                  b_dy = mb->b_mvs[0].y;                  b_dy = mb->b_mvs[0].y;
315    
316                  transfer_8to16sub_c(&dct_codes[0 * 64],                  transfer_8to16sub(&dct_codes[0 * 64],
317                                                          cur->y + (j * 16) * edged_width + (i * 16),                                                          cur->y + (j * 16) * edged_width + (i * 16),
318                                                          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,
319                                                                          i * 16, j * 16, 1, b_dx, b_dy,                                                                          i * 16, j * 16, 1, b_dx, b_dy,
# Line 283  Line 325 
325                                                                    i * 16 + 8, j * 16, 1, b_dx, b_dy,                                                                    i * 16 + 8, j * 16, 1, b_dx, b_dy,
326                                                                    edged_width), edged_width);                                                                    edged_width), edged_width);
327    
328                  transfer_8to16sub_c(&dct_codes[2 * 64],                  transfer_8to16sub(&dct_codes[2 * 64],
329                                                          cur->y + (j * 16 + 8) * edged_width + (i * 16),                                                          cur->y + (j * 16 + 8) * edged_width + (i * 16),
330                                                          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,
331                                                                          i * 16, j * 16 + 8, 1, b_dx, b_dy,                                                                          i * 16, j * 16 + 8, 1, b_dx, b_dy,
# Line 298  Line 340 
340                  b_dx = (b_dx & 3) ? (b_dx >> 1) | 1 : b_dx / 2;                  b_dx = (b_dx & 3) ? (b_dx >> 1) | 1 : b_dx / 2;
341                  b_dy = (b_dy & 3) ? (b_dy >> 1) | 1 : b_dy / 2;                  b_dy = (b_dy & 3) ? (b_dy >> 1) | 1 : b_dy / 2;
342    
343                  /* --- uv-image-based compensation ---                  /* uv-block-based compensation */
                 compensate8x8_halfpel(&dct_codes[4 * 64], cur->u, b_ref->u, b_refh->u,  
                                                           b_refv->u, b_refhv->u, 8 * i, 8 * j, b_dx, b_dy,  
                                                           edged_width / 2);  
                 compensate8x8_halfpel(&dct_codes[5 * 64], cur->v, b_ref->v, b_refh->v,  
                                                           b_refv->v, b_refhv->v, 8 * i, 8 * j, b_dx, b_dy,  
                                                           edged_width / 2);  
                 */  
   
                 /* --- u,v-block-based interpolation & compensation --- */  
                 interpolate8x8_switch(b_refv->u, b_ref->u, 8 * i, 8 * j, b_dx, b_dy,  
                                                           edged_width / 2, 0);  
344                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],
345                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,                                                    cur->u + 8 * j * edged_width / 2 + 8 * i,
346                                                    b_refv->u + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(f_refv->u, b_ref->u, 8 * i, 8 * j,
347                                                                                                            b_dx, b_dy, edged_width / 2, 0),
348    
349                                                    edged_width / 2);                                                    edged_width / 2);
350    
                 interpolate8x8_switch(b_refv->v, b_ref->v, 8 * i, 8 * j, b_dx, b_dy,  
                                                           edged_width / 2, 0);  
351                  transfer_8to16sub(&dct_codes[5 * 64],                  transfer_8to16sub(&dct_codes[5 * 64],
352                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,                                                    cur->v + 8 * j * edged_width / 2 + 8 * i,
353                                                    b_refv->v + 8 * j * edged_width / 2 + 8 * i,                                                          interpolate8x8_switch2(f_refv->u, b_ref->v, 8 * i, 8 * j,
354                                                                                                            b_dx, b_dy, edged_width / 2, 0),
355    
356                                                    edged_width / 2);                                                    edged_width / 2);
                 /* */  
357    
358                  break;                  break;
359    
360    
361          case MODE_INTERPOLATE:          /* _could_ use DIRECT, but would be overkill (no 4MV there) */          case MODE_INTERPOLATE:          /* _could_ use DIRECT, but would be overkill (no 4MV there) */
362            case MODE_DIRECT_NO4V:
363    
364                  dx = mb->mvs[0].x;                  dx = mb->mvs[0].x;
365                  dy = mb->mvs[0].y;                  dy = mb->mvs[0].y;
# Line 334  Line 367 
367                  b_dx = mb->b_mvs[0].x;                  b_dx = mb->b_mvs[0].x;
368                  b_dy = mb->b_mvs[0].y;                  b_dy = mb->b_mvs[0].y;
369    
370                  for (k=0;k<4;k++)                  for (k = 0; k < 4; k++) {
371                  {                          transfer_8to16sub2(&dct_codes[k * 64],
                         transfer_8to16sub2_c(&dct_codes[k * 64],  
372                                                           cur->y + (i * 16+(k&1)*8) + (j * 16+((k>>1)*8)) * edged_width,                                                           cur->y + (i * 16+(k&1)*8) + (j * 16+((k>>1)*8)) * edged_width,
373                                                           get_ref(f_ref->y, f_refh->y, f_refv->y,                                                           get_ref(f_ref->y, f_refh->y, f_refv->y,
374                                                                           f_refhv->y, 2*i + (k&1), 2*j + (k>>1), 8, dx, dy,                                                                           f_refhv->y, 2*i + (k&1), 2*j + (k>>1), 8, dx, dy,
# Line 353  Line 385 
385                  b_dx = (b_dx & 3) ? (b_dx >> 1) | 1 : b_dx / 2;                  b_dx = (b_dx & 3) ? (b_dx >> 1) | 1 : b_dx / 2;
386                  b_dy = (b_dy & 3) ? (b_dy >> 1) | 1 : b_dy / 2;                  b_dy = (b_dy & 3) ? (b_dy >> 1) | 1 : b_dy / 2;
387    
388                  /* --- uv-image-based compensation ---                  transfer_8to16sub2(&dct_codes[4 * 64],
   
                 transfer_8to16sub2_c(&dct_codes[4 * 64],  
389                                                           cur->u + (y * 8) * edged_width / 2 + (x * 8),                                                           cur->u + (y * 8) * edged_width / 2 + (x * 8),
390                                                           get_ref(f_ref->u, f_refh->u, f_refv->u,                                                          interpolate8x8_switch2(f_refv->u, b_ref->u, 8 * i, 8 * j,
391                                                                           f_refhv->u, i, j, 8, dx, dy,                                                                                                          b_dx, b_dy, edged_width / 2, 0),
392                                                                           edged_width / 2),                                                          interpolate8x8_switch2(f_refv->u + 8, f_ref->u, 8 * i, 8 * j,
393                                                           get_ref(b_ref->u, b_refh->u, b_refv->u,                                                                                                          dx, dy, edged_width / 2, 0),
                                                                          b_refhv->u, i, j, 8, b_dx, b_dy,  
                                                                          edged_width / 2),  
394                                                           edged_width / 2);                                                           edged_width / 2);
395    
396                  transfer_8to16sub2_c(&dct_codes[5 * 64],                  transfer_8to16sub2(&dct_codes[5 * 64],
397                                                           cur->v + (y * 8) * edged_width / 2 + (x * 8),                                                           cur->v + (y * 8) * edged_width / 2 + (x * 8),
398                                                           get_ref(f_ref->v, f_refh->v, f_refv->v,                                                          interpolate8x8_switch2(f_refv->u, b_ref->v, 8 * i, 8 * j,
399                                                                           f_refhv->v, 8 * i, 8 * j, 1, dx, dy,                                                                                                          b_dx, b_dy, edged_width / 2, 0),
400                                                                           edged_width / 2),                                                          interpolate8x8_switch2(f_refv->u + 8, f_ref->v, 8 * i, 8 * j,
401                                                           get_ref(b_ref->v, b_refh->v, b_refv->v,                                                                                                          dx, dy, edged_width / 2, 0),
                                                                          b_refhv->v, 8 * i, 8 * j, 1, b_dx, b_dy,  
                                                                          edged_width / 2),  
402                                                           edged_width / 2);                                                           edged_width / 2);
                  */  
403    
                 /* --- u,v-block-based interpolation & compensation ---  */  
                 interpolate8x8_switch(f_refv->u, f_ref->u, 8 * i, 8 * j,   dx,   dy, edged_width / 2, 0);  
                 interpolate8x8_switch(b_refv->u, b_ref->u, 8 * i, 8 * j, b_dx, b_dy, edged_width / 2, 0);  
                 transfer_8to16sub2_c(&dct_codes[4 * 64],  
                                                            cur->u + 8 * y * edged_width / 2 + 8 * x,  
                                                         f_refv->u + 8 * j * edged_width / 2 + 8 * i,  
                                                         b_refv->u + 8 * j * edged_width / 2 + 8 * i,  
                                                         edged_width / 2);  
   
                 interpolate8x8_switch(f_refv->v, f_ref->v, 8 * i, 8 * j,   dx,   dy, edged_width / 2, 0);  
                 interpolate8x8_switch(b_refv->v, b_ref->v, 8 * i, 8 * j, b_dx, b_dy, edged_width / 2, 0);  
                 transfer_8to16sub2_c(&dct_codes[5 * 64],  
                                                            cur->v + 8 * y * edged_width / 2 + 8 * x,  
                                                         f_refv->v + 8 * j * edged_width / 2 + 8 * i,  
                                                         b_refv->v + 8 * j * edged_width / 2 + 8 * i,  
                                                         edged_width / 2);  
                  /* */  
404                  break;                  break;
405    
406          case MODE_DIRECT:          case MODE_DIRECT:
# Line 407  Line 415 
415    
416  //              fprintf(stderr,"Direct Vector %d -- %d:%d    %d:%d\n",k,dx,dy,b_dx,b_dy);  //              fprintf(stderr,"Direct Vector %d -- %d:%d    %d:%d\n",k,dx,dy,b_dx,b_dy);
417    
418                          transfer_8to16sub2_c(&dct_codes[k * 64],                          transfer_8to16sub2(&dct_codes[k * 64],
419                                                           cur->y + (i*16 + (k&1)*8) + (j*16 + (k>>1)*8 ) * edged_width,                                                           cur->y + (i*16 + (k&1)*8) + (j*16 + (k>>1)*8 ) * edged_width,
420                                                           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,
421                                                                           2*i + (k&1), 2*j + (k>>1), 8, dx, dy,                                                                           2*i + (k&1), 2*j + (k>>1), 8, dx, dy,
# Line 436  Line 444 
444                  if (quarterpel)                  if (quarterpel)
445                          sum /= 2;                          sum /= 2;
446  */  */
447                    transfer_8to16sub2(&dct_codes[4 * 64],
                 /* --- uv-image-based compensation ---  
                 transfer_8to16sub2_c(&dct_codes[4 * 64],  
448                                                           cur->u + (y * 8) * edged_width / 2 + (x * 8),                                                           cur->u + (y * 8) * edged_width / 2 + (x * 8),
449                                                           get_ref(f_ref->u, f_refh->u, f_refv->u,                                                          interpolate8x8_switch2(f_refv->u, b_ref->u, 8 * i, 8 * j,
450                                                                           f_refhv->u, i, j, 8, dx, dy,                                                                                                          b_dx, b_dy, edged_width / 2, 0),
451                                                                           edged_width / 2),                                                          interpolate8x8_switch2(f_refv->u + 8, f_ref->u, 8 * i, 8 * j, dx, dy,
452                                                           get_ref(b_ref->u, b_refh->u, b_refv->u,                                                            edged_width / 2, 0),
                                                                          b_refhv->u, i, j, 8, b_dx, b_dy,  
                                                                          edged_width / 2),  
453                                                           edged_width / 2);                                                           edged_width / 2);
454    
455                  transfer_8to16sub2_c(&dct_codes[5 * 64],                  transfer_8to16sub2(&dct_codes[5 * 64],
456                                                           cur->v + (y * 8) * edged_width / 2 + (x * 8),                                                           cur->v + (y * 8) * edged_width / 2 + (x * 8),
457                                                           get_ref(f_ref->v, f_refh->v, f_refv->v,                                                          interpolate8x8_switch2(f_refv->u, b_ref->v, 8 * i, 8 * j,
458                                                                           f_refhv->v, i, j, 8, dx, dy,                                                                                                          b_dx, b_dy, edged_width / 2, 0),
459                                                                           edged_width / 2),                                                          interpolate8x8_switch2(f_refv->u + 8, f_ref->v, 8 * i, 8 * j,
460                                                           get_ref(b_ref->v, b_refh->v, b_refv->v,                                                                                                          dx, dy, edged_width / 2, 0),
                                                                          b_refhv->v, i, j, 8, b_dx, b_dy,  
                                                                          edged_width / 2),  
461                                                           edged_width / 2);                                                           edged_width / 2);
                 */  
462    
463    
                 /* --- uv-block-based compensation */  
                 interpolate8x8_switch(f_refv->u, f_ref->u, 8 * i, 8 * j,   dx,   dy, edged_width / 2, 0);  
                 interpolate8x8_switch(b_refv->u, b_ref->u, 8 * i, 8 * j, b_dx, b_dy, edged_width / 2, 0);  
                 transfer_8to16sub2_c(&dct_codes[4 * 64],  
                                                            cur->u + 8 * y * edged_width / 2 + 8 * x,  
                                                         f_refv->u + 8 * j * edged_width / 2 + 8 * i,  
                                                         b_refv->u + 8 * j * edged_width / 2 + 8 * i,  
                                                         edged_width / 2);  
   
                 interpolate8x8_switch(f_refv->v, f_ref->v, 8 * i, 8 * j,   dx,   dy, edged_width / 2, 0);  
                 interpolate8x8_switch(b_refv->v, b_ref->v, 8 * i, 8 * j, b_dx, b_dy, edged_width / 2, 0);  
                 transfer_8to16sub2_c(&dct_codes[5 * 64],  
                                                            cur->v + 8 * y * edged_width / 2 + 8 * x,  
                                                         f_refv->v + 8 * j * edged_width / 2 + 8 * i,  
                                                         b_refv->v + 8 * j * edged_width / 2 + 8 * i,  
                                                         edged_width / 2);  
                 /* */  
464                  break;                  break;
465          }          }
466  }  }

Legend:
Removed from v.449  
changed lines
  Added in v.616

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