Skip to content
Snippets Groups Projects
Commit 98661783 authored by Kai Zhang's avatar Kai Zhang
Browse files

Remove type prefixes

parent 1f7786ca
No related branches found
No related tags found
No related merge requests found
......@@ -409,19 +409,19 @@ void HLSWriter::codePPS( const PPS* pcPPS )
}
}
#if JVET_R0062
uint32_t iExpSliceHeightSum = 0;
uint32_t expSliceHeightSum = 0;
#endif
WRITE_UVLC(numExpSliceInTile, "num_exp_slices_in_tile[i]");
for( int j = 0; j < numExpSliceInTile; j++ )
{
WRITE_UVLC(pcPPS->getSliceHeightInCtu(i + j) - 1, "exp_slice_height_in_ctus_minus1[i]");
#if JVET_R0062
iExpSliceHeightSum += pcPPS->getSliceHeightInCtu(i + j);
expSliceHeightSum += pcPPS->getSliceHeightInCtu(i + j);
#endif
}
#if JVET_R0062
CHECK( iExpSliceHeightSum > pcPPS->getTileRowHeight(pcPPS->getSliceTileIdx(i) / pcPPS->getNumTileColumns()), "The sum of expressed slice heights is larger than the height of the tile containing the slices.");
CHECK( expSliceHeightSum > pcPPS->getTileRowHeight(pcPPS->getSliceTileIdx(i) / pcPPS->getNumTileColumns()), "The sum of expressed slice heights is larger than the height of the tile containing the slices.");
#endif
i += (pcPPS->getNumSlicesInTile(i) - 1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment