Fix typo in H265Reader.

See H.265/HEVC specification subsection 7.3.4.
This commit is contained in:
Oliver Woodman 2015-08-11 17:47:02 +01:00
parent ab3f623767
commit ce26e601ed

View file

@ -319,7 +319,7 @@ import java.util.Collections;
// scaling_list_pred_matrix_id_delta[sizeId][matrixId]
bitArray.readUnsignedExpGolombCodedInt();
} else {
int coefNum = Math.min(64, 1 << (4 + sizeId << 1));
int coefNum = Math.min(64, 1 << (4 + (sizeId << 1)));
if (sizeId > 1) {
// scaling_list_dc_coef_minus8[sizeId - 2][matrixId]
bitArray.readSignedExpGolombCodedInt();