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

Diff of /xvidcore/src/decoder.c

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

revision 1.49.2.17, Thu Oct 16 12:16:00 2003 UTC revision 1.49.2.20, Sun Nov 30 16:13:15 2003 UTC
# Line 41  Line 41 
41  #include "bitstream/mbcoding.h"  #include "bitstream/mbcoding.h"
42    
43  #include "quant/quant.h"  #include "quant/quant.h"
44    #include "quant/quant_matrix.h"
45  #include "dct/idct.h"  #include "dct/idct.h"
46  #include "dct/fdct.h"  #include "dct/fdct.h"
47  #include "utils/mem_transfer.h"  #include "utils/mem_transfer.h"
# Line 175  Line 176 
176          if (dec == NULL) {          if (dec == NULL) {
177                  return XVID_ERR_MEMORY;                  return XVID_ERR_MEMORY;
178          }          }
179    
180          memset(dec, 0, sizeof(DECODER));          memset(dec, 0, sizeof(DECODER));
181    
182            dec->mpeg_quant_matrices = xvid_malloc(sizeof(uint16_t) * 64 * 8, CACHE_LINE);
183            if (dec->mpeg_quant_matrices == NULL) {
184                    xvid_free(dec);
185                    return XVID_ERR_MEMORY;
186            }
187    
188          create->handle = dec;          create->handle = dec;
189    
190          dec->width = create->width;          dec->width = create->width;
# Line 196  Line 204 
204          dec->last_mbs = NULL;          dec->last_mbs = NULL;
205    
206          init_timer();          init_timer();
207            init_mpeg_matrix(dec->mpeg_quant_matrices);
208    
209          /* For B-frame support (used to save reference frame's time */          /* For B-frame support (used to save reference frame's time */
210          dec->frames = 0;          dec->frames = 0;
# Line 226  Line 235 
235          image_destroy(&dec->tmp, dec->edged_width, dec->edged_height);          image_destroy(&dec->tmp, dec->edged_width, dec->edged_height);
236          image_destroy(&dec->qtmp, dec->edged_width, dec->edged_height);          image_destroy(&dec->qtmp, dec->edged_width, dec->edged_height);
237          image_destroy(&dec->cur, dec->edged_width, dec->edged_height);          image_destroy(&dec->cur, dec->edged_width, dec->edged_height);
238            xvid_free(dec->mpeg_quant_matrices);
239          xvid_free(dec);          xvid_free(dec);
240    
241          write_timer();          write_timer();
# Line 321  Line 331 
331    
332                  start_timer();                  start_timer();
333                  if (dec->quant_type == 0) {                  if (dec->quant_type == 0) {
334                          dequant_h263_intra(&data[i * 64], &block[i * 64], iQuant, iDcScaler);                          dequant_h263_intra(&data[i * 64], &block[i * 64], iQuant, iDcScaler, dec->mpeg_quant_matrices);
335                  } else {                  } else {
336                          dequant_mpeg_intra(&data[i * 64], &block[i * 64], iQuant, iDcScaler);                          dequant_mpeg_intra(&data[i * 64], &block[i * 64], iQuant, iDcScaler, dec->mpeg_quant_matrices);
337                  }                  }
338                  stop_iquant_timer();                  stop_iquant_timer();
339    
# Line 373  Line 383 
383          DECLARE_ALIGNED_MATRIX(block, 1, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(block, 1, 64, int16_t, CACHE_LINE);
384          DECLARE_ALIGNED_MATRIX(data, 6, 64, int16_t, CACHE_LINE);          DECLARE_ALIGNED_MATRIX(data, 6, 64, int16_t, CACHE_LINE);
385    
386          int stride = dec->edged_width, next_block = stride * (reduced_resolution ? 16 : 8);          int stride = dec->edged_width;
387            int next_block = stride * (reduced_resolution ? 16 : 8);
388          const int stride2 = stride/2;          const int stride2 = stride/2;
389          int i;          int i;
390          const uint32_t iQuant = pMB->quant;          const uint32_t iQuant = pMB->quant;
# Line 391  Line 402 
402                          stop_coding_timer();                          stop_coding_timer();
403    
404                          start_timer();                          start_timer();
405                          dequant(&data[i * 64], block, iQuant);                          dequant(&data[i * 64], block, iQuant, dec->mpeg_quant_matrices);
406                          stop_iquant_timer();                          stop_iquant_timer();
407    
408                          start_timer();                          start_timer();
# Line 450  Line 461 
461  {  {
462          uint32_t stride = dec->edged_width;          uint32_t stride = dec->edged_width;
463          uint32_t stride2 = stride / 2;          uint32_t stride2 = stride / 2;
         uint32_t next_block = stride * (reduced_resolution ? 16 : 8);  
464          uint32_t i;          uint32_t i;
465    
466          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
# Line 963  Line 973 
973  {  {
974          uint32_t stride = dec->edged_width;          uint32_t stride = dec->edged_width;
975          uint32_t stride2 = stride / 2;          uint32_t stride2 = stride / 2;
         uint32_t next_block = stride * 8;  
976          int uv_dx, uv_dy;          int uv_dx, uv_dy;
977          int b_uv_dx, b_uv_dy;          int b_uv_dx, b_uv_dy;
978          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;          uint8_t *pY_Cur, *pU_Cur, *pV_Cur;
# Line 1165  Line 1174 
1174          const int64_t TRB = dec->time_pp - dec->time_bp, TRD = dec->time_pp;          const int64_t TRB = dec->time_pp - dec->time_bp, TRD = dec->time_pp;
1175          int i;          int i;
1176    
 #ifdef BFRAMES_DEC_DEBUG  
         FILE *fp;  
         static char first=0;  
 #define BFRAME_DEBUG  
         if (!first && fp) { \  
                 fprintf(fp,"Y=%3d   X=%3d   MB=%2d   CBP=%02X\n",y,x,mb->mode,mb->cbp); \  
         }  
 #endif  
   
1177          start_timer();          start_timer();
1178          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,          image_setedges(&dec->refn[0], dec->edged_width, dec->edged_height,
1179                                          dec->width, dec->height);                                          dec->width, dec->height);
# Line 1181  Line 1181 
1181                                          dec->width, dec->height);                                          dec->width, dec->height);
1182          stop_edges_timer();          stop_edges_timer();
1183    
 #ifdef BFRAMES_DEC_DEBUG  
         if (!first){  
                 fp=fopen("C:\\XVIDDBG.TXT","w");  
         }  
 #endif  
   
1184          for (y = 0; y < dec->mb_height; y++) {          for (y = 0; y < dec->mb_height; y++) {
1185                  /* Initialize Pred Motion Vector */                  /* Initialize Pred Motion Vector */
1186                  dec->p_fmv = dec->p_bmv = zeromv;                  dec->p_fmv = dec->p_bmv = zeromv;
1187                  for (x = 0; x < dec->mb_width; x++) {                  for (x = 0; x < dec->mb_width; x++) {
1188                          MACROBLOCK *mb = &dec->mbs[y * dec->mb_width + x];                          MACROBLOCK *mb = &dec->mbs[y * dec->mb_width + x];
1189                          MACROBLOCK *last_mb = &dec->last_mbs[y * dec->mb_width + x];                          MACROBLOCK *last_mb = &dec->last_mbs[y * dec->mb_width + x];
1190                            const int fcode_max = (fcode_forward>fcode_backward) ? fcode_forward : fcode_backward;
1191                            uint32_t intra_dc_threshold; /* fake variable */
1192    
1193                            if (check_resync_marker(bs, fcode_max  - 1)) {
1194                                    int bound = read_video_packet_header(bs, dec, fcode_max - 1, &quant,
1195                                                                                                             &fcode_forward, &fcode_backward, &intra_dc_threshold);
1196                                    x = bound % dec->mb_width;
1197                                    y = bound / dec->mb_width;
1198                                    /* reset predicted macroblocks */
1199                                    dec->p_fmv = dec->p_bmv = zeromv;
1200                            }
1201    
1202                          mv =                          mv =
1203                          mb->b_mvs[0] = mb->b_mvs[1] = mb->b_mvs[2] = mb->b_mvs[3] =                          mb->b_mvs[0] = mb->b_mvs[1] = mb->b_mvs[2] = mb->b_mvs[3] =
# Line 1305  Line 1310 
1310                          }                          }
1311                  } /* End of for */                  } /* End of for */
1312          }          }
   
 #ifdef BFRAMES_DEC_DEBUG  
         if (!first){  
                 first=1;  
                 if (fp)  
                         fclose(fp);  
         }  
 #endif  
1313  }  }
1314    
1315  /* perform post processing if necessary, and output the image */  /* perform post processing if necessary, and output the image */

Legend:
Removed from v.1.49.2.17  
changed lines
  Added in v.1.49.2.20

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