Skip to content

Commit dc9131d

Browse files
committed
fix schemeIdUri attribute for descriptor type
1 parent f5cce45 commit dc9131d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mpd/fixtures/truncate.mpd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@
7676
</Representation>
7777
</AdaptationSet>
7878
</Period>
79-
<UTCTiming value="https://time.akamai.com/?iso"></UTCTiming>
79+
<UTCTiming schemeIdUri="urn:mpeg:dash:utc:http-iso:2014" value="https://time.akamai.com/?iso"></UTCTiming>
8080
</MPD>

mpd/fixtures/truncate_short.mpd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636
</Representation>
3737
</AdaptationSet>
3838
</Period>
39-
<UTCTiming value="https://time.akamai.com/?iso"></UTCTiming>
39+
<UTCTiming schemeIdUri="urn:mpeg:dash:utc:http-iso:2014" value="https://time.akamai.com/?iso"></UTCTiming>
4040
</MPD>

mpd/mpd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ type Period struct {
8787
}
8888

8989
type DescriptorType struct {
90-
SchemeIDURI *string `xml:"schemeIDURI,attr"`
90+
SchemeIDURI *string `xml:"schemeIdUri,attr"`
9191
Value *string `xml:"value,attr"`
9292
ID *string `xml:"id,attr"`
9393
}

0 commit comments

Comments
 (0)