Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mux
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@onestream.live>2023-04-27 15:16:40 +0300
committerGuillaume Desmottes <guillaume.desmottes@onestream.live>2023-04-27 15:16:40 +0300
commit76c82791010ca19116861f2597333d03c62b3bf9 (patch)
tree5009b5b7c3ae933ddfa75322f4cf292325051f36 /mux
parent05ee55d6179d9fb05574d281dc64963c706df5d9 (diff)
fmp4: define minBufferTime in example mpd
Required to validate the manifest with https://beta.conformance.dashif.org/ Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1196>
Diffstat (limited to 'mux')
-rw-r--r--mux/fmp4/examples/dash_vod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mux/fmp4/examples/dash_vod.rs b/mux/fmp4/examples/dash_vod.rs
index 2198a7c14..71938f4d3 100644
--- a/mux/fmp4/examples/dash_vod.rs
+++ b/mux/fmp4/examples/dash_vod.rs
@@ -261,6 +261,7 @@ fn main() -> Result<(), Error> {
profiles: Some("urn:mpeg:dash:profile:isoff-on-demand:2011".to_string()),
periods: vec![period],
mediaPresentationDuration: Some(std::time::Duration::from_millis(duration)),
+ minBufferTime: Some(std::time::Duration::from_secs(1)),
..Default::default()
};