[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.18, Wed Oct 22 09:47:52 2003 UTC revision 1.49.2.23, Wed Dec 10 12:09:34 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 392  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 1164  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 1180  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 1304  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 */
1316  void decoder_output(DECODER * dec, IMAGE * img, MACROBLOCK * mbs,  void decoder_output(DECODER * dec, IMAGE * img, MACROBLOCK * mbs,
1317                                          xvid_dec_frame_t * frame, xvid_dec_stats_t * stats, int coding_type)                                          xvid_dec_frame_t * frame, xvid_dec_stats_t * stats, int coding_type)
1318  {  {
1319            if (frame->general & (XVID_DEBLOCKY|XVID_DEBLOCKUV))    /* post process */
1320            {
1321                    /* note: image is stored to tmp */
1322                    image_copy(&dec->tmp, img, dec->edged_width, dec->height);
1323                    image_deblock(&dec->tmp, dec->edged_width,
1324                                              mbs, dec->mb_width, dec->mb_height, dec->mb_width,
1325                                              frame->general);
1326                    img = &dec->tmp;
1327            }
1328    
1329          image_output(img, dec->width, dec->height,          image_output(img, dec->width, dec->height,
1330                                   dec->edged_width, (uint8_t**)frame->output.plane, frame->output.stride,                                   dec->edged_width, (uint8_t**)frame->output.plane, frame->output.stride,
1331                                   frame->output.csp, dec->interlacing);                                   frame->output.csp, dec->interlacing);
# Line 1452  Line 1460 
1460                          /* XXX: not_coded vops are not used for forward prediction */                          /* XXX: not_coded vops are not used for forward prediction */
1461                          /* we should not swap(last_mbs,mbs) */                          /* we should not swap(last_mbs,mbs) */
1462                          image_copy(&dec->cur, &dec->refn[0], dec->edged_width, dec->height);                          image_copy(&dec->cur, &dec->refn[0], dec->edged_width, dec->height);
1463                            SWAP(MACROBLOCK *, dec->mbs, dec->last_mbs); /* it will be swapped back */
1464                          break;                          break;
1465                  }                  }
1466    
# Line 1493  Line 1502 
1502                          /* attemping to decode a bvop without atleast 2 reference frames */                          /* attemping to decode a bvop without atleast 2 reference frames */
1503                          image_printf(&dec->cur, dec->edged_width, dec->height, 16, 16,                          image_printf(&dec->cur, dec->edged_width, dec->height, 16, 16,
1504                                                  "broken b-frame, mising ref frames");                                                  "broken b-frame, mising ref frames");
1505                            stats->type = XVID_TYPE_NOTHING;
1506                  } else if (dec->time_pp <= dec->time_bp) {                  } else if (dec->time_pp <= dec->time_bp) {
1507                          /* this occurs when dx50_bvop_compatibility==0 sequences are                          /* this occurs when dx50_bvop_compatibility==0 sequences are
1508                          decoded in vfw. */                          decoded in vfw. */
1509                          image_printf(&dec->cur, dec->edged_width, dec->height, 16, 16,                          image_printf(&dec->cur, dec->edged_width, dec->height, 16, 16,
1510                                                  "broken b-frame, tpp=%i tbp=%i", dec->time_pp, dec->time_bp);                                                  "broken b-frame, tpp=%i tbp=%i", dec->time_pp, dec->time_bp);
1511                            stats->type = XVID_TYPE_NOTHING;
1512                  } else {                  } else {
1513                          decoder_bframe(dec, &bs, quant, fcode_forward, fcode_backward);                          decoder_bframe(dec, &bs, quant, fcode_forward, fcode_backward);
1514                            decoder_output(dec, &dec->cur, dec->mbs, frame, stats, coding_type);
1515                  }                  }
1516    
                 decoder_output(dec, &dec->cur, dec->mbs, frame, stats, coding_type);  
1517                  output = 1;                  output = 1;
1518                  dec->frames++;                  dec->frames++;
1519          }          }

Legend:
Removed from v.1.49.2.18  
changed lines
  Added in v.1.49.2.23

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