mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
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:
parent
d4f8067064
commit
ebfbdf9076
3 changed files with 3 additions and 5 deletions
|
@ -139,7 +139,7 @@ impl Drop for AppInner {
|
|||
fn check_plugins() -> Result<(), anyhow::Error> {
|
||||
let needed = [
|
||||
"videotestsrc",
|
||||
"videoconvert",
|
||||
"videoconvertscale",
|
||||
"autodetect",
|
||||
"vpx",
|
||||
"webrtc",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue