mp-webrtc-sendrecv.c: add missing comma in the list of package required
authorEloi Bail <eloi.bail@savoirfairelinux.com>
Tue, 3 Apr 2018 14:53:24 +0000 (16:53 +0200)
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>
Tue, 3 Apr 2018 15:04:57 +0000 (15:04 +0000)
A comma is missing in the list of package required. Thus the package
'srtprtpmanager' is checked instead of packages srtp and rtpmanager.

webrtc/multiparty-sendrecv/gst/mp-webrtc-sendrecv.c

index 413c832..25749ab 100644 (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 ();