diff options
Diffstat (limited to 'vendor/github.com')
-rw-r--r-- | vendor/github.com/abema/go-mp4/read.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/abema/go-mp4/read.go b/vendor/github.com/abema/go-mp4/read.go index fa69561aa..e4fadb121 100644 --- a/vendor/github.com/abema/go-mp4/read.go +++ b/vendor/github.com/abema/go-mp4/read.go @@ -148,7 +148,7 @@ func readBoxStructureFromInternal(r io.ReadSeeker, bi *BoxInfo, path BoxPath, ha func readBoxStructure(r io.ReadSeeker, totalSize uint64, isRoot bool, path BoxPath, ctx Context, handler ReadHandler, params []interface{}) ([]interface{}, error) { vals := make([]interface{}, 0, 8) - for isRoot || totalSize != 0 { + for isRoot || totalSize >= SmallHeaderSize { bi, err := ReadBoxInfo(r) if isRoot && err == io.EOF { return vals, nil @@ -174,7 +174,7 @@ func readBoxStructure(r io.ReadSeeker, totalSize uint64, isRoot bool, path BoxPa } } - if totalSize != 0 { + if totalSize != 0 && !ctx.IsQuickTimeCompatible { return nil, errors.New("Unexpected EOF") } |