- Timestamp:
- 5 Apr 2013, 20:37:43 (12 years ago)
- Location:
- branches/HM-10.0-dev-SHM/source
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HM-10.0-dev-SHM/source/App/TAppEncoder/TAppEncTop.cpp
r115 r116 734 734 vps->setLayerIdInNuh(0, 0); 735 735 vps->setLayerIdInVps(0, 0); 736 for(i = 1; i < = vps->getMaxLayerId(); i++) // TODO: we should use vps->getMaxLayers(), but currently it is always set to 1736 for(i = 1; i < vps->getMaxLayers(); i++) 737 737 { 738 738 vps->setLayerIdInNuh(i, i); -
branches/HM-10.0-dev-SHM/source/Lib/TLibDecoder/TDecCAVLC.cpp
r115 r116 880 880 vps->setLayerIdInNuh(0, 0); 881 881 vps->setLayerIdInVps(0, 0); 882 for(i = 1; i < = vps->getMaxLayerId(); i++) // TODO: we should use vps->getMaxLayers(), but currently it is always set to 1882 for(i = 1; i < vps->getMaxLayers(); i++) 883 883 { 884 884 if( vps->getNuhLayerIdPresentFlag() ) -
branches/HM-10.0-dev-SHM/source/Lib/TLibEncoder/TEncCavlc.cpp
r115 r116 690 690 691 691 WRITE_FLAG( vps->getNuhLayerIdPresentFlag(), "vps_nuh_layer_id_present_flag" ); 692 for(i = 1; i < = vps->getMaxLayerId(); i++) // TODO: we should use vps->getMaxLayers(), but currently it is always set to 1692 for(i = 1; i < vps->getMaxLayers(); i++) 693 693 { 694 694 if( vps->getNuhLayerIdPresentFlag() )
Note: See TracChangeset for help on using the changeset viewer.