fix: 🐛 修复AnnexB组织形式的Nalu分割算法,遇到"0x000000+非1"的方式时不应进行分割

This commit is contained in:
gemstone 2024-12-14 01:31:23 +08:00
parent 617fa8995c
commit d031e1e646

View File

@ -24,6 +24,9 @@ export class NALu {
} else if (data[end - 2] !== 0) {
end++
break
} else if (end < len - 1 && data[end + 1] !== 1) {
end++
break
}
if (start !== end - 2) units.push(data.subarray(start, end - 2))