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

Diff of /xvidcore/src/bitstream/bitstream.c

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

revision 1.6, Tue Apr 16 00:17:35 2002 UTC revision 1.10, Fri May 3 08:37:55 2002 UTC
# Line 41  Line 41 
41    *                                                                                                                                                        *    *                                                                                                                                                        *
42    *  Revision history:                                                         *    *  Revision history:                                                         *
43    *                                                                                                                                                        *    *                                                                                                                                                        *
44      *  01.05.2002 added BVOP support to BitstreamWriteVopHeader
45    *  15.04.2002 rewrite log2bin use asm386  By MinChen <chenm001@163.com>      *    *  15.04.2002 rewrite log2bin use asm386  By MinChen <chenm001@163.com>      *
46    *  26.03.2002 interlacing support                                                                                        *    *  26.03.2002 interlacing support                                                                                        *
47    *  03.03.2002 qmatrix writing                                                                                            *    *  03.03.2002 qmatrix writing                                                                                            *
# Line 114  Line 115 
115  returns coding_type, or -1 if error  returns coding_type, or -1 if error
116  */  */
117    
118  int BitstreamReadHeaders(Bitstream * bs, DECODER * dec, uint32_t * rounding, uint32_t * quant, uint32_t * fcode, uint32_t * intra_dc_threshold)  int BitstreamReadHeaders(Bitstream * bs, DECODER * dec, uint32_t * rounding, uint32_t * quant, uint32_t * fcode_forward, uint32_t * fcode_backward, uint32_t * intra_dc_threshold)
119  {  {
120          uint32_t vol_ver_id;          uint32_t vol_ver_id;
121          uint32_t time_inc_resolution;          static uint32_t time_increment_resolution;
122          uint32_t coding_type;          uint32_t coding_type;
123          uint32_t start_code;          uint32_t start_code;
124            uint32_t time_incr=0;
125            int32_t  time_increment;
126    
127          do          do
128          {          {
# Line 248  Line 251 
251    
252                          READ_MARKER();                          READ_MARKER();
253    
254                          time_inc_resolution = BitstreamGetBits(bs, 16); // vop_time_increment_resolution  // *************************** for decode B-frame time ***********************
255                          time_inc_resolution--;                          time_increment_resolution = BitstreamGetBits(bs, 16);   // vop_time_increment_resolution
256                          if (time_inc_resolution > 0)                          time_increment_resolution--;
257                            //DEBUG1("time_increment_resolution=",time_increment_resolution);
258                            if (time_increment_resolution > 0)
259                          {                          {
260                                  dec->time_inc_bits = log2bin(time_inc_resolution);                                  dec->time_inc_bits = log2bin(time_increment_resolution);
261                          }                          }
262                          else                          else
263                          {                          {
# Line 416  Line 421 
421                                          }                                          }
422                                  }                                  }
423    
424                                  if (BitstreamGetBit(bs))        // scalability                                  if ((dec->scalability=BitstreamGetBit(bs)))     // scalability
425                                  {                                  {
426                                          // TODO                                          // TODO
427                                          DEBUG("TODO: scalability");                                          DEBUG("TODO: scalability");
# Line 462  Line 467 
467                          coding_type = BitstreamGetBits(bs, 2);          // vop_coding_type                          coding_type = BitstreamGetBits(bs, 2);          // vop_coding_type
468                          //DEBUG1("coding_type", coding_type);                          //DEBUG1("coding_type", coding_type);
469    
470                          while (BitstreamGetBit(bs) != 0) ;                      // time_base  // *************************** for decode B-frame time ***********************
471                            while (BitstreamGetBit(bs) != 0)                        // time_base
472                                    time_incr++;
473    
474                          READ_MARKER();                          READ_MARKER();
475    
# Line 470  Line 477 
477                          //DEBUG1("vop_time_incr", BitstreamShowBits(bs, dec->time_inc_bits));                          //DEBUG1("vop_time_incr", BitstreamShowBits(bs, dec->time_inc_bits));
478                          if (dec->time_inc_bits)                          if (dec->time_inc_bits)
479                          {                          {
480                                  BitstreamSkip(bs, dec->time_inc_bits);  // vop_time_increment                                  //BitstreamSkip(bs, dec->time_inc_bits);        // vop_time_increment
481                                    time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));    // vop_time_increment
482                            }
483                            if(coding_type != B_VOP){
484                                dec->last_time_base = dec->time_base;
485                                    dec->time_base += time_incr;
486                                    dec->time = dec->time_base*time_increment_resolution + time_increment;
487                                    dec->time_pp= (uint32_t)(dec->time - dec->last_non_b_time);
488                                    dec->last_non_b_time= dec->time;
489                            }else{
490                                    dec->time = (dec->last_time_base + time_incr)*time_increment_resolution + time_increment;
491                                    dec->time_bp= (uint32_t)(dec->last_non_b_time - dec->time);
492                          }                          }
493                            //DEBUG1("time_increment=",time_increment);
494    
495                          READ_MARKER();                          READ_MARKER();
496    
# Line 485  Line 504 
504                          }                          }
505                          */                          */
506    
507                          if (coding_type != I_VOP)                          // fix a little bug by MinChen <chenm002@163.com>
508                            if ((dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY) && (coding_type == P_VOP))
509                          {                          {
510                                  *rounding = BitstreamGetBit(bs);        // rounding_type                                  *rounding = BitstreamGetBit(bs);        // rounding_type
511                                  //DEBUG1("rounding", *rounding);                                  //DEBUG1("rounding", *rounding);
# Line 539  Line 559 
559                                  }                                  }
560                          }                          }
561    
562                          *quant = BitstreamGetBits(bs, dec->quant_bits);         // vop_quant                          if((*quant = BitstreamGetBits(bs, dec->quant_bits)) < 1)                // vop_quant
563                                    *quant = 1;
564    
565                          //DEBUG1("quant", *quant);                          //DEBUG1("quant", *quant);
566    
567                          if (coding_type != I_VOP)                          if (coding_type != I_VOP)
568                          {                          {
569                                  *fcode = BitstreamGetBits(bs, 3);                       // fcode_forward                                  *fcode_forward = BitstreamGetBits(bs, 3);               // fcode_forward
570                          }                          }
571    
572                          if (coding_type == B_VOP)                          if (coding_type == B_VOP)
573                          {                          {
574                                  // *fcode_backward = BitstreamGetBits(bs, 3);           // fcode_backward                                  *fcode_backward = BitstreamGetBits(bs, 3);              // fcode_backward
575                            }
576                            if (!dec->scalability){
577                                    if ((dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) && (coding_type != I_VOP)){
578                                            BitstreamSkip(bs, 1);           // vop_shape_coding_type
579                                    }
580                          }                          }
581                          return coding_type;                          return coding_type;
582                  }                  }
# Line 599  Line 626 
626          write vol header          write vol header
627  */  */
628  void BitstreamWriteVolHeader(Bitstream * const bs,  void BitstreamWriteVolHeader(Bitstream * const bs,
629                                                  const MBParam * pParam)                                                  const MBParam * pParam,  const FRAMEINFO * frame)
630  {  {
631          // video object_start_code & vo_id          // video object_start_code & vo_id
632      BitstreamPad(bs);      BitstreamPad(bs);
# Line 640  Line 667 
667          BitstreamPutBits(bs, pParam->height, 13);               // height          BitstreamPutBits(bs, pParam->height, 13);               // height
668          WRITE_MARKER();          WRITE_MARKER();
669    
670          BitstreamPutBit(bs, pParam->global_flags & XVID_INTERLACING);           // interlace          BitstreamPutBit(bs, frame->global_flags & XVID_INTERLACING);            // interlace
671          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)          BitstreamPutBit(bs, 1);         // obmc_disable (overlapped block motion compensation)
672          BitstreamPutBit(bs, 0);         // sprite_enable          BitstreamPutBit(bs, 0);         // sprite_enable
673          BitstreamPutBit(bs, 0);         // not_in_bit          BitstreamPutBit(bs, 0);         // not_in_bit
674    
675          // quant_type   0=h.263  1=mpeg4(quantizer tables)          // quant_type   0=h.263  1=mpeg4(quantizer tables)
676          BitstreamPutBit(bs, pParam->quant_type);          BitstreamPutBit(bs, pParam->m_quant_type);
677    
678          if (pParam->quant_type)          if (pParam->m_quant_type)
679          {          {
680                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat                  BitstreamPutBit(bs, get_intra_matrix_status()); // load_intra_quant_mat
681                  if (get_intra_matrix_status())                  if (get_intra_matrix_status())
# Line 680  Line 707 
707    (decoder uses these values to determine precise time since last resync)    (decoder uses these values to determine precise time since last resync)
708  */  */
709  void BitstreamWriteVopHeader(Bitstream * const bs,  void BitstreamWriteVopHeader(Bitstream * const bs,
710                                                  const MBParam * pParam)                                                  const MBParam * pParam,
711                                                    const FRAMEINFO * frame)
712  {  {
713    #ifdef BFRAMES
714            uint32_t i;
715    #endif
716      BitstreamPad(bs);      BitstreamPad(bs);
717      BitstreamPutBits(bs, VOP_START_CODE, 32);      BitstreamPutBits(bs, VOP_START_CODE, 32);
718    
719      BitstreamPutBits(bs, pParam->coding_type, 2);      BitstreamPutBits(bs, frame->coding_type, 2);
720    
721          // time_base = 0  write n x PutBit(1), PutBit(0)          // time_base = 0  write n x PutBit(1), PutBit(0)
722    #ifdef BFRAMES
723            for (i = 0; i < frame->seconds; i++)
724            {
725                    BitstreamPutBit(bs, 1);
726            }
727            BitstreamPutBit(bs, 0);
728    #else
729          BitstreamPutBits(bs, 0, 1);          BitstreamPutBits(bs, 0, 1);
730    #endif
731    
732          WRITE_MARKER();          WRITE_MARKER();
733    
734          // time_increment: value=nth_of_sec, nbits = log2(resolution)          // time_increment: value=nth_of_sec, nbits = log2(resolution)
735    #ifdef BFRAMES
736            BitstreamPutBits(bs, frame->ticks, 5);
737            dprintf("[%i:%i] %c\n", frame->seconds, frame->ticks, frame->coding_type == I_VOP ? 'I' : frame->coding_type == P_VOP ? 'P' : 'B');
738    #else
739          BitstreamPutBits(bs, 1, 1);          BitstreamPutBits(bs, 1, 1);
740    #endif
741    
742          WRITE_MARKER();          WRITE_MARKER();
743    
744          BitstreamPutBits(bs, 1, 1);                             // vop_coded          BitstreamPutBits(bs, 1, 1);                             // vop_coded
745    
746          if (pParam->coding_type != I_VOP)          if (frame->coding_type != I_VOP)
747                  BitstreamPutBits(bs, pParam->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
748    
749          BitstreamPutBits(bs, 0, 3);                             // intra_dc_vlc_threshold          BitstreamPutBits(bs, 0, 3);                             // intra_dc_vlc_threshold
750    
751          if (pParam->global_flags & XVID_INTERLACING)          if (frame->global_flags & XVID_INTERLACING)
752          {          {
753                  BitstreamPutBit(bs, 1);         // top field first                  BitstreamPutBit(bs, 1);         // top field first
754                  BitstreamPutBit(bs, 0);         // alternate vertical scan                  BitstreamPutBit(bs, 0);         // alternate vertical scan
755          }          }
756    
757          BitstreamPutBits(bs, pParam->quant, 5);                 // quantizer          BitstreamPutBits(bs, frame->quant, 5);                  // quantizer
758    
759            if (frame->coding_type != I_VOP)
760                    BitstreamPutBits(bs, frame->fcode, 3);          // forward_fixed_code
761    
762            if (frame->coding_type == B_VOP)
763                    BitstreamPutBits(bs, frame->bcode, 3);          // backward_fixed_code
764    
         if (pParam->coding_type != I_VOP)  
                 BitstreamPutBits(bs, pParam->fixed_code, 3);            // fixed_code = [1,4]  
765  }  }

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

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