[cvs] / xvidcore / src / utils / mbtransquant.c Repository:
ViewVC logotype

Diff of /xvidcore/src/utils/mbtransquant.c

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

revision 1.3, Thu Mar 28 20:57:25 2002 UTC revision 1.6, Thu Apr 25 06:55:00 2002 UTC
# Line 42  Line 42 
42    *                                                                            *    *                                                                            *
43    *  Revision history:                                                         *    *  Revision history:                                                         *
44    *                                                                            *    *                                                                            *
45      *  29.03.2002 interlacing speedup - used transfer strides instead of
46      *             manual field-to-frame conversion
47    *  26.03.2002 interlacing support - moved transfers outside loops    *  26.03.2002 interlacing support - moved transfers outside loops
48    *  22.12.2001 get_dc_scaler() moved to common.h    *  22.12.2001 get_dc_scaler() moved to common.h
49    *  19.11.2001 introduced coefficient thresholding (Isibaar)                  *    *  19.11.2001 introduced coefficient thresholding (Isibaar)                  *
# Line 71  Line 73 
73  /* this isnt pretty, but its better than 20 ifdefs */  /* this isnt pretty, but its better than 20 ifdefs */
74    
75  void MBTransQuantIntra(const MBParam *pParam,  void MBTransQuantIntra(const MBParam *pParam,
76                                               FRAMEINFO * frame,
77                         MACROBLOCK * pMB,                         MACROBLOCK * pMB,
78                         const uint32_t x_pos,                         const uint32_t x_pos,
79                         const uint32_t y_pos,                         const uint32_t y_pos,
80                         int16_t data[6*64],                         int16_t data[6*64],
81                         int16_t qcoeff[6*64],                         int16_t qcoeff[6*64])
                        IMAGE * const pCurrent)  
82    
83  {  {
84    
85          const uint32_t stride = pParam->edged_width;          uint32_t stride = pParam->edged_width;
86            uint32_t stride2 = stride / 2;
87            uint32_t next_block = stride * 8;
88          uint32_t i;          uint32_t i;
89          uint32_t iQuant = pParam->quant;          uint32_t iQuant = frame->quant;
90          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
91            IMAGE * pCurrent = &frame->image;
92    
93          pY_Cur = pCurrent->y + (y_pos << 4) * stride + (x_pos << 4);          pY_Cur = pCurrent->y + (y_pos << 4) * stride + (x_pos << 4);
94          pU_Cur = pCurrent->u + (y_pos << 3) * (stride >> 1) + (x_pos << 3);          pU_Cur = pCurrent->u + (y_pos << 3) * stride2 + (x_pos << 3);
95          pV_Cur = pCurrent->v + (y_pos << 3) * (stride >> 1) + (x_pos << 3);          pV_Cur = pCurrent->v + (y_pos << 3) * stride2 + (x_pos << 3);
96    
97          start_timer();          start_timer();
98          transfer_8to16copy(&data[0*64], pY_Cur, stride);          transfer_8to16copy(&data[0*64], pY_Cur, stride);
99          transfer_8to16copy(&data[1*64], pY_Cur + 8, stride);          transfer_8to16copy(&data[1*64], pY_Cur + 8, stride);
100          transfer_8to16copy(&data[2*64], pY_Cur + 8 * stride, stride);          transfer_8to16copy(&data[2*64], pY_Cur + next_block,    stride);
101          transfer_8to16copy(&data[3*64], pY_Cur + 8 * stride + 8, stride);          transfer_8to16copy(&data[3*64], pY_Cur + next_block + 8,stride);
102          transfer_8to16copy(&data[4*64], pU_Cur, stride / 2);          transfer_8to16copy(&data[4*64], pU_Cur,                                 stride2);
103          transfer_8to16copy(&data[5*64], pV_Cur, stride / 2);          transfer_8to16copy(&data[5*64], pV_Cur,                                 stride2);
104          stop_transfer_timer();          stop_transfer_timer();
105    
106          start_timer();          start_timer();
107          pMB->field_dct = 0;          pMB->field_dct = 0;
108          if (pParam->global_flags & XVID_INTERLACING)          if ((frame->global_flags & XVID_INTERLACING))
109          {          {
110                  pMB->field_dct = MBDecideFieldDCT(data);                  pMB->field_dct = MBDecideFieldDCT(data);
111          }          }
# Line 114  Line 119 
119                  fdct(&data[i*64]);                  fdct(&data[i*64]);
120                  stop_dct_timer();                  stop_dct_timer();
121    
122                  if (pParam->quant_type == H263_QUANT)                  if (pParam->m_quant_type == H263_QUANT)
123                  {                  {
124                          start_timer();                          start_timer();
125                          quant_intra(&qcoeff[i*64], &data[i*64], iQuant, iDcScaler);                          quant_intra(&qcoeff[i*64], &data[i*64], iQuant, iDcScaler);
# Line 140  Line 145 
145                  stop_idct_timer();                  stop_idct_timer();
146          }          }
147    
         start_timer();  
148          if (pMB->field_dct)          if (pMB->field_dct)
149          {          {
150                  MBFieldToFrame(data);                  next_block = stride;
151                    stride *= 2;
152          }          }
         stop_interlacing_timer();  
153    
154          start_timer();          start_timer();
155          transfer_16to8copy(pY_Cur,                  &data[0*64], stride);          transfer_16to8copy(pY_Cur,                  &data[0*64], stride);
156          transfer_16to8copy(pY_Cur + 8,              &data[1*64], stride);          transfer_16to8copy(pY_Cur + 8,              &data[1*64], stride);
157          transfer_16to8copy(pY_Cur + 8 * stride,     &data[2*64], stride);          transfer_16to8copy(pY_Cur + next_block,     &data[2*64], stride);
158          transfer_16to8copy(pY_Cur + 8 + 8 * stride, &data[3*64], stride);          transfer_16to8copy(pY_Cur + next_block + 8, &data[3*64], stride);
159          transfer_16to8copy(pU_Cur,                  &data[4*64], stride / 2);          transfer_16to8copy(pU_Cur,                  &data[4*64], stride2);
160          transfer_16to8copy(pV_Cur,                  &data[5*64], stride / 2);          transfer_16to8copy(pV_Cur,                  &data[5*64], stride2);
161          stop_transfer_timer();          stop_transfer_timer();
162    
163  }  }
164    
165    
166  uint8_t MBTransQuantInter(const MBParam *pParam,  uint8_t MBTransQuantInter(const MBParam *pParam,
167                              FRAMEINFO * frame,
168                            MACROBLOCK * pMB,                            MACROBLOCK * pMB,
169                            const uint32_t x_pos, const uint32_t y_pos,                            const uint32_t x_pos, const uint32_t y_pos,
170                            int16_t data[6*64],                            int16_t data[6*64],
171                            int16_t qcoeff[6*64],                            int16_t qcoeff[6*64])
                           IMAGE * const pCurrent)  
172    
173  {  {
174    
175          const uint32_t stride = pParam->edged_width;          uint32_t stride = pParam->edged_width;
176            uint32_t stride2 = stride / 2;
177            uint32_t next_block = stride * 8;
178          uint32_t i;          uint32_t i;
179          uint32_t iQuant = pParam->quant;          uint32_t iQuant = frame->quant;
180          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
181          uint8_t cbp = 0;          uint8_t cbp = 0;
182          uint32_t sum;          uint32_t sum;
183            IMAGE * pCurrent = &frame->image;
184    
185          pY_Cur = pCurrent->y + (y_pos << 4) * stride + (x_pos << 4);          pY_Cur = pCurrent->y + (y_pos << 4) * stride + (x_pos << 4);
186          pU_Cur = pCurrent->u + (y_pos << 3) * (stride >> 1) + (x_pos << 3);          pU_Cur = pCurrent->u + (y_pos << 3) * stride2 + (x_pos << 3);
187          pV_Cur = pCurrent->v + (y_pos << 3) * (stride >> 1) + (x_pos << 3);          pV_Cur = pCurrent->v + (y_pos << 3) * stride2 + (x_pos << 3);
188    
189          start_timer();          start_timer();
190          pMB->field_dct = 0;          pMB->field_dct = 0;
191          if (pParam->global_flags & XVID_INTERLACING)          if ((frame->global_flags & XVID_INTERLACING))
192          {          {
193                  pMB->field_dct = MBDecideFieldDCT(data);                  pMB->field_dct = MBDecideFieldDCT(data);
194          }          }
# Line 197  Line 204 
204                  fdct(&data[i*64]);                  fdct(&data[i*64]);
205                  stop_dct_timer();                  stop_dct_timer();
206    
207                  if (pParam->quant_type == 0)                  if (pParam->m_quant_type == 0)
208                  {                  {
209                          start_timer();                          start_timer();
210                          sum = quant_inter(&qcoeff[i*64], &data[i*64], iQuant);                          sum = quant_inter(&qcoeff[i*64], &data[i*64], iQuant);
# Line 212  Line 219 
219    
220                  if(sum >= TOOSMALL_LIMIT) { // skip block ?                  if(sum >= TOOSMALL_LIMIT) { // skip block ?
221    
222                          if (pParam->quant_type == H263_QUANT)                          if (pParam->m_quant_type == H263_QUANT)
223                          {                          {
224                                  start_timer();                                  start_timer();
225                                  dequant_inter(&data[i*64], &qcoeff[i*64], iQuant);                                  dequant_inter(&data[i*64], &qcoeff[i*64], iQuant);
# Line 233  Line 240 
240                  }                  }
241          }          }
242    
         start_timer();  
243          if (pMB->field_dct)          if (pMB->field_dct)
244          {          {
245                  MBFieldToFrame(data);                  next_block = stride;
246                    stride *= 2;
247          }          }
         stop_interlacing_timer();  
248    
249          start_timer();          start_timer();
250          if (cbp & 32)          if (cbp & 32)
# Line 246  Line 252 
252          if (cbp & 16)          if (cbp & 16)
253                  transfer_16to8add(pY_Cur + 8,              &data[1*64], stride);                  transfer_16to8add(pY_Cur + 8,              &data[1*64], stride);
254          if (cbp & 8)          if (cbp & 8)
255                  transfer_16to8add(pY_Cur + 8 * stride,     &data[2*64], stride);                  transfer_16to8add(pY_Cur + next_block,     &data[2*64], stride);
256          if (cbp & 4)          if (cbp & 4)
257                  transfer_16to8add(pY_Cur + 8 + 8 * stride, &data[3*64], stride);                  transfer_16to8add(pY_Cur + next_block + 8, &data[3*64], stride);
258          if (cbp & 2)          if (cbp & 2)
259                  transfer_16to8add(pU_Cur,                  &data[4*64], stride / 2);                  transfer_16to8add(pU_Cur,                  &data[4*64], stride2);
260          if (cbp & 1)          if (cbp & 1)
261                  transfer_16to8add(pV_Cur,                  &data[5*64], stride / 2);                  transfer_16to8add(pV_Cur,                  &data[5*64], stride2);
262          stop_transfer_timer();          stop_transfer_timer();
263    
264          return cbp;          return cbp;
# Line 262  Line 268 
268    
269  /* if sum(diff between field lines) < sum(diff between frame lines), use field dct */  /* if sum(diff between field lines) < sum(diff between frame lines), use field dct */
270    
 #define ABS(X) (X)<0 ? -(X) : (X)  
271    
272  uint32_t MBDecideFieldDCT(int16_t data[6*64])  uint32_t MBDecideFieldDCT(int16_t data[6*64])
273  {  {
# Line 367  Line 372 
372          MOVLINE(LINE(3,5),      LINE(3,3));          MOVLINE(LINE(3,5),      LINE(3,3));
373          MOVLINE(LINE(3,3),      tmp);          MOVLINE(LINE(3,3),      tmp);
374  }  }
   
   
 /* interlace Y blocks vertically */  
   
 void MBFieldToFrame(int16_t data[6*64])  
 {  
         uint16_t tmp[8];  
   
         /* left blocks */  
   
         // 1=8, 8=4, 4=2, 2=1  
         MOVLINE(tmp,            LINE(0,1));  
         MOVLINE(LINE(0,1),      LINE(2,0));  
         MOVLINE(LINE(2,0),      LINE(0,4));  
         MOVLINE(LINE(0,4),      LINE(0,2));  
         MOVLINE(LINE(0,2),      tmp);  
   
         // 3=9, 9=12, 12=6, 6=3  
         MOVLINE(tmp,            LINE(0,3));  
         MOVLINE(LINE(0,3),      LINE(2,1));  
         MOVLINE(LINE(2,1),      LINE(2,4));  
         MOVLINE(LINE(2,4),      LINE(0,6));  
         MOVLINE(LINE(0,6),      tmp);  
   
         // 5=10, 10=5  
         MOVLINE(tmp,            LINE(0,5));  
         MOVLINE(LINE(0,5),      LINE(2,2));  
         MOVLINE(LINE(2,2),      tmp);  
   
         // 7=11, 11=13, 13=14, 14=7  
         MOVLINE(tmp,            LINE(0,7));  
         MOVLINE(LINE(0,7),      LINE(2,3));  
         MOVLINE(LINE(2,3),      LINE(2,5));  
         MOVLINE(LINE(2,5),      LINE(2,6));  
         MOVLINE(LINE(2,6),      tmp);  
   
         /* right blocks */  
   
         // 1=8, 8=4, 4=2, 2=1  
         MOVLINE(tmp,            LINE(1,1));  
         MOVLINE(LINE(1,1),      LINE(3,0));  
         MOVLINE(LINE(3,0),      LINE(1,4));  
         MOVLINE(LINE(1,4),      LINE(1,2));  
         MOVLINE(LINE(1,2),      tmp);  
   
         // 3=9, 9=12, 12=6, 6=3  
         MOVLINE(tmp,            LINE(1,3));  
         MOVLINE(LINE(1,3),      LINE(3,1));  
         MOVLINE(LINE(3,1),      LINE(3,4));  
         MOVLINE(LINE(3,4),      LINE(1,6));  
         MOVLINE(LINE(1,6),      tmp);  
   
         // 5=10, 10=5  
         MOVLINE(tmp,            LINE(1,5));  
         MOVLINE(LINE(1,5),      LINE(3,2));  
         MOVLINE(LINE(3,2),      tmp);  
   
         // 7=11, 11=13, 13=14, 14=7  
         MOVLINE(tmp,            LINE(1,7));  
         MOVLINE(LINE(1,7),      LINE(3,3));  
         MOVLINE(LINE(3,3),      LINE(3,5));  
         MOVLINE(LINE(3,5),      LINE(3,6));  
         MOVLINE(LINE(3,6),      tmp);  
 }  

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.6

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