examples: webrtc: fix plugins check

`videoconvert` and `videoscale` are now part of the `videoconvertscale`
plugin, see d11f13f476

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3529>
This commit is contained in:
Guillaume Desmottes 2022-12-05 15:58:46 +01:00 committed by GStreamer Marge Bot
parent d4f8067064
commit ebfbdf9076
3 changed files with 3 additions and 5 deletions

View file

@ -139,7 +139,7 @@ impl Drop for AppInner {
fn check_plugins() -> Result<(), anyhow::Error> {
let needed = [
"videotestsrc",
"videoconvert",
"videoconvertscale",
"autodetect",
"vpx",
"webrtc",

View file

@ -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",

View file

@ -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",
];