mirror of
https://github.com/samsonjs/media.git
synced 2026-03-31 10:25:48 +00:00
Fix typo in H265Reader.
See H.265/HEVC specification subsection 7.3.4.
This commit is contained in:
parent
ab3f623767
commit
ce26e601ed
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue