summaryrefslogtreecommitdiff
path: root/vendor/github.com
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-01-23 10:23:29 +0100
committerLibravatar GitHub <noreply@github.com>2023-01-23 10:23:29 +0100
commit3e4dc6bff3b53daee834446e5fc9624944fc4b01 (patch)
tree07d5bb6d0c233cf7e0aae23513f8af779188c071 /vendor/github.com
parent[feature] Add RSS autodiscovery on profiles that enable RSS (#1373) (diff)
downloadgotosocial-3e4dc6bff3b53daee834446e5fc9624944fc4b01.tar.xz
[chore]: Bump github.com/abema/go-mp4 from 0.9.0 to 0.10.0 (#1374)
Bumps [github.com/abema/go-mp4](https://github.com/abema/go-mp4) from 0.9.0 to 0.10.0. - [Release notes](https://github.com/abema/go-mp4/releases) - [Commits](https://github.com/abema/go-mp4/compare/v0.9.0...v0.10.0) --- updated-dependencies: - dependency-name: github.com/abema/go-mp4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/github.com')
-rw-r--r--vendor/github.com/abema/go-mp4/box_types.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/abema/go-mp4/box_types.go b/vendor/github.com/abema/go-mp4/box_types.go
index 1126d643b..dc4231e3a 100644
--- a/vendor/github.com/abema/go-mp4/box_types.go
+++ b/vendor/github.com/abema/go-mp4/box_types.go
@@ -1548,6 +1548,7 @@ func (*Saiz) GetType() BoxType {
func BoxTypeAvc1() BoxType { return StrToBoxType("avc1") }
func BoxTypeEncv() BoxType { return StrToBoxType("encv") }
func BoxTypeHev1() BoxType { return StrToBoxType("hev1") }
+func BoxTypeHvc1() BoxType { return StrToBoxType("hvc1") }
func BoxTypeMp4a() BoxType { return StrToBoxType("mp4a") }
func BoxTypeEnca() BoxType { return StrToBoxType("enca") }
func BoxTypeAvcC() BoxType { return StrToBoxType("avcC") }
@@ -1557,6 +1558,7 @@ func init() {
AddAnyTypeBoxDef(&VisualSampleEntry{}, BoxTypeAvc1())
AddAnyTypeBoxDef(&VisualSampleEntry{}, BoxTypeEncv())
AddAnyTypeBoxDef(&VisualSampleEntry{}, BoxTypeHev1())
+ AddAnyTypeBoxDef(&VisualSampleEntry{}, BoxTypeHvc1())
AddAnyTypeBoxDef(&AudioSampleEntry{}, BoxTypeMp4a())
AddAnyTypeBoxDef(&AudioSampleEntry{}, BoxTypeEnca())
AddAnyTypeBoxDef(&AVCDecoderConfiguration{}, BoxTypeAvcC())