├── .github └── workflows │ ├── go.yml │ └── golangci-lint.yml ├── .gitignore ├── .golangci.yml ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── LICENSE_included_sw ├── Makefile ├── README.md ├── examples └── newmpd_test.go ├── go.mod ├── go.sum ├── mpd ├── doc.go ├── duration.go ├── duration_test.go ├── errors.go ├── io.go ├── io_test.go ├── mpd.go ├── mpd_test.go ├── parents.go ├── period.go ├── period_test.go ├── ptrs.go ├── ptrs_test.go ├── testdata │ ├── go-dash-fixtures │ │ ├── README.md │ │ ├── adaptationset_switching.mpd │ │ ├── audio_channel_configuration.mpd │ │ ├── events.mpd │ │ ├── hbbtv_profile.mpd │ │ ├── inband_event_stream.mpd │ │ ├── invalid.mpd │ │ ├── live_profile.mpd │ │ ├── live_profile_dynamic.mpd │ │ ├── live_profile_multi_base_url.mpd │ │ ├── location.mpd │ │ ├── multiple_supplementals.mpd │ │ ├── newperiod.mpd │ │ ├── ondemand_profile.mpd │ │ ├── segment_list.mpd │ │ ├── segment_timeline.mpd │ │ ├── segment_timeline_multi_period.mpd │ │ ├── truncate.mpd │ │ └── truncate_short.mpd │ ├── hbbtv │ │ └── manifest_wvcenc_1080p.mpd │ ├── livesim │ │ ├── Manifest_thumbs.mpd │ │ ├── README.md │ │ ├── ato-inf.mpd │ │ ├── multi-drm.mpd │ │ └── urlparams.mpd │ ├── other │ │ ├── dolby_ec3.mpd │ │ └── fraunhofer_iis_mpegh.mpd │ └── schema-mpds │ │ ├── README.md │ │ ├── example_G1.mpd │ │ ├── example_G10.mpd │ │ ├── example_G11.mpd │ │ ├── example_G11_remote.period.xml │ │ ├── example_G12.mpd │ │ ├── example_G13-1.mpd │ │ ├── example_G13-2.mpd │ │ ├── example_G14.mpd │ │ ├── example_G15.mpd │ │ ├── example_G16.mpd │ │ ├── example_G17.mpd │ │ ├── example_G18.mpd │ │ ├── example_G19.mpd │ │ ├── example_G2.mpd │ │ ├── example_G20.mpd │ │ ├── example_G21_patch_base.mpd │ │ ├── example_G22.mpd │ │ ├── example_G23.mpd │ │ ├── example_G24.mpd │ │ ├── example_G25.mpd │ │ ├── example_G26.1.mpd │ │ ├── example_G26.2.mpd │ │ ├── example_G26.mpd │ │ ├── example_G27.mpd │ │ ├── example_G28.1.mpd │ │ ├── example_G28.2.mpd │ │ ├── example_G28.3.mpd │ │ ├── example_G28.4.mpd │ │ ├── example_G28.5.mpd │ │ ├── example_G29.1.mpd │ │ ├── example_G29.2.mpd │ │ ├── example_G29.mpd │ │ ├── example_G3.mpd │ │ ├── example_G30-1.mpd │ │ ├── example_G30-2.mpd │ │ ├── example_G30-3.mpd │ │ ├── example_G30-4.mpd │ │ ├── example_G30-5.mpd │ │ ├── example_G4.mpd │ │ ├── example_G5.mpd │ │ ├── example_G6.mpd │ │ ├── example_G7.mpd │ │ ├── example_G8.mpd │ │ ├── example_G9.mpd │ │ ├── example_H1.mpd │ │ ├── example_H2.mpd │ │ ├── example_H3.mpd │ │ └── example_K6.4.mpd └── up.go └── xml ├── LICENSE ├── README.md ├── atom_test.go ├── example_marshaling_test.go ├── example_test.go ├── example_text_marshaling_test.go ├── marshal.go ├── marshal_test.go ├── read.go ├── read_test.go ├── typeinfo.go ├── xml.go └── xml_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_included_sw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/LICENSE_included_sw -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/README.md -------------------------------------------------------------------------------- /examples/newmpd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/examples/newmpd_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/go.sum -------------------------------------------------------------------------------- /mpd/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/doc.go -------------------------------------------------------------------------------- /mpd/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/duration.go -------------------------------------------------------------------------------- /mpd/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/duration_test.go -------------------------------------------------------------------------------- /mpd/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/errors.go -------------------------------------------------------------------------------- /mpd/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/io.go -------------------------------------------------------------------------------- /mpd/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/io_test.go -------------------------------------------------------------------------------- /mpd/mpd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/mpd.go -------------------------------------------------------------------------------- /mpd/mpd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/mpd_test.go -------------------------------------------------------------------------------- /mpd/parents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/parents.go -------------------------------------------------------------------------------- /mpd/period.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/period.go -------------------------------------------------------------------------------- /mpd/period_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/period_test.go -------------------------------------------------------------------------------- /mpd/ptrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/ptrs.go -------------------------------------------------------------------------------- /mpd/ptrs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/ptrs_test.go -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/README.md -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/adaptationset_switching.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/adaptationset_switching.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/audio_channel_configuration.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/audio_channel_configuration.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/events.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/events.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/hbbtv_profile.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/hbbtv_profile.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/inband_event_stream.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/inband_event_stream.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/invalid.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/invalid.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/live_profile.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/live_profile.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/live_profile_dynamic.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/live_profile_dynamic.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/live_profile_multi_base_url.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/live_profile_multi_base_url.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/location.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/location.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/multiple_supplementals.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/multiple_supplementals.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/newperiod.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/newperiod.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/ondemand_profile.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/ondemand_profile.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/segment_list.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/segment_list.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/segment_timeline.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/segment_timeline.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/segment_timeline_multi_period.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/segment_timeline_multi_period.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/truncate.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/truncate.mpd -------------------------------------------------------------------------------- /mpd/testdata/go-dash-fixtures/truncate_short.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/go-dash-fixtures/truncate_short.mpd -------------------------------------------------------------------------------- /mpd/testdata/hbbtv/manifest_wvcenc_1080p.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/hbbtv/manifest_wvcenc_1080p.mpd -------------------------------------------------------------------------------- /mpd/testdata/livesim/Manifest_thumbs.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/livesim/Manifest_thumbs.mpd -------------------------------------------------------------------------------- /mpd/testdata/livesim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/livesim/README.md -------------------------------------------------------------------------------- /mpd/testdata/livesim/ato-inf.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/livesim/ato-inf.mpd -------------------------------------------------------------------------------- /mpd/testdata/livesim/multi-drm.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/livesim/multi-drm.mpd -------------------------------------------------------------------------------- /mpd/testdata/livesim/urlparams.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/livesim/urlparams.mpd -------------------------------------------------------------------------------- /mpd/testdata/other/dolby_ec3.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/other/dolby_ec3.mpd -------------------------------------------------------------------------------- /mpd/testdata/other/fraunhofer_iis_mpegh.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/other/fraunhofer_iis_mpegh.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/README.md -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G1.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G1.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G10.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G10.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G11.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G11.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G11_remote.period.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G11_remote.period.xml -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G12.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G12.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G13-1.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G13-1.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G13-2.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G13-2.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G14.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G14.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G15.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G15.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G16.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G16.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G17.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G17.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G18.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G18.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G19.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G19.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G2.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G2.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G20.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G20.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G21_patch_base.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G21_patch_base.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G22.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G22.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G23.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G23.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G24.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G24.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G25.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G25.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G26.1.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G26.1.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G26.2.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G26.2.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G26.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G26.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G27.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G27.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G28.1.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G28.1.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G28.2.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G28.2.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G28.3.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G28.3.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G28.4.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G28.4.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G28.5.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G28.5.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G29.1.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G29.1.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G29.2.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G29.2.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G29.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G29.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G3.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G3.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G30-1.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G30-1.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G30-2.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G30-2.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G30-3.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G30-3.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G30-4.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G30-4.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G30-5.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G30-5.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G4.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G4.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G5.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G5.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G6.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G6.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G7.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G7.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G8.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G8.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_G9.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_G9.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_H1.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_H1.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_H2.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_H2.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_H3.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_H3.mpd -------------------------------------------------------------------------------- /mpd/testdata/schema-mpds/example_K6.4.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/testdata/schema-mpds/example_K6.4.mpd -------------------------------------------------------------------------------- /mpd/up.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/mpd/up.go -------------------------------------------------------------------------------- /xml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/LICENSE -------------------------------------------------------------------------------- /xml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/README.md -------------------------------------------------------------------------------- /xml/atom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/atom_test.go -------------------------------------------------------------------------------- /xml/example_marshaling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/example_marshaling_test.go -------------------------------------------------------------------------------- /xml/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/example_test.go -------------------------------------------------------------------------------- /xml/example_text_marshaling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/example_text_marshaling_test.go -------------------------------------------------------------------------------- /xml/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/marshal.go -------------------------------------------------------------------------------- /xml/marshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/marshal_test.go -------------------------------------------------------------------------------- /xml/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/read.go -------------------------------------------------------------------------------- /xml/read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/read_test.go -------------------------------------------------------------------------------- /xml/typeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/typeinfo.go -------------------------------------------------------------------------------- /xml/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/xml.go -------------------------------------------------------------------------------- /xml/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eyevinn/dash-mpd/HEAD/xml/xml_test.go --------------------------------------------------------------------------------