mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
fix: 🐛 修复AnnexB组织形式的Nalu分割算法,遇到"0x000000+非1"的方式时不应进行分割
This commit is contained in:
parent
617fa8995c
commit
d031e1e646
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user