mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-02-14 03:45:16 +00:00
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:
parent
9b97e68da3
commit
0285cb1339
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||||
|
}
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue