diff options
author | Zeeshan Ali <zeenix@gmail.com> | 2003-07-13 00:20:44 +0000 |
---|---|---|
committer | Zeeshan Ali <zeenix@gmail.com> | 2003-07-13 00:20:44 +0000 |
commit | 333468b5d448062b40c428e5c3b95dcb8159807c (patch) | |
tree | ddaa5d09eae9309ef88260439ef4379d26ed9af8 /gst/rtp/gstrtp.c | |
parent | 8c4aec99981a02e6fe6fdf61d4156746131a442d (diff) |
GSM -> RTP and viceversa
Original commit message from CVS:
GSM -> RTP and viceversa
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 063dcc77..2cf33157 100644 --- a/gst/rtp/gstrtp.c +++ b/gst/rtp/gstrtp.c @@ -19,12 +19,16 @@ #include "gstrtpL16enc.h" #include "gstrtpL16parse.h" +#include "gstrtpgsmenc.h" +#include "gstrtpgsmparse.h" static gboolean plugin_init (GModule *module, GstPlugin *plugin) { gst_rtpL16enc_plugin_init (module, plugin); gst_rtpL16parse_plugin_init (module, plugin); + gst_rtpgsmenc_plugin_init (module, plugin); + gst_rtpgsmparse_plugin_init (module, plugin); return TRUE; } |