id,summary,reporter,owner,description,type,status,priority,component,version,resolution,keywords,cc 114,Mismatch between text and software on DPB size syntax,kkawamura,tech,"There is a mismatch between text and software onDPB size syntax. In F.7.3.2.1.3 DPB size syntax of 2nd Edition, the text is {{{ sub_layer_flag_info_present_flag[ i ] for( j = 0; j <= MaxSubLayersInLayerSetMinus1[ currLsIdx ]; j++ ) { if( j > 0 && sub_layer_flag_info_present_flag[ i ] ) sub_layer_dpb_info_present_flag[ i ][ j ] }}} In TDecCAVLC.cpp of HTM15.2, the code is {{{ READ_FLAG( uiCode, ""sub_layer_flag_info_present_flag"" ); dpbSize.setSubLayerFlagInfoPresentFlag( i, uiCode == 1 ); for( Int j = 0; j <= vps->getMaxSubLayersInLayerSetMinus1( currLsIdx ); j++ ) { if( j > 0 && dpbSize.getSubLayerDpbInfoPresentFlag( i, j ) ) { READ_FLAG( uiCode, ""sub_layer_dpb_info_present_flag"" ); dpbSize.setSubLayerDpbInfoPresentFlag( i, j, uiCode == 1 ); } }}} To align software with text, dpbSize.getSubLayerDpbInfoPresentFlag is replaced by dpbSize.getSubLayerFlagInfoPresentFlag.",mismatch,new,major,HTM software,HTM-15.2,,,tech jct-3v@…