mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +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> {
|
fn check_plugins() -> Result<(), anyhow::Error> {
|
||||||
let needed = [
|
let needed = [
|
||||||
"videotestsrc",
|
"videotestsrc",
|
||||||
"videoconvert",
|
"videoconvertscale",
|
||||||
"autodetect",
|
"autodetect",
|
||||||
"vpx",
|
"vpx",
|
||||||
"webrtc",
|
"webrtc",
|
||||||
|
|
|
@ -951,7 +951,7 @@ fn check_plugins() -> Result<(), anyhow::Error> {
|
||||||
let needed = [
|
let needed = [
|
||||||
"videotestsrc",
|
"videotestsrc",
|
||||||
"audiotestsrc",
|
"audiotestsrc",
|
||||||
"videoconvert",
|
"videoconvertscale",
|
||||||
"audioconvert",
|
"audioconvert",
|
||||||
"autodetect",
|
"autodetect",
|
||||||
"opus",
|
"opus",
|
||||||
|
@ -963,7 +963,6 @@ fn check_plugins() -> Result<(), anyhow::Error> {
|
||||||
"rtpmanager",
|
"rtpmanager",
|
||||||
"rtp",
|
"rtp",
|
||||||
"playback",
|
"playback",
|
||||||
"videoscale",
|
|
||||||
"audioresample",
|
"audioresample",
|
||||||
"compositor",
|
"compositor",
|
||||||
"audiomixer",
|
"audiomixer",
|
||||||
|
|
|
@ -591,7 +591,7 @@ fn check_plugins() -> Result<(), anyhow::Error> {
|
||||||
let needed = [
|
let needed = [
|
||||||
"videotestsrc",
|
"videotestsrc",
|
||||||
"audiotestsrc",
|
"audiotestsrc",
|
||||||
"videoconvert",
|
"videoconvertscale",
|
||||||
"audioconvert",
|
"audioconvert",
|
||||||
"autodetect",
|
"autodetect",
|
||||||
"opus",
|
"opus",
|
||||||
|
@ -603,7 +603,6 @@ fn check_plugins() -> Result<(), anyhow::Error> {
|
||||||
"rtpmanager",
|
"rtpmanager",
|
||||||
"rtp",
|
"rtp",
|
||||||
"playback",
|
"playback",
|
||||||
"videoscale",
|
|
||||||
"audioresample",
|
"audioresample",
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue