[cvs] / xvidcore / src / motion / sad.c Repository:
ViewVC logotype

Diff of /xvidcore/src/motion/sad.c

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

revision 1.13.2.2, Thu Apr 10 13:05:54 2003 UTC revision 1.14, Fri Mar 28 08:43:28 2003 UTC
# Line 42  Line 42 
42  #include "../global.h"  #include "../global.h"
43  #include "sad.h"  #include "sad.h"
44    
 #include <stdlib.h>  
   
45  sad16FuncPtr sad16;  sad16FuncPtr sad16;
46  sad8FuncPtr sad8;  sad8FuncPtr sad8;
47  sad16biFuncPtr sad16bi;  sad16biFuncPtr sad16bi;
# Line 67  Line 65 
65          uint8_t const *ptr_ref = ref;          uint8_t const *ptr_ref = ref;
66    
67          for (j = 0; j < 16; j++) {          for (j = 0; j < 16; j++) {
68                          sad += abs(ptr_cur[0] - ptr_ref[0]);                          sad += ABS(ptr_cur[0] - ptr_ref[0]);
69                          sad += abs(ptr_cur[1] - ptr_ref[1]);                          sad += ABS(ptr_cur[1] - ptr_ref[1]);
70                          sad += abs(ptr_cur[2] - ptr_ref[2]);                          sad += ABS(ptr_cur[2] - ptr_ref[2]);
71                          sad += abs(ptr_cur[3] - ptr_ref[3]);                          sad += ABS(ptr_cur[3] - ptr_ref[3]);
72                          sad += abs(ptr_cur[4] - ptr_ref[4]);                          sad += ABS(ptr_cur[4] - ptr_ref[4]);
73                          sad += abs(ptr_cur[5] - ptr_ref[5]);                          sad += ABS(ptr_cur[5] - ptr_ref[5]);
74                          sad += abs(ptr_cur[6] - ptr_ref[6]);                          sad += ABS(ptr_cur[6] - ptr_ref[6]);
75                          sad += abs(ptr_cur[7] - ptr_ref[7]);                          sad += ABS(ptr_cur[7] - ptr_ref[7]);
76                          sad += abs(ptr_cur[8] - ptr_ref[8]);                          sad += ABS(ptr_cur[8] - ptr_ref[8]);
77                          sad += abs(ptr_cur[9] - ptr_ref[9]);                          sad += ABS(ptr_cur[9] - ptr_ref[9]);
78                          sad += abs(ptr_cur[10] - ptr_ref[10]);                          sad += ABS(ptr_cur[10] - ptr_ref[10]);
79                          sad += abs(ptr_cur[11] - ptr_ref[11]);                          sad += ABS(ptr_cur[11] - ptr_ref[11]);
80                          sad += abs(ptr_cur[12] - ptr_ref[12]);                          sad += ABS(ptr_cur[12] - ptr_ref[12]);
81                          sad += abs(ptr_cur[13] - ptr_ref[13]);                          sad += ABS(ptr_cur[13] - ptr_ref[13]);
82                          sad += abs(ptr_cur[14] - ptr_ref[14]);                          sad += ABS(ptr_cur[14] - ptr_ref[14]);
83                          sad += abs(ptr_cur[15] - ptr_ref[15]);                          sad += ABS(ptr_cur[15] - ptr_ref[15]);
84    
85                          if (sad >= best_sad)                          if (sad >= best_sad)
86                                  return sad;                                  return sad;
# Line 113  Line 111 
111    
112                  for (i = 0; i < 16; i++) {                  for (i = 0; i < 16; i++) {
113                          int pixel = (ptr_ref1[i] + ptr_ref2[i] + 1) / 2;                          int pixel = (ptr_ref1[i] + ptr_ref2[i] + 1) / 2;
114                          sad += abs(ptr_cur[i] - pixel);                          sad += ABS(ptr_cur[i] - pixel);
115                  }                  }
116    
117                  ptr_cur += stride;                  ptr_cur += stride;
# Line 143  Line 141 
141    
142                  for (i = 0; i < 8; i++) {                  for (i = 0; i < 8; i++) {
143                          int pixel = (ptr_ref1[i] + ptr_ref2[i] + 1) / 2;                          int pixel = (ptr_ref1[i] + ptr_ref2[i] + 1) / 2;
144                          sad += abs(ptr_cur[i] - pixel);                          sad += ABS(ptr_cur[i] - pixel);
145                  }                  }
146    
147                  ptr_cur += stride;                  ptr_cur += stride;
# Line 170  Line 168 
168    
169          for (j = 0; j < 8; j++) {          for (j = 0; j < 8; j++) {
170    
171                  sad += abs(ptr_cur[0] - ptr_ref[0]);                  sad += ABS(ptr_cur[0] - ptr_ref[0]);
172                  sad += abs(ptr_cur[1] - ptr_ref[1]);                  sad += ABS(ptr_cur[1] - ptr_ref[1]);
173                  sad += abs(ptr_cur[2] - ptr_ref[2]);                  sad += ABS(ptr_cur[2] - ptr_ref[2]);
174                  sad += abs(ptr_cur[3] - ptr_ref[3]);                  sad += ABS(ptr_cur[3] - ptr_ref[3]);
175                  sad += abs(ptr_cur[4] - ptr_ref[4]);                  sad += ABS(ptr_cur[4] - ptr_ref[4]);
176                  sad += abs(ptr_cur[5] - ptr_ref[5]);                  sad += ABS(ptr_cur[5] - ptr_ref[5]);
177                  sad += abs(ptr_cur[6] - ptr_ref[6]);                  sad += ABS(ptr_cur[6] - ptr_ref[6]);
178                  sad += abs(ptr_cur[7] - ptr_ref[7]);                  sad += ABS(ptr_cur[7] - ptr_ref[7]);
179    
180                  ptr_cur += stride;                  ptr_cur += stride;
181                  ptr_ref += stride;                  ptr_ref += stride;
# Line 215  Line 213 
213          for (j = 0; j < 16; j++) {          for (j = 0; j < 16; j++) {
214    
215                  for (i = 0; i < 16; i++)                  for (i = 0; i < 16; i++)
216                          dev += abs(*(ptr_cur + i) - (int32_t) mean);                          dev += ABS(*(ptr_cur + i) - (int32_t) mean);
217    
218                  ptr_cur += stride;                  ptr_cur += stride;
219    
# Line 283  Line 281 
281    
282                  for (i = 0; i < 16; i++) {                  for (i = 0; i < 16; i++) {
283    
284                          sad += abs(*(ptr_cur + i) - *(ptr_ref + i) - mean);                          sad += ABS(*(ptr_cur + i) - *(ptr_ref + i) - mean);
285                          if (sad >= best_sad) {                          if (sad >= best_sad) {
286                                  return MRSAD16_CORRFACTOR * sad;                                  return MRSAD16_CORRFACTOR * sad;
287                          }                          }

Legend:
Removed from v.1.13.2.2  
changed lines
  Added in v.1.14

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