mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
mp-webrtc-sendrecv.c: add missing comma in the list of package required
A comma is missing in the list of package required. Thus the package 'srtprtpmanager' is checked instead of packages srtp and rtpmanager.
This commit is contained in:
parent
ea8e960e29
commit
d6741c1f80
1 changed files with 1 additions and 1 deletions
|
@ -898,7 +898,7 @@ check_plugins (void)
|
|||
gboolean ret;
|
||||
GstPlugin *plugin;
|
||||
GstRegistry *registry;
|
||||
const gchar *needed[] = { "opus", "nice", "webrtc", "dtls", "srtp"
|
||||
const gchar *needed[] = { "opus", "nice", "webrtc", "dtls", "srtp",
|
||||
"rtpmanager", "audiotestsrc", NULL};
|
||||
|
||||
registry = gst_registry_get ();
|
||||
|
|
Loading…
Reference in a new issue