mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-23 02:26:35 +00:00
uriplaylistbin: example display when leaving because of eos
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1232>
This commit is contained in:
parent
6346d5608e
commit
780d9d5b78
1 changed files with 4 additions and 1 deletions
|
@ -122,7 +122,10 @@ fn main() -> anyhow::Result<()> {
|
|||
eprintln!("Debugging information: {:?}", err.debug());
|
||||
break;
|
||||
}
|
||||
MessageView::Eos(..) => break,
|
||||
MessageView::Eos(..) => {
|
||||
println!("eos");
|
||||
break;
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue