[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.39.2.10, Mon Jun 9 01:17:09 2003 UTC revision 1.58, Tue Jul 24 09:43:10 2007 UTC
# Line 1  Line 1 
1   /******************************************************************************  /*****************************************************************************
2    *                                                                            *   *
3    *  This file is part of XviD, a free MPEG-4 video encoder/decoder            *   *  XVID MPEG-4 VIDEO CODEC
4    *                                                                            *   *  - Bitstream reader/writer -
5    *  XviD is an implementation of a part of one or more MPEG-4 Video tools     *   *
6    *  as specified in ISO/IEC 14496-2 standard.  Those intending to use this    *   *  Copyright (C) 2001-2003 Peter Ross <pross@xvid.org>
7    *  software module in hardware or software products are advised that its     *   *                     2003 Cristoph Lampert <gruel@web.de>
8    *  use may infringe existing patents or copyrights, and any such use         *   *
9    *  would be at such party's own risk.  The original developer of this        *   *  This program is free software ; you can redistribute it and/or modify
10    *  software module and his/her company, and subsequent editors and their     *   *  it under the terms of the GNU General Public License as published by
11    *  companies, will have no liability for use of this software or             *   *  the Free Software Foundation ; either version 2 of the License, or
12    *  modifications or derivatives thereof.                                     *   *  (at your option) any later version.
13    *                                                                            *   *
14    *  XviD is free software; you can redistribute it and/or modify it           *   *  This program is distributed in the hope that it will be useful,
15    *  under the terms of the GNU General Public License as published by         *   *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
16    *  the Free Software Foundation; either version 2 of the License, or         *   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    *  (at your option) any later version.                                       *   *  GNU General Public License for more details.
18    *                                                                            *   *
19    *  XviD is distributed in the hope that it will be useful, but               *   *  You should have received a copy of the GNU General Public License
20    *  WITHOUT ANY WARRANTY; without even the implied warranty of                *   *  along with this program ; if not, write to the Free Software
21    *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             *   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22    *  GNU General Public License for more details.                              *   *
23    *                                                                            *   * $Id$
24    *  You should have received a copy of the GNU General Public License         *   *
25    *  along with this program; if not, write to the Free Software               *   ****************************************************************************/
   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  *  
   *                                                                            *  
   ******************************************************************************/  
   
  /******************************************************************************  
   *                                                                            *  
   *  bitstream.c                                                               *  
   *                                                                            *  
   *  Copyright (C) 2001 - Peter Ross <pross@cs.rmit.edu.au>                    *  
   *                                                                            *  
   *  For more information visit the XviD homepage: http://www.xvid.org         *  
   *                                                                            *  
   ******************************************************************************/  
   
  /******************************************************************************  
   *                                                                            *  
   *  Revision history:                                                         *  
   *                                                                            *  
   *  05.01.2003 GMC support - gruel                                            *  
   *  04.10.2002 qpel support - Isibaar                                         *  
   *  11.07.2002 add VOP width & height return to dec when dec->width           *  
   *             or dec->height is 0  (for use in examples/ex1.c)               *  
   *             MinChen <chenm001@163.com>                                     *  
   *  22.05.2002 bs_put_matrix fix                                              *  
   *  20.05.2002 added BitstreamWriteUserData                                   *  
   *  19.06.2002 Fix a little bug in use custom quant matrix                    *  
   *             MinChen <chenm001@163.com>                                     *  
   *  08.05.2002 add low_delay support for B_VOP decode                         *  
   *             MinChen <chenm001@163.com>                                     *  
   *  06.05.2002 low_delay                                                      *  
   *  06.05.2002 fixed fincr/fbase error                                        *  
   *  01.05.2002 added BVOP support to BitstreamWriteVopHeader                  *  
   *  15.04.2002 rewrite log2bin use asm386  By MinChen <chenm001@163.com>      *  
   *  26.03.2002 interlacing support                                            *  
   *  03.03.2002 qmatrix writing                                                *  
   *  03.03.2002 merged BITREADER and BITWRITER                                 *  
   *  30.02.2002 intra_dc_threshold support                                     *  
   *  04.12.2001 support for additional headers                                 *  
   *  16.12.2001 inital version                                                 *  
   *                                                                                                                                                        *  
   ******************************************************************************/  
   
26    
27  #include <string.h>  #include <string.h>
28  #include <stdio.h>  #include <stdio.h>
# Line 75  Line 33 
33  #include "mbcoding.h"  #include "mbcoding.h"
34    
35    
36  static uint32_t __inline  static const uint8_t log2_tab_16[16] =  { 0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4 };
37  log2bin(uint32_t value)  
38    static uint32_t __inline log2bin(uint32_t value)
39  {  {
 /* Changed by Chenm001 */  
 #if !defined(_MSC_VER)  
40          int n = 0;          int n = 0;
41      if (value & 0xffff0000) {
42          while (value) {      value >>= 16;
43                  value >>= 1;      n += 16;
44                  n++;    }
45          }    if (value & 0xff00) {
46          return n;      value >>= 8;
47  #else      n += 8;
48          __asm {    }
49                  bsr eax, value    if (value & 0xf0) {
50                  inc eax      value >>= 4;
51        n += 4;
52          }          }
53  #endif   return n + log2_tab_16[value];
54  }  }
55    
   
56  static const uint32_t intra_dc_threshold_table[] = {  static const uint32_t intra_dc_threshold_table[] = {
57          32,                                                     /* never use */          32,                                                     /* never use */
58          13,          13,
# Line 108  Line 65 
65  };  };
66    
67    
68  void  static void
69  bs_get_matrix(Bitstream * bs,  bs_get_matrix(Bitstream * bs,
70                            uint8_t * matrix)                            uint8_t * matrix)
71  {  {
# Line 121  Line 78 
78                  matrix[scan_tables[0][i++]] = value;                  matrix[scan_tables[0][i++]] = value;
79          }          }
80          while (value != 0 && i < 64);          while (value != 0 && i < 64);
         i--;    /* fix little bug at coeff not full */  
81    
82            if (value != 0) return;
83    
84            i--;
85          while (i < 64) {          while (i < 64) {
86                  matrix[scan_tables[0][i++]] = last;                  matrix[scan_tables[0][i++]] = last;
87          }          }
# Line 235  Line 194 
194                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_backward %i\n", *fcode_backward);                                  DPRINTF(XVID_DEBUG_HEADER,"fcode_backward %i\n", *fcode_backward);
195                          }                          }
196                  }                  }
   
197          }          }
198    
199          if (dec->newpred_enable)          if (dec->newpred_enable)
# Line 429  Line 387 
387  BitstreamReadHeaders(Bitstream * bs,  BitstreamReadHeaders(Bitstream * bs,
388                                           DECODER * dec,                                           DECODER * dec,
389                                           uint32_t * rounding,                                           uint32_t * rounding,
                                          uint32_t * reduced_resolution,  
390                                           uint32_t * quant,                                           uint32_t * quant,
391                                           uint32_t * fcode_forward,                                           uint32_t * fcode_forward,
392                                           uint32_t * fcode_backward,                                           uint32_t * fcode_backward,
# Line 443  Line 400 
400          int32_t time_increment = 0;          int32_t time_increment = 0;
401          int resize = 0;          int resize = 0;
402    
403          do {          while ((BitstreamPos(bs) >> 3) + 4 <= bs->length) {
404    
405                  BitstreamByteAlign(bs);                  BitstreamByteAlign(bs);
406                  start_code = BitstreamShowBits(bs, 32);                  start_code = BitstreamShowBits(bs, 32);
# Line 466  Line 423 
423                          DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>\n");                          DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>\n");
424    
425                  } else if (start_code == VISOBJ_START_CODE) {                  } else if (start_code == VISOBJ_START_CODE) {
                         int visobj_ver_id;  
426    
427                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>\n");                          DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>\n");
428    
429                          BitstreamSkip(bs, 32);  /* visual_object_start_code */                          BitstreamSkip(bs, 32);  /* visual_object_start_code */
430                          if (BitstreamGetBit(bs))        /* is_visual_object_identified */                          if (BitstreamGetBit(bs))        /* is_visual_object_identified */
431                          {                          {
432                                  visobj_ver_id = BitstreamGetBits(bs, 4);        /* visual_object_ver_id */                                  dec->ver_id = BitstreamGetBits(bs, 4);  /* visual_object_ver_id */
433                                  DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i\n", visobj_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i\n", dec->ver_id);
434                                  BitstreamSkip(bs, 3);   /* visual_object_priority */                                  BitstreamSkip(bs, 3);   /* visual_object_priority */
435                          } else {                          } else {
436                                  visobj_ver_id = 1;                                  dec->ver_id = 1;
437                          }                          }
438    
439                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      /* visual_object_type */                          if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)      /* visual_object_type */
# Line 526  Line 482 
482                                  DPRINTF(XVID_DEBUG_HEADER,"ver_id %i\n", vol_ver_id);                                  DPRINTF(XVID_DEBUG_HEADER,"ver_id %i\n", vol_ver_id);
483                                  BitstreamSkip(bs, 3);   /* video_object_layer_priority */                                  BitstreamSkip(bs, 3);   /* video_object_layer_priority */
484                          } else {                          } else {
485                                  vol_ver_id = 1;                                  vol_ver_id = dec->ver_id;
486                          }                          }
487    
488                          dec->aspect_ratio = BitstreamGetBits(bs, 4);                          dec->aspect_ratio = BitstreamGetBits(bs, 4);
# Line 592  Line 548 
548                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    /* vop_time_increment_resolution */                          dec->time_inc_resolution = BitstreamGetBits(bs, 16);    /* vop_time_increment_resolution */
549                          DPRINTF(XVID_DEBUG_HEADER,"vop_time_increment_resolution %i\n", dec->time_inc_resolution);                          DPRINTF(XVID_DEBUG_HEADER,"vop_time_increment_resolution %i\n", dec->time_inc_resolution);
550    
 #if 0  
                         dec->time_inc_resolution--;  
 #endif  
   
551                          if (dec->time_inc_resolution > 0) {                          if (dec->time_inc_resolution > 0) {
552                                  dec->time_inc_bits = log2bin(dec->time_inc_resolution-1);                                  dec->time_inc_bits = MAX(log2bin(dec->time_inc_resolution-1), 1);
553                          } else {                          } else {
 #if 0  
                                 dec->time_inc_bits = 0;  
 #endif  
554                                  /* for "old" xvid compatibility, set time_inc_bits = 1 */                                  /* for "old" xvid compatibility, set time_inc_bits = 1 */
555                                  dec->time_inc_bits = 1;                                  dec->time_inc_bits = 1;
556                          }                          }
# Line 712  Line 661 
661                                                  DPRINTF(XVID_DEBUG_HEADER, "load_intra_quant_mat\n");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_intra_quant_mat\n");
662    
663                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
664                                                  set_intra_matrix(matrix);                                                  set_intra_matrix(dec->mpeg_quant_matrices, matrix);
665                                          } else                                          } else
666                                                  set_intra_matrix(get_default_intra_matrix());                                                  set_intra_matrix(dec->mpeg_quant_matrices, get_default_intra_matrix());
667    
668                                          if (BitstreamGetBit(bs))        /* load_inter_quant_mat */                                          if (BitstreamGetBit(bs))        /* load_inter_quant_mat */
669                                          {                                          {
# Line 723  Line 672 
672                                                  DPRINTF(XVID_DEBUG_HEADER, "load_inter_quant_mat\n");                                                  DPRINTF(XVID_DEBUG_HEADER, "load_inter_quant_mat\n");
673    
674                                                  bs_get_matrix(bs, matrix);                                                  bs_get_matrix(bs, matrix);
675                                                  set_inter_matrix(matrix);                                                  set_inter_matrix(dec->mpeg_quant_matrices, matrix);
676                                          } else                                          } else
677                                                  set_inter_matrix(get_default_inter_matrix());                                                  set_inter_matrix(dec->mpeg_quant_matrices, get_default_inter_matrix());
678    
679                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {                                          if (dec->shape == VIDOBJLAY_SHAPE_GRAYSCALE) {
680                                                  DPRINTF(XVID_DEBUG_ERROR, "greyscale matrix not supported\n");                                                  DPRINTF(XVID_DEBUG_ERROR, "greyscale matrix not supported\n");
# Line 864  Line 813 
813                          if (coding_type != B_VOP) {                          if (coding_type != B_VOP) {
814                                  dec->last_time_base = dec->time_base;                                  dec->last_time_base = dec->time_base;
815                                  dec->time_base += time_incr;                                  dec->time_base += time_incr;
816                                  dec->time = time_increment;                                  dec->time = dec->time_base*dec->time_inc_resolution + time_increment;
817                                    dec->time_pp = (int32_t)(dec->time - dec->last_non_b_time);
 #if 0  
                                         dec->time_base * dec->time_inc_resolution +  
                                         time_increment;  
 #endif  
                                         dec->time_pp = (uint32_t)  
                                                 (dec->time_inc_resolution + dec->time - dec->last_non_b_time)%dec->time_inc_resolution;  
818                                  dec->last_non_b_time = dec->time;                                  dec->last_non_b_time = dec->time;
819                          } else {                          } else {
820                                  dec->time = time_increment;                  dec->time = (dec->last_time_base + time_incr)*dec->time_inc_resolution + time_increment;
821  #if 0                                  dec->time_bp = dec->time_pp - (int32_t)(dec->last_non_b_time - dec->time);
                                         (dec->last_time_base +  
                                          time_incr) * dec->time_inc_resolution + time_increment;  
 #endif  
                                 dec->time_bp = (uint32_t)  
                                         (dec->time_inc_resolution + dec->last_non_b_time - dec->time)%dec->time_inc_resolution;  
822                          }                          }
823                if (dec->time_pp <= 0) dec->time_pp = 1;
824                          DPRINTF(XVID_DEBUG_HEADER,"time_pp=%i\n", dec->time_pp);                          DPRINTF(XVID_DEBUG_HEADER,"time_pp=%i\n", dec->time_pp);
825                          DPRINTF(XVID_DEBUG_HEADER,"time_bp=%i\n", dec->time_bp);                          DPRINTF(XVID_DEBUG_HEADER,"time_bp=%i\n", dec->time_bp);
826    
# Line 921  Line 860 
860                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&                                  dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&
861                                  (coding_type == P_VOP || coding_type == I_VOP)) {                                  (coding_type == P_VOP || coding_type == I_VOP)) {
862    
863                                  *reduced_resolution = BitstreamGetBit(bs);                                  if (BitstreamGetBit(bs));
864                                  DPRINTF(XVID_DEBUG_HEADER, "reduced_resolution %i\n", *reduced_resolution);                                          DPRINTF(XVID_DEBUG_ERROR, "RRV not supported (anymore)\n");
                         }  
                         else  
                         {  
                                 *reduced_resolution = 0;  
865                          }                          }
866    
867                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {                          if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR) {
# Line 1051  Line 986 
986    
987                          BitstreamSkip(bs, 32);  /* user_data_start_code */                          BitstreamSkip(bs, 32);  /* user_data_start_code */
988    
989                            memset(tmp, 0, 256);
990                          tmp[0] = BitstreamShowBits(bs, 8);                          tmp[0] = BitstreamShowBits(bs, 8);
991    
992                          for(i = 1; i < 256; i++){                          for(i = 1; i < 256; i++){
# Line 1064  Line 1000 
1000    
1001                          DPRINTF(XVID_DEBUG_STARTCODE, "<user_data>: %s\n", tmp);                          DPRINTF(XVID_DEBUG_STARTCODE, "<user_data>: %s\n", tmp);
1002    
1003                            /* read xvid bitstream version */
1004                            if(strncmp(tmp, "XviD", 4) == 0) {
1005                                    if (tmp[strlen(tmp)-1] == 'C') {
1006                                            sscanf(tmp, "XviD%dC", &dec->bs_version);
1007                                            dec->cartoon_mode = 1;
1008                                    }
1009                                    else
1010                                            sscanf(tmp, "XviD%d", &dec->bs_version);
1011    
1012                                    DPRINTF(XVID_DEBUG_HEADER, "xvid bitstream version=%i\n", dec->bs_version);
1013                            }
1014    
1015                      /* divx detection */                      /* divx detection */
1016                          i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);                          i = sscanf(tmp, "DivX%dBuild%d%c", &version, &build, &packed);
1017                          if (i < 2)                          if (i < 2)
# Line 1084  Line 1032 
1032                          BitstreamSkip(bs, 8);                          BitstreamSkip(bs, 8);
1033                  }                  }
1034          }          }
         while ((BitstreamPos(bs) >> 3) < bs->length);  
1035    
1036  #if 0  #if 0
1037          DPRINTF("*** WARNING: no vop_start_code found");          DPRINTF("*** WARNING: no vop_start_code found");
# Line 1097  Line 1044 
1044    
1045  static void  static void
1046  bs_put_matrix(Bitstream * bs,  bs_put_matrix(Bitstream * bs,
1047                            const int16_t * matrix)                            const uint16_t * matrix)
1048  {  {
1049          int i, j;          int i, j;
1050          const int last = matrix[scan_tables[0][63]];          const int last = matrix[scan_tables[0][63]];
# Line 1119  Line 1066 
1066  */  */
1067  void  void
1068  BitstreamWriteVolHeader(Bitstream * const bs,  BitstreamWriteVolHeader(Bitstream * const bs,
1069                                                  const MBParam * pParam)                                                  const MBParam * pParam,
1070                                                    const FRAMEINFO * const frame)
1071  {  {
1072          static const unsigned int vo_id = 0;          static const unsigned int vo_id = 0;
1073          static const unsigned int vol_id = 0;          static const unsigned int vol_id = 0;
1074          int vol_ver_id=1;          int vol_ver_id=1;
1075      int vol_type_ind=VIDOBJLAY_TYPE_SIMPLE;      int vol_type_ind=VIDOBJLAY_TYPE_SIMPLE;
1076            int vol_profile = pParam->profile;
1077    
1078          if ( (pParam->vol_flags & XVID_VOL_QUARTERPEL) ||          if ( (pParam->vol_flags & XVID_VOL_QUARTERPEL) ||
1079           (pParam->vol_flags & XVID_VOL_GMC) ||           (pParam->vol_flags & XVID_VOL_GMC))
                  (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE))  
1080                  vol_ver_id = 2;                  vol_ver_id = 2;
1081    
1082      if ((pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)) {      if ((pParam->vol_flags & (XVID_VOL_MPEGQUANT|XVID_VOL_QUARTERPEL|XVID_VOL_GMC|XVID_VOL_INTERLACING)) ||
1083          vol_type_ind = VIDOBJLAY_TYPE_ART_SIMPLE;           pParam->max_bframes>0) {
     }  
   
         if ((pParam->vol_flags & XVID_VOL_QUARTERPEL) ||  
         (pParam->vol_flags & XVID_VOL_GMC)) {  
1084          vol_type_ind = VIDOBJLAY_TYPE_ASP;          vol_type_ind = VIDOBJLAY_TYPE_ASP;
1085      }      }
1086    
# Line 1150  Line 1094 
1094           * byte aligned, and that always 1-8 padding bits have been written           * byte aligned, and that always 1-8 padding bits have been written
1095           */           */
1096    
1097      if (pParam->profile) {      if (!vol_profile) {
1098              BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);                  /* Profile was not set by client app, use the more permissive profile
1099              BitstreamPutBits(bs, pParam->profile, 8);                   * compatible with the vol_type_id */
1100                    switch(vol_type_ind) {
1101                    case VIDOBJLAY_TYPE_ASP:
1102                            vol_profile = 0xf5; /* ASP level 5 */
1103                            break;
1104                    case VIDOBJLAY_TYPE_ART_SIMPLE:
1105                            vol_profile = 0x94; /* ARTS level 4 */
1106                            break;
1107                    default:
1108                            vol_profile = 0x03; /* Simple level 3 */
1109                            break;
1110      }      }
1111            }
1112    
1113            /* Write the VOS header */
1114            BitstreamPutBits(bs, VISOBJSEQ_START_CODE, 32);
1115            BitstreamPutBits(bs, vol_profile, 8);   /* profile_and_level_indication */
1116    
1117    
1118          /* visual_object_start_code */          /* visual_object_start_code */
1119          BitstreamPad(bs);          BitstreamPad(bs);
1120          BitstreamPutBits(bs, VISOBJ_START_CODE, 32);          BitstreamPutBits(bs, VISOBJ_START_CODE, 32);
1121          BitstreamPutBits(bs, 0, 1);             /* is_visual_object_identifier */          BitstreamPutBits(bs, 0, 1);             /* is_visual_object_identifier */
1122    
1123            /* Video type */
1124          BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             /* visual_object_type */          BitstreamPutBits(bs, VISOBJ_TYPE_VIDEO, 4);             /* visual_object_type */
1125            BitstreamPutBit(bs, 0); /* video_signal_type */
1126    
1127          /* video object_start_code & vo_id */          /* video object_start_code & vo_id */
1128          BitstreamPad(bs);          BitstreamPadAlways(bs); /* next_start_code() */
1129          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);          BitstreamPutBits(bs, VIDOBJ_START_CODE|(vo_id&0x5), 32);
1130    
1131          /* video_object_layer_start_code & vol_id */          /* video_object_layer_start_code & vol_id */
# Line 1172  Line 1135 
1135          BitstreamPutBit(bs, 0);         /* random_accessible_vol */          BitstreamPutBit(bs, 0);         /* random_accessible_vol */
1136          BitstreamPutBits(bs, vol_type_ind, 8);  /* video_object_type_indication */          BitstreamPutBits(bs, vol_type_ind, 8);  /* video_object_type_indication */
1137    
1138          if (vol_ver_id == 1)          if (vol_ver_id == 1) {
         {  
1139                  BitstreamPutBit(bs, 0);                         /* is_object_layer_identified (0=not given) */                  BitstreamPutBit(bs, 0);                         /* is_object_layer_identified (0=not given) */
1140          }          } else {
         else  
         {  
1141                  BitstreamPutBit(bs, 1);         /* is_object_layer_identified */                  BitstreamPutBit(bs, 1);         /* is_object_layer_identified */
1142                  BitstreamPutBits(bs, vol_ver_id, 4);    /* vol_ver_id == 2 */                  BitstreamPutBits(bs, vol_ver_id, 4);    /* vol_ver_id == 2 */
1143                  BitstreamPutBits(bs, 4, 3); /* vol_ver_priority (1==lowest, 7==highest) ?? */                  BitstreamPutBits(bs, 4, 3); /* vol_ver_priority (1==highest, 7==lowest) */
1144          }          }
1145    
1146          BitstreamPutBits(bs, 1, 4);     /* aspect_ratio_info (1=1:1) */          /* Aspect ratio */
1147            BitstreamPutBits(bs, pParam->par, 4); /* aspect_ratio_info (1=1:1) */
1148            if(pParam->par == XVID_PAR_EXT) {
1149                    BitstreamPutBits(bs, pParam->par_width, 8);
1150                    BitstreamPutBits(bs, pParam->par_height, 8);
1151            }
1152    
1153          BitstreamPutBit(bs, 1); /* vol_control_parameters */          BitstreamPutBit(bs, 1); /* vol_control_parameters */
1154          BitstreamPutBits(bs, 1, 2);     /* chroma_format 1="4:2:0" */          BitstreamPutBits(bs, 1, 2);     /* chroma_format 1="4:2:0" */
# Line 1212  Line 1177 
1177    
1178      if (pParam->fincr>0) {      if (pParam->fincr>0) {
1179              BitstreamPutBit(bs, 1);             /* fixed_vop_rate = 1 */              BitstreamPutBit(bs, 1);             /* fixed_vop_rate = 1 */
1180              BitstreamPutBits(bs, pParam->fincr, log2bin(pParam->fbase));        /* fixed_vop_time_increment */                  BitstreamPutBits(bs, pParam->fincr, MAX(log2bin(pParam->fbase-1),1));   /* fixed_vop_time_increment */
1181      }else{      }else{
1182          BitstreamPutBit(bs, 0);         /* fixed_vop_rate = 0 */          BitstreamPutBit(bs, 0);         /* fixed_vop_rate = 0 */
1183      }      }
# Line 1229  Line 1194 
1194          if (vol_ver_id != 1)          if (vol_ver_id != 1)
1195          {       if ((pParam->vol_flags & XVID_VOL_GMC))          {       if ((pParam->vol_flags & XVID_VOL_GMC))
1196                  {       BitstreamPutBits(bs, 2, 2);             /* sprite_enable=='GMC' */                  {       BitstreamPutBits(bs, 2, 2);             /* sprite_enable=='GMC' */
1197                          BitstreamPutBits(bs, 2, 6);             /* no_of_sprite_warping_points */                          BitstreamPutBits(bs, 3, 6);             /* no_of_sprite_warping_points */
1198                          BitstreamPutBits(bs, 3, 2);             /* sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16 */                          BitstreamPutBits(bs, 3, 2);             /* sprite_warping_accuracy 0==1/2, 1=1/4, 2=1/8, 3=1/16 */
1199                          BitstreamPutBit(bs, 0);                 /* sprite_brightness_change (not supported) */                          BitstreamPutBit(bs, 0);                 /* sprite_brightness_change (not supported) */
1200    
# Line 1250  Line 1215 
1215          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_MPEGQUANT);          BitstreamPutBit(bs, pParam->vol_flags & XVID_VOL_MPEGQUANT);
1216    
1217          if ((pParam->vol_flags & XVID_VOL_MPEGQUANT)) {          if ((pParam->vol_flags & XVID_VOL_MPEGQUANT)) {
1218                  BitstreamPutBit(bs, get_intra_matrix_status()); /* load_intra_quant_mat */                  BitstreamPutBit(bs, is_custom_intra_matrix(pParam->mpeg_quant_matrices));       /* load_intra_quant_mat */
1219                  if (get_intra_matrix_status()) {                  if(is_custom_intra_matrix(pParam->mpeg_quant_matrices))
1220                          bs_put_matrix(bs, get_intra_matrix());                          bs_put_matrix(bs, get_intra_matrix(pParam->mpeg_quant_matrices));
1221                  }  
1222                    BitstreamPutBit(bs, is_custom_inter_matrix(pParam->mpeg_quant_matrices));       /* load_inter_quant_mat */
1223                  BitstreamPutBit(bs, get_inter_matrix_status()); /* load_inter_quant_mat */                  if(is_custom_inter_matrix(pParam->mpeg_quant_matrices))
1224                  if (get_inter_matrix_status()) {                          bs_put_matrix(bs, get_inter_matrix(pParam->mpeg_quant_matrices));
                         bs_put_matrix(bs, get_inter_matrix());  
                 }  
   
1225          }          }
1226    
1227          if (vol_ver_id != 1) {          if (vol_ver_id != 1) {
# Line 1273  Line 1235 
1235          BitstreamPutBit(bs, 1);         /* resync_marker_disable */          BitstreamPutBit(bs, 1);         /* resync_marker_disable */
1236          BitstreamPutBit(bs, 0);         /* data_partitioned */          BitstreamPutBit(bs, 0);         /* data_partitioned */
1237    
1238          if (vol_ver_id != 1)          if (vol_ver_id != 1) {
         {  
1239                  BitstreamPutBit(bs, 0);         /* newpred_enable */                  BitstreamPutBit(bs, 0);         /* newpred_enable */
1240                    BitstreamPutBit(bs, 0);         /* reduced_resolution_vop_enabled */
                 BitstreamPutBit(bs, (pParam->vol_flags & XVID_VOL_REDUCED_ENABLE)?1:0);  
                                                                         /* reduced_resolution_vop_enabled */  
1241          }          }
1242    
1243          BitstreamPutBit(bs, 0);         /* scalability */          BitstreamPutBit(bs, 0);         /* scalability */
1244    
1245          /* fake divx5 id, to ensure compatibility with divx5 decoder */          BitstreamPadAlways(bs); /* next_start_code(); */
1246  #define DIVX5_ID "DivX000b000p"  
1247          if (pParam->max_bframes > 0 && (pParam->global_flags & XVID_GLOBAL_PACKED)) {          /* divx5 userdata string */
1248    #define DIVX5_ID ((char *)"DivX503b1393")
1249      if ((pParam->global_flags & XVID_GLOBAL_DIVX5_USERDATA)) {
1250                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));                  BitstreamWriteUserData(bs, DIVX5_ID, strlen(DIVX5_ID));
1251            if (pParam->max_bframes > 0 && (pParam->global_flags & XVID_GLOBAL_PACKED))
1252          BitstreamPutBits(bs, 'p', 8);
1253          }          }
1254    
1255          /* xvid id */          /* xvid id */
1256  #define XVID_ID "XviD" XVID_BS_VERSION          {
1257          BitstreamWriteUserData(bs, XVID_ID, strlen(XVID_ID));                  const char xvid_user_format[] = "XviD%04d%c";
1258                    char xvid_user_data[100];
1259                    sprintf(xvid_user_data,
1260                                    xvid_user_format,
1261                                    XVID_BS_VERSION,
1262                                    (frame->vop_flags & XVID_VOP_CARTOON)?'C':'\0');
1263                    BitstreamWriteUserData(bs, xvid_user_data, strlen(xvid_user_data));
1264            }
1265  }  }
1266    
1267    
# Line 1303  Line 1273 
1273                                                  Bitstream * const bs,                                                  Bitstream * const bs,
1274                                                  const MBParam * pParam,                                                  const MBParam * pParam,
1275                                                  const FRAMEINFO * const frame,                                                  const FRAMEINFO * const frame,
1276                                                  int vop_coded)                                                  int vop_coded,
1277                                                    unsigned int quant)
1278  {  {
1279          uint32_t i;          uint32_t i;
1280    
# Line 1331  Line 1302 
1302          WRITE_MARKER();          WRITE_MARKER();
1303    
1304          /* time_increment: value=nth_of_sec, nbits = log2(resolution) */          /* time_increment: value=nth_of_sec, nbits = log2(resolution) */
1305            BitstreamPutBits(bs, frame->ticks, MAX(log2bin(pParam->fbase-1), 1));
         BitstreamPutBits(bs, frame->ticks, log2bin(pParam->fbase));  
1306  #if 0  #if 0
1307          DPRINTF("[%i:%i] %c",          DPRINTF("[%i:%i] %c",
1308                          frame->seconds, frame->ticks,                          frame->seconds, frame->ticks,
# Line 1345  Line 1315 
1315    
1316          if (!vop_coded) {          if (!vop_coded) {
1317                  BitstreamPutBits(bs, 0, 1);                  BitstreamPutBits(bs, 0, 1);
1318    #if 0
1319                    BitstreamPadAlways(bs); /*  next_start_code() */
1320    #endif
1321                    /* NB: It's up to the function caller to write the next_start_code().
1322                     * At the moment encoder.c respects that requisite because a VOP
1323                     * always ends with a next_start_code either if it's coded or not
1324                     * and encoder.c terminates a frame with a next_start_code in whatever
1325                     * case */
1326                  return;                  return;
1327          }          }
1328    
# Line 1353  Line 1331 
1331          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )          if ( (frame->coding_type == P_VOP) || (frame->coding_type == S_VOP) )
1332                  BitstreamPutBits(bs, frame->rounding_type, 1);                  BitstreamPutBits(bs, frame->rounding_type, 1);
1333    
         if ((frame->vol_flags & XVID_VOL_REDUCED_ENABLE))  
                 BitstreamPutBit(bs, (frame->vop_flags & XVID_VOP_REDUCED)?1:0);  
   
1334          BitstreamPutBits(bs, 0, 3);     /* intra_dc_vlc_threshold */          BitstreamPutBits(bs, 0, 3);     /* intra_dc_vlc_threshold */
1335    
1336          if ((frame->vol_flags & XVID_VOL_INTERLACING)) {          if ((frame->vol_flags & XVID_VOL_INTERLACING)) {
# Line 1366  Line 1341 
1341          if (frame->coding_type == S_VOP) {          if (frame->coding_type == S_VOP) {
1342                  if (1)  {               /* no_of_sprite_warping_points>=1 (we use 2!) */                  if (1)  {               /* no_of_sprite_warping_points>=1 (we use 2!) */
1343                          int k;                          int k;
1344                          for (k=0;k<2;k++)                          for (k=0;k<3;k++)
1345                          {                          {
1346                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); /* du[k]  */                                  bs_put_spritetrajectory(bs, frame->warp.duv[k].x ); /* du[k]  */
1347                                  WRITE_MARKER();                                  WRITE_MARKER();
# Line 1388  Line 1363 
1363    
1364    
1365  #if 0  #if 0
1366          DPRINTF(XVID_DEBUG_HEADER, "quant = %i\n", frame->quant);          DPRINTF(XVID_DEBUG_HEADER, "quant = %i\n", quant);
1367  #endif  #endif
1368    
1369          BitstreamPutBits(bs, frame->quant, 5);  /* quantizer */          BitstreamPutBits(bs, quant, 5); /* quantizer */
1370    
1371          if (frame->coding_type != I_VOP)          if (frame->coding_type != I_VOP)
1372                  BitstreamPutBits(bs, frame->fcode, 3);  /* forward_fixed_code */                  BitstreamPutBits(bs, frame->fcode, 3);  /* forward_fixed_code */
# Line 1403  Line 1378 
1378    
1379  void  void
1380  BitstreamWriteUserData(Bitstream * const bs,  BitstreamWriteUserData(Bitstream * const bs,
1381                                                  uint8_t * data,                                                  const char *data,
1382                                                  const int length)                                                  const unsigned int length)
1383  {  {
1384          int i;          int i;
1385    
# Line 1416  Line 1391 
1391          }          }
1392    
1393  }  }
1394    
1395    /*
1396     * Group of VOP
1397     */
1398    void
1399    BitstreamWriteGroupOfVopHeader(Bitstream * const bs,
1400                                   const MBParam * pParam,
1401                                   uint32_t is_closed_gov)
1402    {
1403      int64_t time = (pParam->m_stamp + (pParam->fbase/2)) / pParam->fbase;
1404      int hours, minutes, seconds;
1405    
1406      /* compute time_code */
1407      seconds = time % 60; time /= 60;
1408      minutes = time % 60; time /= 60;
1409      hours = time % 24; /* don't overflow */
1410    
1411      BitstreamPutBits(bs, GRPOFVOP_START_CODE, 32);
1412      BitstreamPutBits(bs, hours, 5);
1413      BitstreamPutBits(bs, minutes, 6);
1414      BitstreamPutBit(bs, 1);
1415      BitstreamPutBits(bs, seconds, 6);
1416      BitstreamPutBits(bs, is_closed_gov, 1);
1417      BitstreamPutBits(bs, 0, 1); /* broken_link */
1418    }
1419    
1420    /*
1421     * End of Sequence
1422     */
1423    void
1424    BitstreamWriteEndOfSequence(Bitstream * const bs)
1425    {
1426        BitstreamPadAlways(bs);
1427        BitstreamPutBits(bs, VISOBJSEQ_STOP_CODE, 32);
1428    }
1429    
1430    /*
1431     * Video Packet (resync marker)
1432     */
1433    
1434    void write_video_packet_header(Bitstream * const bs,
1435                                   const MBParam * pParam,
1436                                   const FRAMEINFO * const frame,
1437                                   int mbnum)
1438    {
1439        const int mbnum_bits = log2bin(pParam->mb_width *  pParam->mb_height - 1);
1440        uint32_t nbitsresyncmarker;
1441    
1442        if (frame->coding_type == I_VOP)
1443          nbitsresyncmarker = NUMBITS_VP_RESYNC_MARKER;  /* 16 zeros followed by a 1. */
1444        else if (frame->coding_type == P_VOP)
1445          nbitsresyncmarker = NUMBITS_VP_RESYNC_MARKER-1 + frame->fcode;
1446        else /* B_VOP */
1447          nbitsresyncmarker = MAX(NUMBITS_VP_RESYNC_MARKER+1, NUMBITS_VP_RESYNC_MARKER-1 + MAX(frame->fcode, frame->bcode));
1448    
1449        BitstreamPadAlways(bs);
1450        BitstreamPutBits(bs, RESYNC_MARKER, nbitsresyncmarker);
1451        BitstreamPutBits(bs, mbnum, mbnum_bits);
1452        BitstreamPutBits(bs, frame->quant, 5);
1453        BitstreamPutBit(bs, 0); /* hec */
1454    }

Legend:
Removed from v.1.39.2.10  
changed lines
  Added in v.1.58

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