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:
Eloi Bail 2018-04-03 16:53:24 +02:00 committed by Nirbheek Chauhan
parent ea8e960e29
commit d6741c1f80

View file

@ -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 ();