uriplaylistbin: example display when leaving because of eos

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

View file

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