[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 530, Mon Sep 23 20:36:02 2002 UTC revision 619, Sat Nov 2 15:52:31 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    
# Line 10  Line 12 
12  #define ABS(X) (((X)>0)?(X):-(X))  #define ABS(X) (((X)>0)?(X):-(X))
13  #define SIGN(X) (((X)>0)?1:-1)  #define SIGN(X) (((X)>0)?1:-1)
14    
15    static __inline void
16    compensate16x16_interpolate(int16_t * const dct_codes,
17                                                        uint8_t * const cur,
18                                                        const uint8_t * const ref,
19                                                        const uint8_t * const refh,
20                                                        const uint8_t * const refv,
21                                                        const uint8_t * const refhv,
22                                                        const uint32_t x,
23                                                        const uint32_t y,
24                                                        const int32_t dx,
25                                                        const int32_t dy,
26                                                        const uint32_t stride,
27                                                        const uint32_t quarterpel,
28                                                        const uint32_t rounding)
29    {
30            if(quarterpel) {
31                    interpolate16x16_quarterpel((uint8_t *) refv, (uint8_t *) ref, (uint8_t *) refh,
32                            (uint8_t *) refh + 64, (uint8_t *) refhv, x, y, dx, dy, stride, rounding);
33    
34                    transfer_8to16sub(dct_codes, cur + y*stride + x,
35                                                      refv + y*stride + x, stride);
36                    transfer_8to16sub(dct_codes+64, cur + y*stride + x + 8,
37                                                      refv + y*stride + x + 8, stride);
38                    transfer_8to16sub(dct_codes+128, cur + y*stride + x + 8*stride,
39                                                      refv + y*stride + x + 8*stride, stride);
40                    transfer_8to16sub(dct_codes+192, cur + y*stride + x + 8*stride + 8,
41                                                      refv + y*stride + x + 8*stride+8, stride);
42    
43            }
44            else
45            {
46                    const uint8_t * reference;
47    
48                    switch (((dx & 1) << 1) + (dy & 1))     // ((dx%2)?2:0)+((dy%2)?1:0)
49                    {
50                    case 0: reference = ref + ((y + dy / 2) * stride + x + dx / 2); break;
51                    case 1: reference = refv + ((y + (dy-1) / 2) * stride + x + dx / 2); break;
52                    case 2: reference = refh + ((y + dy / 2) * stride + x + (dx-1) / 2); break;
53                    default:                                        // case 3:
54                            reference = refhv + ((y + (dy-1) / 2) * stride + x + (dx-1) / 2); break;
55                    }
56                    transfer_8to16sub(dct_codes, cur + y * stride + x,
57                                                              reference, stride);
58                    transfer_8to16sub(dct_codes+64, cur + y * stride + x + 8,
59                                                              reference + 8, stride);
60                    transfer_8to16sub(dct_codes+128, cur + y * stride + x + 8*stride,
61                                                              reference + 8*stride, stride);
62                    transfer_8to16sub(dct_codes+192, cur + y * stride + x + 8*stride+8,
63                                                              reference + 8*stride + 8, stride);
64            }
65    }
66    
67  static __inline void  static __inline void
68  compensate8x8_halfpel(int16_t * const dct_codes,  compensate8x8_interpolate(int16_t * const dct_codes,
69                                            uint8_t * const cur,                                            uint8_t * const cur,
70                                            const uint8_t * const ref,                                            const uint8_t * const ref,
71                                            const uint8_t * const refh,                                            const uint8_t * const refh,
# Line 21  Line 74 
74                                            const uint32_t x,                                            const uint32_t x,
75                                            const uint32_t y,                                            const uint32_t y,
76                                            const int32_t dx,                                            const int32_t dx,
77                                            const int dy,                                                    const int32_t dy,
78                                            const uint32_t stride)                                                    const uint32_t stride,
79                                                      const uint32_t quarterpel,
80                                                      const uint32_t rounding)
81    {
82            if(quarterpel) {
83                    interpolate8x8_quarterpel((uint8_t *) refv, (uint8_t *) ref, (uint8_t *) refh,
84                            (uint8_t *) refh + 64, (uint8_t *) refhv, x, y, dx, dy, stride, rounding);
85    
86                    transfer_8to16sub(dct_codes, cur + y*stride + x,
87                                                      refv + y*stride + x, stride);
88            }
89            else
90  {  {
91          const uint8_t * reference;          const uint8_t * reference;
92    
# Line 37  Line 101 
101          transfer_8to16sub(dct_codes, cur + y * stride + x,          transfer_8to16sub(dct_codes, cur + y * stride + x,
102                                                    reference, stride);                                                    reference, stride);
103  }  }
104    }
105    
106  void  void
107  MBMotionCompensation(MACROBLOCK * const mb,  MBMotionCompensation(MACROBLOCK * const mb,
# Line 51  Line 116 
116                                           const uint32_t width,                                           const uint32_t width,
117                                           const uint32_t height,                                           const uint32_t height,
118                                           const uint32_t edged_width,                                           const uint32_t edged_width,
119                                             const uint32_t quarterpel,
120                                           const uint32_t rounding)                                           const uint32_t rounding)
121  {  {
122          static const uint32_t roundtab[16] =          if (mb->mode == MODE_NOT_CODED || mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {
123                  { 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2 };  
124                    int32_t dx = (quarterpel ? mb->qmvs[0].x : mb->mvs[0].x);
125                    int32_t dy = (quarterpel ? mb->qmvs[0].y : mb->mvs[0].y);
126    
127          if (mb->mode == MODE_NOT_CODED) {                  if ( (mb->mode == MODE_NOT_CODED) && (dx==0) && (dy==0) ) {     /* quick copy */
128                  transfer8x8_copy(cur->y + 16 * (i + j * edged_width),                  transfer8x8_copy(cur->y + 16 * (i + j * edged_width),
129                                                          ref->y + 16 * (i + j * edged_width),                                                          ref->y + 16 * (i + j * edged_width),
130                                                          edged_width);                                                          edged_width);
# Line 78  Line 146 
146                                                          edged_width / 2);                                                          edged_width / 2);
147                  return;                  return;
148          }          }
149            /* quick MODE_NOT_CODED for GMC with MV!=(0,0) is still needed */
150    
151          if (mb->mode == MODE_INTER || mb->mode == MODE_INTER_Q) {                  compensate16x16_interpolate(&dct_codes[0 * 64], cur->y, ref->y, refh->y,
152                  int32_t dx = mb->mvs[0].x;                                                    refv->y, refhv->y, 16 * i, 16 * j, dx,
153                  int32_t dy = mb->mvs[0].y;                                                    dy, edged_width, quarterpel, rounding);
154    
155                  compensate8x8_halfpel(&dct_codes[0 * 64], cur->y, ref->y, refh->y,                  if (quarterpel)
156                                                            refv->y, refhv->y, 16 * i, 16 * j, dx, dy,                  {
157                                                            edged_width);                          dx /= 2;
158                  compensate8x8_halfpel(&dct_codes[1 * 64], cur->y, ref->y, refh->y,                          dy /= 2;
159                                                            refv->y, refhv->y, 16 * i + 8, 16 * j, dx, dy,                  }
                                                           edged_width);  
                 compensate8x8_halfpel(&dct_codes[2 * 64], cur->y, ref->y, refh->y,  
                                                           refv->y, refhv->y, 16 * i, 16 * j + 8, dx, dy,  
                                                           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);  
160    
161                  dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;                  dx = (dx >> 1) + roundtab_79[dx & 0x3];
162                  dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;                  dy = (dy >> 1) + roundtab_79[dy & 0x3];
163    
164                  /* uv-block-based compensation */                  /* uv-block-based compensation */
165                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],
# Line 114  Line 176 
176    
177          } else {                                        // mode == MODE_INTER4V          } else {                                        // mode == MODE_INTER4V
178                  int32_t sum, dx, dy;                  int32_t sum, dx, dy;
179                    VECTOR *mvs;
180    
181                  compensate8x8_halfpel(&dct_codes[0 * 64], cur->y, ref->y, refh->y,                  if(quarterpel)
182                                                            refv->y, refhv->y, 16 * i, 16 * j, mb->mvs[0].x,                          mvs = mb->qmvs;
183                                                            mb->mvs[0].y, edged_width);                  else
184                  compensate8x8_halfpel(&dct_codes[1 * 64], cur->y, ref->y, refh->y,                          mvs = mb->mvs;
185    
186                    compensate8x8_interpolate(&dct_codes[0 * 64], cur->y, ref->y, refh->y,
187                                                              refv->y, refhv->y, 16 * i, 16 * j, mvs[0].x,
188                                                              mvs[0].y, edged_width, quarterpel, rounding);
189                    compensate8x8_interpolate(&dct_codes[1 * 64], cur->y, ref->y, refh->y,
190                                                            refv->y, refhv->y, 16 * i + 8, 16 * j,                                                            refv->y, refhv->y, 16 * i + 8, 16 * j,
191                                                            mb->mvs[1].x, mb->mvs[1].y, edged_width);                                                            mvs[1].x, mvs[1].y, edged_width, quarterpel, rounding);
192                  compensate8x8_halfpel(&dct_codes[2 * 64], cur->y, ref->y, refh->y,                  compensate8x8_interpolate(&dct_codes[2 * 64], cur->y, ref->y, refh->y,
193                                                            refv->y, refhv->y, 16 * i, 16 * j + 8,                                                            refv->y, refhv->y, 16 * i, 16 * j + 8,
194                                                            mb->mvs[2].x, mb->mvs[2].y, edged_width);                                                            mvs[2].x, mvs[2].y, edged_width, quarterpel, rounding);
195                  compensate8x8_halfpel(&dct_codes[3 * 64], cur->y, ref->y, refh->y,                  compensate8x8_interpolate(&dct_codes[3 * 64], cur->y, ref->y, refh->y,
196                                                            refv->y, refhv->y, 16 * i + 8, 16 * j + 8,                                                            refv->y, refhv->y, 16 * i + 8, 16 * j + 8,
197                                                            mb->mvs[3].x, mb->mvs[3].y, edged_width);                                                            mvs[3].x, mvs[3].y, edged_width, quarterpel, rounding);
198    
199                  sum = mb->mvs[0].x + mb->mvs[1].x + mb->mvs[2].x + mb->mvs[3].x;                  if(quarterpel)
200                  dx = (sum ? SIGN(sum) *                          sum = (mvs[0].x / 2) + (mvs[1].x / 2) + (mvs[2].x / 2) + (mvs[3].x / 2);
201                            (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);                  else
202                            sum = mvs[0].x + mvs[1].x + mvs[2].x + mvs[3].x;
203    
204                  sum = mb->mvs[0].y + mb->mvs[1].y + mb->mvs[2].y + mb->mvs[3].y;                  dx = (sum >> 3) + roundtab_76[sum & 0xf];
205                  dy = (sum ? SIGN(sum) *  
206                            (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);                  if(quarterpel)
207                            sum = (mvs[0].y / 2) + (mvs[1].y / 2) + (mvs[2].y / 2) + (mvs[3].y / 2);
208                    else
209                            sum = mvs[0].y + mvs[1].y + mvs[2].y + mvs[3].y;
210    
211                    dy = (sum >> 3) + roundtab_76[sum & 0xf];
212    
213                  /* uv-block-based compensation */                  /* uv-block-based compensation */
214                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],
# Line 147  Line 221 
221                                                          cur->v + 8 * j * edged_width / 2 + 8 * i,                                                          cur->v + 8 * j * edged_width / 2 + 8 * i,
222                                                          interpolate8x8_switch2(refv->u, ref->v, 8 * i, 8 * j,                                                          interpolate8x8_switch2(refv->u, ref->v, 8 * i, 8 * j,
223                                                                                                          dx, dy, edged_width / 2, rounding),                                                                                                          dx, dy, edged_width / 2, rounding),
   
224                                                          edged_width / 2);                                                          edged_width / 2);
225          }          }
226  }  }

Legend:
Removed from v.530  
changed lines
  Added in v.619

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