diff options
| author | 2023-03-13 09:52:57 +0100 | |
|---|---|---|
| committer | 2023-03-13 09:52:57 +0100 | |
| commit | 86dafa687184fc013df5c6f2198b1c936ddd226c (patch) | |
| tree | 4d56a1bfa65928a8e0b03407ea3ce2ebbce703b8 | |
| parent | [chore]: Bump golang.org/x/image from 0.5.0 to 0.6.0 (#1615) (diff) | |
| download | gotosocial-86dafa687184fc013df5c6f2198b1c936ddd226c.tar.xz | |
[chore]: Bump github.com/abema/go-mp4 from 0.10.0 to 0.10.1 (#1617)
Bumps [github.com/abema/go-mp4](https://github.com/abema/go-mp4) from 0.10.0 to 0.10.1.
- [Release notes](https://github.com/abema/go-mp4/releases)
- [Commits](https://github.com/abema/go-mp4/compare/v0.10.0...v0.10.1)
---
updated-dependencies:
- dependency-name: github.com/abema/go-mp4
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | go.sum | 4 | ||||
| -rw-r--r-- | vendor/github.com/abema/go-mp4/read.go | 4 | ||||
| -rw-r--r-- | vendor/modules.txt | 2 | 
4 files changed, 6 insertions, 6 deletions
@@ -16,7 +16,7 @@ require (  	codeberg.org/gruf/go-sched v1.2.3  	codeberg.org/gruf/go-store/v2 v2.2.1  	github.com/KimMachineGun/automemlimit v0.2.4 -	github.com/abema/go-mp4 v0.10.0 +	github.com/abema/go-mp4 v0.10.1  	github.com/buckket/go-blurhash v1.1.0  	github.com/coreos/go-oidc/v3 v3.5.0  	github.com/cornelk/hashmap v1.0.8 @@ -92,8 +92,8 @@ github.com/KimMachineGun/automemlimit v0.2.4 h1:GBty8TK8k0aJer1Pq5/3Vdt2ef+YpLhc  github.com/KimMachineGun/automemlimit v0.2.4/go.mod h1:38QAnnnNhnFuAIW3+aPlaVUHqzE9buJYZK3m/jsra8E=  github.com/Masterminds/semver/v3 v3.1.1 h1:hLg3sBzpNErnxhQtUy/mmLR2I9foDujNK030IGemrRc=  github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= -github.com/abema/go-mp4 v0.10.0 h1:76eRo2PlJQUHAKKsQJnROsdIHdt+aPXhJkmPFMjj3+4= -github.com/abema/go-mp4 v0.10.0/go.mod h1:vPl9t5ZK7K0x68jh12/+ECWBCXoWuIDtNgPtU2f04ws= +github.com/abema/go-mp4 v0.10.1 h1:wOhZgNxjduc8r4FJdwPa5x/gdBSSX+8MTnfNj/xkJaE= +github.com/abema/go-mp4 v0.10.1/go.mod h1:vPl9t5ZK7K0x68jh12/+ECWBCXoWuIDtNgPtU2f04ws=  github.com/ajg/form v1.5.1 h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU=  github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY=  github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y= 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")  	} diff --git a/vendor/modules.txt b/vendor/modules.txt index 792602dd5..ca6d99f33 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -73,7 +73,7 @@ codeberg.org/gruf/go-store/v2/util  ## explicit; go 1.19  github.com/KimMachineGun/automemlimit  github.com/KimMachineGun/automemlimit/memlimit -# github.com/abema/go-mp4 v0.10.0 +# github.com/abema/go-mp4 v0.10.1  ## explicit; go 1.14  github.com/abema/go-mp4  github.com/abema/go-mp4/bitio  | 
