Ignore:
Timestamp:
17 Mar 2015, 20:26:49 (9 years ago)
Author:
tech
Message:

FIX_TICKET_95

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-13.1-dev0/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r1163 r1167  
    10551055  READ_FLAG( uiCode, "poc_reset_info_present_flag" ); pcPPS->setPocResetInfoPresentFlag( uiCode == 1 );
    10561056  READ_FLAG( uiCode, "pps_infer_scaling_list_flag" ); pcPPS->setPpsInferScalingListFlag( uiCode == 1 );
     1057#if FIX_TICKET_95
     1058  if (pcPPS->getPpsInferScalingListFlag())
     1059  {
    10571060  READ_CODE( 6, uiCode, "pps_scaling_list_ref_layer_id" ); pcPPS->setPpsScalingListRefLayerId( uiCode );
     1061  }
     1062#else
     1063  READ_CODE( 6, uiCode, "pps_scaling_list_ref_layer_id" ); pcPPS->setPpsScalingListRefLayerId( uiCode );
     1064#endif
    10581065
    10591066  UInt numRefLocOffsets;;
Note: See TracChangeset for help on using the changeset viewer.