From 244a2979fa8cd4b64e71e537aa6ca1452c9503f5 Mon Sep 17 00:00:00 2001 From: Tomohiro Matsuzawa Date: Tue, 15 Dec 2020 17:28:49 +0900 Subject: [PATCH 1/2] Fixed InbandEventStream --- mpd/mpd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpd/mpd.go b/mpd/mpd.go index 57ac6ee..6523c8e 100644 --- a/mpd/mpd.go +++ b/mpd/mpd.go @@ -124,7 +124,7 @@ type CommonAttributesAndElements struct { ContentProtection []ContentProtectioner `xml:"ContentProtection,omitempty"` EssentialProperty []DescriptorType `xml:"EssentialProperty,omitempty"` SupplementalProperty []DescriptorType `xml:"SupplementalProperty,omitempty"` - InbandEventStream *DescriptorType `xml:"inbandEventStream,attr"` + InbandEventStream []DescriptorType `xml:"inbandEventStream,omitempty"` } type contentProtections []ContentProtectioner From 6c809f7f6d82639fdb595c671b89845ed3246f94 Mon Sep 17 00:00:00 2001 From: Tomohiro Matsuzawa Date: Tue, 15 Dec 2020 19:50:58 +0900 Subject: [PATCH 2/2] Fixed InbandEventStream --- mpd/mpd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpd/mpd.go b/mpd/mpd.go index 6523c8e..c3a87b8 100644 --- a/mpd/mpd.go +++ b/mpd/mpd.go @@ -124,7 +124,7 @@ type CommonAttributesAndElements struct { ContentProtection []ContentProtectioner `xml:"ContentProtection,omitempty"` EssentialProperty []DescriptorType `xml:"EssentialProperty,omitempty"` SupplementalProperty []DescriptorType `xml:"SupplementalProperty,omitempty"` - InbandEventStream []DescriptorType `xml:"inbandEventStream,omitempty"` + InbandEventStream []DescriptorType `xml:"InbandEventStream,omitempty"` } type contentProtections []ContentProtectioner