Ignore:
Timestamp:
9 Oct 2014, 12:35:18 (10 years ago)
Author:
tech
Message:

Cleanups:

  • Moved several functions form .h to .cpp files.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-12.0-dev1/source/Lib/TLibEncoder/TEncCavlc.cpp

    r1062 r1063  
    934934#endif
    935935}
     936
     937
     938#if H_MV_HLS10_PPS
     939Void TEncCavlc::codePPSMultilayerExtension(TComPPS* pcPPS)
     940{
     941  WRITE_FLAG( pcPPS->getPocResetInfoPresentFlag( ) ? 1 : 0 , "poc_reset_info_present_flag" );
     942  WRITE_FLAG( pcPPS->getPpsInferScalingListFlag( ) ? 1 : 0 , "pps_infer_scaling_list_flag" );
     943  WRITE_CODE( pcPPS->getPpsScalingListRefLayerId( ), 6, "pps_scaling_list_ref_layer_id" );
     944  WRITE_UVLC( 0, "num_ref_loc_offsets" );
     945}
     946#endif
     947
    936948#endif
    937949
     
    950962#endif
    951963}
    952 #endif
     964
     965
     966#endif
     967
     968
     969
    953970
    954971Void TEncCavlc::codeVPS( TComVPS* pcVPS )
Note: See TracChangeset for help on using the changeset viewer.