Changeset 618 in SHVCSoftware for branches/SHM-5.1-dev/source/Lib/TLibEncoder


Ignore:
Timestamp:
20 Feb 2014, 00:04:52 (11 years ago)
Author:
qualcomm
Message:

P0307_VPS_NON_VUI_EXT_UPDATE

vps_non_vui_extension_data_bit seems to be vps_non_vui_extension_data_byte.
HTM implementation also implemented it as byte instead of bit.

Implementation is updated accordingly.

Submitted by Hendry (fhendry@…)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-5.1-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r617 r618  
    11571157  WRITE_UVLC( vps->getVpsNonVuiExtLength(), "vps_non_vui_extension_length" );
    11581158#if P0307_VPS_NON_VUI_EXT_UPDATE
    1159   if (vps->getVpsNonVuiExtLength() > 0)
    1160   {
    1161     Int nonVuiExtBits = vps->getVpsNonVuiExtLength() * 8;
    1162     for (i = 0; i < nonVuiExtBits; i++)
    1163     {
    1164       WRITE_FLAG(1, "vps_non_vui_extension_data_bit"); //just parse and discard for now.
    1165     }
     1159  for (i = 1; i <= vps->getVpsNonVuiExtLength(); i++)
     1160  {
     1161    WRITE_CODE(1, 8, "vps_non_vui_extension_data_byte");
    11661162  }
    11671163#else
Note: See TracChangeset for help on using the changeset viewer.