mirror of
1
Fork 0

[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:
dependabot[bot] 2023-09-25 11:33:10 +01:00 committed by GitHub
parent 9f9fcf743d
commit 380d83f9a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 16 additions and 15 deletions

2
go.mod
View File

@ -18,7 +18,7 @@ require (
codeberg.org/gruf/go-store/v2 v2.2.2 codeberg.org/gruf/go-store/v2 v2.2.2
github.com/DmitriyVTitov/size v1.5.0 github.com/DmitriyVTitov/size v1.5.0
github.com/KimMachineGun/automemlimit v0.3.0 github.com/KimMachineGun/automemlimit v0.3.0
github.com/abema/go-mp4 v0.13.0 github.com/abema/go-mp4 v1.0.0
github.com/buckket/go-blurhash v1.1.0 github.com/buckket/go-blurhash v1.1.0
github.com/coreos/go-oidc/v3 v3.6.0 github.com/coreos/go-oidc/v3 v3.6.0
github.com/disintegration/imaging v1.6.2 github.com/disintegration/imaging v1.6.2

4
go.sum
View File

@ -91,8 +91,8 @@ github.com/DmitriyVTitov/size v1.5.0 h1:/PzqxYrOyOUX1BXj6J9OuVRVGe+66VL4D9FlUaW5
github.com/DmitriyVTitov/size v1.5.0/go.mod h1:le6rNI4CoLQV1b9gzp1+3d7hMAD/uu2QcJ+aYbNgiU0= github.com/DmitriyVTitov/size v1.5.0/go.mod h1:le6rNI4CoLQV1b9gzp1+3d7hMAD/uu2QcJ+aYbNgiU0=
github.com/KimMachineGun/automemlimit v0.3.0 h1:khgwM5ESVN85cE6Bq2ozMAAWDfrOEwQ51D/YlmThE04= github.com/KimMachineGun/automemlimit v0.3.0 h1:khgwM5ESVN85cE6Bq2ozMAAWDfrOEwQ51D/YlmThE04=
github.com/KimMachineGun/automemlimit v0.3.0/go.mod h1:pJhTW/nWJMj6SnWSU2TEKSlCaM+1N5Mej+IfS/5/Ol0= github.com/KimMachineGun/automemlimit v0.3.0/go.mod h1:pJhTW/nWJMj6SnWSU2TEKSlCaM+1N5Mej+IfS/5/Ol0=
github.com/abema/go-mp4 v0.13.0 h1:gjEZLt7g0ePpYA5sUDrI2r8X+WuI8o+USkgG5wMgmkI= github.com/abema/go-mp4 v1.0.0 h1:SvfJv+fi2Bpa1uInouqIYpEUFN3yyYCQMXlf4ijOHf0=
github.com/abema/go-mp4 v0.13.0/go.mod h1:vPl9t5ZK7K0x68jh12/+ECWBCXoWuIDtNgPtU2f04ws= github.com/abema/go-mp4 v1.0.0/go.mod h1:vPl9t5ZK7K0x68jh12/+ECWBCXoWuIDtNgPtU2f04ws=
github.com/ajg/form v1.5.1 h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU= github.com/ajg/form v1.5.1 h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU=
github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY=
github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y= github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=

View File

@ -6,7 +6,8 @@ go-mp4
[![Coverage Status](https://coveralls.io/repos/github/abema/go-mp4/badge.svg)](https://coveralls.io/github/abema/go-mp4) [![Coverage Status](https://coveralls.io/repos/github/abema/go-mp4/badge.svg)](https://coveralls.io/github/abema/go-mp4)
[![Go Report Card](https://goreportcard.com/badge/github.com/abema/go-mp4)](https://goreportcard.com/report/github.com/abema/go-mp4) [![Go Report Card](https://goreportcard.com/badge/github.com/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 ## 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: Install mp4tool as follows:
```sh ```sh
go install github.com/abema/go-mp4/mp4tool@latest go install github.com/abema/go-mp4/cmd/mp4tool@latest
mp4tool -help mp4tool -help
``` ```

View File

@ -5,7 +5,7 @@ import (
"io" "io"
"math" "math"
"github.com/abema/go-mp4/bitio" "github.com/abema/go-mp4/internal/bitio"
) )
const LengthUnlimited = math.MaxUint32 const LengthUnlimited = math.MaxUint32

View File

@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"io" "io"
"github.com/abema/go-mp4/bitio" "github.com/abema/go-mp4/internal/bitio"
"github.com/abema/go-mp4/util" "github.com/abema/go-mp4/internal/util"
) )
/*************************** btrt ****************************/ /*************************** btrt ****************************/

View File

@ -3,7 +3,7 @@ package mp4
import ( import (
"fmt" "fmt"
"github.com/abema/go-mp4/util" "github.com/abema/go-mp4/internal/util"
) )
/*************************** ilst ****************************/ /*************************** ilst ****************************/

View File

@ -8,7 +8,7 @@ import (
"math" "math"
"reflect" "reflect"
"github.com/abema/go-mp4/bitio" "github.com/abema/go-mp4/internal/bitio"
) )
const ( const (

View File

@ -5,7 +5,7 @@ import (
"errors" "errors"
"io" "io"
"github.com/abema/go-mp4/bitio" "github.com/abema/go-mp4/internal/bitio"
) )
type ProbeInfo struct { type ProbeInfo struct {

View File

@ -7,7 +7,7 @@ import (
"reflect" "reflect"
"strconv" "strconv"
"github.com/abema/go-mp4/util" "github.com/abema/go-mp4/internal/util"
) )
type stringifier struct { type stringifier struct {

6
vendor/modules.txt vendored
View File

@ -77,11 +77,11 @@ github.com/DmitriyVTitov/size
## explicit; go 1.19 ## explicit; go 1.19
github.com/KimMachineGun/automemlimit github.com/KimMachineGun/automemlimit
github.com/KimMachineGun/automemlimit/memlimit 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 ## explicit; go 1.14
github.com/abema/go-mp4 github.com/abema/go-mp4
github.com/abema/go-mp4/bitio github.com/abema/go-mp4/internal/bitio
github.com/abema/go-mp4/util github.com/abema/go-mp4/internal/util
# github.com/aymerick/douceur v0.2.0 # github.com/aymerick/douceur v0.2.0
## explicit ## explicit
github.com/aymerick/douceur/css github.com/aymerick/douceur/css