mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 13:08:49 +00:00
Fix bug in Rust sendrecv demo
This commit is contained in:
parent
37e8853041
commit
b6300d3b92
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ fn check_plugins() -> Result<(), Error> {
|
|||
let registry = gst::Registry::get();
|
||||
let missing = needed
|
||||
.iter()
|
||||
.filter(|n| registry.find_plugin(n).is_some())
|
||||
.filter(|n| registry.find_plugin(n).is_none())
|
||||
.map(|n| *n)
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
|
|
Loading…
Reference in a new issue