Changeset 100 in 3DVCSoftware for trunk/source/Lib/TLibEncoder/TEncCavlc.cpp
- Timestamp:
- 9 Aug 2012, 12:53:16 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibEncoder/TEncCavlc.cpp
r77 r100 378 378 Void TEncCavlc::codeVPS( TComVPS* pcVPS ) 379 379 { 380 380 WRITE_CODE( pcVPS->getMaxTLayers() - 1, 3, "max_temporal_layers_minus1" ); 381 381 WRITE_CODE( pcVPS->getMaxLayers() - 1, 5, "max_layers_minus1" ); 382 382 WRITE_FLAG( pcVPS->getTemporalNestingFlag() - 1, "temporal_id_nesting_flag" ); … … 775 775 { 776 776 WRITE_CODE( (pcSlice->getPOC()-pcSlice->getLastIDR()+(1<<pcSlice->getSPS()->getBitsForPOC()))%(1<<pcSlice->getSPS()->getBitsForPOC()), pcSlice->getSPS()->getBitsForPOC(), "pic_order_cnt_lsb"); 777 #if HHI_FIX778 777 if( pcSlice->getPOC() == 0 && pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_IDV ) 779 778 { … … 848 847 } 849 848 if( pcSlice->getPOC() != 0 ) 850 #else851 if( pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_IDV )852 #endif853 849 { 854 850 TComReferencePictureSet* rps = pcSlice->getRPS();
Note: See TracChangeset for help on using the changeset viewer.