From ebfbdf9076f34c96d2890af0122392462c404e2d Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 5 Dec 2022 15:58:46 +0100 Subject: [PATCH] examples: webrtc: fix plugins check `videoconvert` and `videoscale` are now part of the `videoconvertscale` plugin, see d11f13f476411b828387c3c26619bc77c255affb Part-of: --- subprojects/gst-examples/webrtc/janus/rust/src/main.rs | 2 +- .../webrtc/multiparty-sendrecv/gst-rust/src/main.rs | 3 +-- subprojects/gst-examples/webrtc/sendrecv/gst-rust/src/main.rs | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/subprojects/gst-examples/webrtc/janus/rust/src/main.rs b/subprojects/gst-examples/webrtc/janus/rust/src/main.rs index 3fd989f7bf..62713cb292 100644 --- a/subprojects/gst-examples/webrtc/janus/rust/src/main.rs +++ b/subprojects/gst-examples/webrtc/janus/rust/src/main.rs @@ -139,7 +139,7 @@ impl Drop for AppInner { fn check_plugins() -> Result<(), anyhow::Error> { let needed = [ "videotestsrc", - "videoconvert", + "videoconvertscale", "autodetect", "vpx", "webrtc", diff --git a/subprojects/gst-examples/webrtc/multiparty-sendrecv/gst-rust/src/main.rs b/subprojects/gst-examples/webrtc/multiparty-sendrecv/gst-rust/src/main.rs index c0ee8351c5..da9fab533a 100644 --- a/subprojects/gst-examples/webrtc/multiparty-sendrecv/gst-rust/src/main.rs +++ b/subprojects/gst-examples/webrtc/multiparty-sendrecv/gst-rust/src/main.rs @@ -951,7 +951,7 @@ fn check_plugins() -> Result<(), anyhow::Error> { let needed = [ "videotestsrc", "audiotestsrc", - "videoconvert", + "videoconvertscale", "audioconvert", "autodetect", "opus", @@ -963,7 +963,6 @@ fn check_plugins() -> Result<(), anyhow::Error> { "rtpmanager", "rtp", "playback", - "videoscale", "audioresample", "compositor", "audiomixer", diff --git a/subprojects/gst-examples/webrtc/sendrecv/gst-rust/src/main.rs b/subprojects/gst-examples/webrtc/sendrecv/gst-rust/src/main.rs index d935127392..27c519ed40 100644 --- a/subprojects/gst-examples/webrtc/sendrecv/gst-rust/src/main.rs +++ b/subprojects/gst-examples/webrtc/sendrecv/gst-rust/src/main.rs @@ -591,7 +591,7 @@ fn check_plugins() -> Result<(), anyhow::Error> { let needed = [ "videotestsrc", "audiotestsrc", - "videoconvert", + "videoconvertscale", "audioconvert", "autodetect", "opus", @@ -603,7 +603,6 @@ fn check_plugins() -> Result<(), anyhow::Error> { "rtpmanager", "rtp", "playback", - "videoscale", "audioresample", ];