uriplaylistbin: example display when leaving because of eos

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1233>
This commit is contained in:
Guillaume Desmottes 2022-12-19 14:19:08 +01:00 committed by Sebastian Dröge
parent febc28863e
commit 7e9cb37892

View file

@ -122,7 +122,10 @@ fn main() -> anyhow::Result<()> {
eprintln!("Debugging information: {:?}", err.debug());
break;
}
MessageView::Eos(..) => break,
MessageView::Eos(..) => {
println!("eos");
break;
}
_ => (),
}
}