Commit ce26e601 by Oliver Woodman

Fix typo in H265Reader.

See H.265/HEVC specification subsection 7.3.4.
parent ab3f6237
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment