mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 04:52:24 -05:00
[chore]: Bump github.com/abema/go-mp4 from 0.13.0 to 1.0.0 (#2222)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
9f9fcf743d
commit
380d83f9a9
15 changed files with 16 additions and 15 deletions
5
vendor/github.com/abema/go-mp4/README.md
generated
vendored
5
vendor/github.com/abema/go-mp4/README.md
generated
vendored
|
|
@ -6,7 +6,8 @@ go-mp4
|
|||
[](https://coveralls.io/github/abema/go-mp4)
|
||||
[](https://goreportcard.com/report/github.com/abema/go-mp4)
|
||||
|
||||
go-mp4 is Go library for reading and writing MP4.
|
||||
go-mp4 is Go library and CLI tool which provide low-level I/O interfaces of MP4.
|
||||
This library supports you to parse or build any MP4 boxes(atoms) directly.
|
||||
|
||||
## Integration with your Go application
|
||||
|
||||
|
|
@ -135,7 +136,7 @@ If you should reduce Read function calls, you can wrap the io.ReadSeeker by [buf
|
|||
Install mp4tool as follows:
|
||||
|
||||
```sh
|
||||
go install github.com/abema/go-mp4/mp4tool@latest
|
||||
go install github.com/abema/go-mp4/cmd/mp4tool@latest
|
||||
|
||||
mp4tool -help
|
||||
```
|
||||
|
|
|
|||
2
vendor/github.com/abema/go-mp4/box.go
generated
vendored
2
vendor/github.com/abema/go-mp4/box.go
generated
vendored
|
|
@ -5,7 +5,7 @@ import (
|
|||
"io"
|
||||
"math"
|
||||
|
||||
"github.com/abema/go-mp4/bitio"
|
||||
"github.com/abema/go-mp4/internal/bitio"
|
||||
)
|
||||
|
||||
const LengthUnlimited = math.MaxUint32
|
||||
|
|
|
|||
4
vendor/github.com/abema/go-mp4/box_types_iso14496_12.go
generated
vendored
4
vendor/github.com/abema/go-mp4/box_types_iso14496_12.go
generated
vendored
|
|
@ -5,8 +5,8 @@ import (
|
|||
"fmt"
|
||||
"io"
|
||||
|
||||
"github.com/abema/go-mp4/bitio"
|
||||
"github.com/abema/go-mp4/util"
|
||||
"github.com/abema/go-mp4/internal/bitio"
|
||||
"github.com/abema/go-mp4/internal/util"
|
||||
)
|
||||
|
||||
/*************************** btrt ****************************/
|
||||
|
|
|
|||
2
vendor/github.com/abema/go-mp4/box_types_metadata.go
generated
vendored
2
vendor/github.com/abema/go-mp4/box_types_metadata.go
generated
vendored
|
|
@ -3,7 +3,7 @@ package mp4
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/abema/go-mp4/util"
|
||||
"github.com/abema/go-mp4/internal/util"
|
||||
)
|
||||
|
||||
/*************************** ilst ****************************/
|
||||
|
|
|
|||
2
vendor/github.com/abema/go-mp4/marshaller.go
generated
vendored
2
vendor/github.com/abema/go-mp4/marshaller.go
generated
vendored
|
|
@ -8,7 +8,7 @@ import (
|
|||
"math"
|
||||
"reflect"
|
||||
|
||||
"github.com/abema/go-mp4/bitio"
|
||||
"github.com/abema/go-mp4/internal/bitio"
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
|||
2
vendor/github.com/abema/go-mp4/probe.go
generated
vendored
2
vendor/github.com/abema/go-mp4/probe.go
generated
vendored
|
|
@ -5,7 +5,7 @@ import (
|
|||
"errors"
|
||||
"io"
|
||||
|
||||
"github.com/abema/go-mp4/bitio"
|
||||
"github.com/abema/go-mp4/internal/bitio"
|
||||
)
|
||||
|
||||
type ProbeInfo struct {
|
||||
|
|
|
|||
2
vendor/github.com/abema/go-mp4/string.go
generated
vendored
2
vendor/github.com/abema/go-mp4/string.go
generated
vendored
|
|
@ -7,7 +7,7 @@ import (
|
|||
"reflect"
|
||||
"strconv"
|
||||
|
||||
"github.com/abema/go-mp4/util"
|
||||
"github.com/abema/go-mp4/internal/util"
|
||||
)
|
||||
|
||||
type stringifier struct {
|
||||
|
|
|
|||
6
vendor/modules.txt
vendored
6
vendor/modules.txt
vendored
|
|
@ -77,11 +77,11 @@ github.com/DmitriyVTitov/size
|
|||
## explicit; go 1.19
|
||||
github.com/KimMachineGun/automemlimit
|
||||
github.com/KimMachineGun/automemlimit/memlimit
|
||||
# github.com/abema/go-mp4 v0.13.0
|
||||
# github.com/abema/go-mp4 v1.0.0
|
||||
## explicit; go 1.14
|
||||
github.com/abema/go-mp4
|
||||
github.com/abema/go-mp4/bitio
|
||||
github.com/abema/go-mp4/util
|
||||
github.com/abema/go-mp4/internal/bitio
|
||||
github.com/abema/go-mp4/internal/util
|
||||
# github.com/aymerick/douceur v0.2.0
|
||||
## explicit
|
||||
github.com/aymerick/douceur/css
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue