[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 615, Mon Oct 28 11:32:50 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  // 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
# Line 5  Line 6 
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    
13  #define ABS(X) (((X)>0)?(X):-(X))  #define ABS(X) (((X)>0)?(X):-(X))
14  #define SIGN(X) (((X)>0)?1:-1)  #define SIGN(X) (((X)>0)?1:-1)
15    
   
16  static __inline void  static __inline void
17  compensate16x16_interpolate(int16_t * const dct_codes,  compensate16x16_interpolate(int16_t * const dct_codes,
18                                                      uint8_t * const cur,                                                      uint8_t * const cur,
# Line 157  Line 158 
158    
159                  if (quarterpel)                  if (quarterpel)
160                  {                  {
161                          dx = (dx >> 1) | (dx & 1);                          dx = (dx >> 2) + roundtab_78[dx & 0x7];
162                          dy = (dy >> 1) | (dy & 1);                          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                  }                  }
   
                 dx = (dx & 3) ? (dx >> 1) | 1 : dx / 2;  
                 dy = (dy & 3) ? (dy >> 1) | 1 : dy / 2;  
168    
169                  /* uv-block-based compensation */                  /* uv-block-based compensation */
170                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],
# Line 199  Line 201 
201                                                            refv->y, refhv->y, 16 * i + 8, 16 * j + 8,                                                            refv->y, refhv->y, 16 * i + 8, 16 * j + 8,
202                                                            mvs[3].x, mvs[3].y, edged_width, quarterpel, rounding);                                                            mvs[3].x, mvs[3].y, edged_width, quarterpel, rounding);
203    
                 sum = mvs[0].x + mvs[1].x + mvs[2].x + mvs[3].x;  
   
204                  if(quarterpel)                  if(quarterpel)
205                          sum /= 2;                          sum = (mvs[0].x / 2) + (mvs[1].x / 2) + (mvs[2].x / 2) + (mvs[3].x / 2);
206                    else
207                  dx = (sum ? SIGN(sum) *                          sum = mvs[0].x + mvs[1].x + mvs[2].x + mvs[3].x;
                           (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);  
208    
209                  sum = mvs[0].y + mvs[1].y + mvs[2].y + mvs[3].y;                  dx = (sum >> 3) + roundtab_76[sum & 0xf];
210    
211                  if(quarterpel)                  if(quarterpel)
212                          sum /= 2;                          sum = (mvs[0].y / 2) + (mvs[1].y / 2) + (mvs[2].y / 2) + (mvs[3].y / 2);
213                    else
214                            sum = mvs[0].y + mvs[1].y + mvs[2].y + mvs[3].y;
215    
216                  dy = (sum ? SIGN(sum) *                  dy = (sum >> 3) + roundtab_76[sum & 0xf];
                           (roundtab[ABS(sum) % 16] + (ABS(sum) / 16) * 2) : 0);  
217    
218                  /* uv-block-based compensation */                  /* uv-block-based compensation */
219                  transfer_8to16sub(&dct_codes[4 * 64],                  transfer_8to16sub(&dct_codes[4 * 64],

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

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