diff options
Diffstat (limited to 'gst/rtp/gstrtp.c')
-rw-r--r-- | gst/rtp/gstrtp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c index e7949b8e..5830d266 100644 --- a/gst/rtp/gstrtp.c +++ b/gst/rtp/gstrtp.c @@ -21,6 +21,7 @@ #include "config.h" #endif +#include "gstrtpasfdepay.h" #include "gstrtpdepay.h" #include "gstrtppcmupay.h" #include "gstrtppcmapay.h" @@ -49,6 +50,9 @@ static gboolean plugin_init (GstPlugin * plugin) { + if (!gst_rtp_asf_depay_plugin_init (plugin)) + return FALSE; + if (!gst_rtp_depay_plugin_init (plugin)) return FALSE; |