mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
fix(xgplayer-transmuxer): mp4 tkhd中matrix前2层取值问题
This commit is contained in:
parent
8db3c9fe61
commit
6f6a48afbb
@ -170,8 +170,8 @@ export class MP4Parser {
|
||||
byte.back(36)
|
||||
const caculatedMatrix = [] // for caculation of rotation
|
||||
for (let i = 0, int32; i < 3; i++) {
|
||||
caculatedMatrix.push(combineToFloat(byte.read(2), byte.read(2))) // 16.16 fixed point
|
||||
caculatedMatrix.push(combineToFloat(byte.read(2), byte.read(2))) // 16.16 fixed point
|
||||
caculatedMatrix.push(combineToFloat(byte.readInt(2), byte.readInt(2))) // 16.16 fixed point
|
||||
caculatedMatrix.push(combineToFloat(byte.readInt(2), byte.readInt(2))) // 16.16 fixed point
|
||||
int32 = byte.readInt(4)
|
||||
caculatedMatrix.push(combineToFloat(int32 >> 30, int32 & 0x3fffffff)) // 2.30 fixed point
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user