We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6153c9f commit 912863fCopy full SHA for 912863f
mpd/mpd.go
@@ -71,6 +71,7 @@ var (
71
72
type MPD struct {
73
XMLNs *string `xml:"xmlns,attr"`
74
+ XMLNsDolby *string `xml:"xmlns:dolby,attr"`
75
Profiles *string `xml:"profiles,attr"`
76
Type *string `xml:"type,attr"`
77
MediaPresentationDuration *string `xml:"mediaPresentationDuration,attr"`
@@ -391,6 +392,10 @@ type AudioChannelConfiguration struct {
391
392
Value *string `xml:"value,attr"`
393
}
394
395
+func (m *MPD) SetDolbyXMLNs() {
396
+ m.XMLNsDolby = Strptr("http://www.dolby.com/ns/online/DASH")
397
+}
398
+
399
// Creates a new static MPD object.
400
// profile - DASH Profile (Live or OnDemand).
401
// mediaPresentationDuration - Media Presentation Duration (i.e. PT6M16S).
0 commit comments