Changeset 156 in SHVCSoftware for branches/SHM-2.0-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
8 May 2013, 00:57:17 (12 years ago)
Author:
qualcomm
Message:

Signal output_layer_set_idx as output_layer_set_idx_minus1 in VPS extn. (MACRO: VPS_OUTPUT_LAYER_SET_IDX)

From: Adarsh K.Ramasubramonian <aramasub@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-2.0-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r133 r156  
    926926  for(i = 0; i < vps->getNumOutputLayerSets(); i++)
    927927  {
     928#if VPS_OUTPUT_LAYER_SET_IDX
     929    READ_UVLC( uiCode,           "vps_output_layer_set_idx_minus1[i]"); vps->setOutputLayerSetIdx(i, uiCode + 1);
     930#else
    928931    READ_UVLC( uiCode,           "vps_output_layer_set_idx[i]"); vps->setOutputLayerSetIdx(i, uiCode);
     932#endif
    929933    Int lsIdx = vps->getOutputLayerSetIdx(i);
    930934    for(j = 0; j <= vps->getMaxLayerId(); j++)
Note: See TracChangeset for help on using the changeset viewer.