Changeset 531 in SHVCSoftware for branches/SHM-4.1-dev/source/App
- Timestamp:
- 31 Dec 2013, 16:50:03 (11 years ago)
- Location:
- branches/SHM-4.1-dev/source/App
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-4.1-dev/source/App/TAppDecoder/TAppDecTop.cpp
r521 r531 514 514 #endif 515 515 { 516 if (pcListPic->empty()) 517 { 518 return; 519 } 520 516 521 TComList<TComPic*>::iterator iterPic = pcListPic->begin(); 517 522 Int numPicsNotYetDisplayed = 0; … … 733 738 #endif 734 739 { 735 if(!pcListPic )740 if(!pcListPic || pcListPic->empty()) 736 741 { 737 742 return; -
branches/SHM-4.1-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r530 r531 982 982 #if O0153_ALT_OUTPUT_LAYER_FLAG 983 983 ("AltOutputLayerFlag", m_altOutputLayerFlag, false, "Specifies the value of alt_output_layer_flag in VPS extension") 984 #endif 985 #if O0149_CROSS_LAYER_BLA_FLAG 986 ("CrossLayerBLAFlag", m_crossLayerBLAFlag, false, "Specifies the value of cross_layer_bla_flag in VPS") 984 987 #endif 985 988 ; -
branches/SHM-4.1-dev/source/App/TAppEncoder/TAppEncCfg.h
r530 r531 400 400 Bool m_crossLayerIrapAlignFlag; 401 401 #endif 402 #if O0149_CROSS_LAYER_BLA_FLAG 403 bool m_crossLayerBLAFlag; 404 #endif 402 405 public: 403 406 TAppEncCfg(); -
branches/SHM-4.1-dev/source/App/TAppEncoder/TAppEncTop.cpp
r529 r531 625 625 m_acTEncTop[layer].setAltOuputLayerFlag( m_altOutputLayerFlag ); 626 626 #endif 627 #if O0149_CROSS_LAYER_BLA_FLAG 628 m_acTEncTop[layer].setCrossLayerBLAFlag( m_crossLayerBLAFlag ); 629 #endif 627 630 } 628 631 }
Note: See TracChangeset for help on using the changeset viewer.