refactor(xgplayer-transmuxer): byte-reader工具类转移至utils文件夹

This commit is contained in:
liujing.cyan 2024-06-19 16:26:33 +08:00 committed by gemstone
parent b7e357cf05
commit 8db3c9fe61
2 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import { AudioCodecType, VideoCodecType } from '../model'
import { getAvcCodec, readBig16, readBig24, readBig32, readBig64, combineToFloat, toDegree } from '../utils'
import { AAC } from '../codec'
import { ByteReader } from './byte-reader'
import { ByteReader } from '../utils/byte-reader'
export class MP4Parser {
static findBox (data, names, start = 0) {
const ret = []