Changeset 858 in 3DVCSoftware for branches/HTM-10.0-dev0/source/Lib/TLibEncoder


Ignore:
Timestamp:
1 Mar 2014, 00:45:51 (11 years ago)
Author:
qualcomm
Message:

JCTVC-P0306: Coding some fixed-length coded elements in VPS extn as ue(v) and other minor modifications (Macro: H_MV_HLS_7_VPS_P0306_22)

From: Adarsh K. Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-10.0-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp

    r857 r858  
    11331133#endif
    11341134
    1135 #if !H_MV_HLS7_GEN
     1135#if !H_MV_HLS_7_VPS_P0306_22
    11361136  WRITE_CODE( pcVPS->getVpsNumProfileTierLevelMinus1( ), 6,     "vps_num_profile_tier_level_minus1" );
    11371137#else
     
    12561256  if ( pcVPS->getRepFormatIdxPresentFlag() )
    12571257  {
    1258 #if H_MV_HLS7_GEN
     1258#if H_MV_HLS_7_VPS_P0306_22
    12591259    WRITE_UVLC( pcVPS->getVpsNumRepFormatsMinus1( ), "vps_num_rep_formats_minus1" );
    12601260#else
     
    12761276      if( pcVPS->getVpsNumRepFormatsMinus1() > 0 )
    12771277      {
     1278#if H_MV_HLS_7_VPS_P0306_22
     1279        Int numBits = 1;
     1280        while ((1 << numBits) < (pcVPS->getVpsNumRepFormatsMinus1() + 1))
     1281        {
     1282          numBits++;
     1283        }
     1284        WRITE_CODE( pcVPS->getVpsRepFormatIdx(i), numBits, "vps_rep_format_idx[i]" );
     1285#else
    12781286        WRITE_CODE( pcVPS->getVpsRepFormatIdx( i ), 8, "vps_rep_format_idx" );
     1287#endif
    12791288      }
    12801289    }
Note: See TracChangeset for help on using the changeset viewer.