summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-09-23 15:30:40 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-09-23 15:30:40 +0000
commitaf6e4da92e73694d4a8bffcd3582390a56184da2 (patch)
tree7cb4689ea328b8779fa8de47efe0b1ddd19085b6 /gst
parent3da33640bb1995294280ebc83bb319e10cc291e0 (diff)
gst/rtp/: Fix klass typos.
Original commit message from CVS: * gst/rtp/gstasteriskh263.c: (gst_asteriskh263_plugin_init): * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_plugin_init): * gst/rtp/gstrtpamrdepay.c: (gst_rtp_amr_depay_plugin_init): * gst/rtp/gstrtpdepay.c: * gst/rtp/gstrtpgsmdepay.c: (gst_rtp_gsm_depay_plugin_init): * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_plugin_init): * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_plugin_init): * gst/rtp/gstrtpilbcdepay.c: (gst_rtp_ilbc_depay_plugin_init): * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_plugin_init): * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_plugin_init): * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_plugin_init): * gst/rtp/gstrtpmpadepay.c: (gst_rtp_mpa_depay_plugin_init): * gst/rtp/gstrtppcmadepay.c: (gst_rtp_pcma_depay_plugin_init): * gst/rtp/gstrtppcmudepay.c: (gst_rtp_pcmu_depay_plugin_init): * gst/rtp/gstrtpspeexdepay.c: (gst_rtp_speex_depay_plugin_init): * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_plugin_init): * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_plugin_init): Fix klass typos. Mark RANK_MARGINAL, decodebin can handle the depayloaders fine.
Diffstat (limited to 'gst')
-rw-r--r--gst/rtp/gstasteriskh263.c4
-rw-r--r--gst/rtp/gstrtpL16depay.c4
-rw-r--r--gst/rtp/gstrtpamrdepay.c4
-rw-r--r--gst/rtp/gstrtpdepay.c2
-rw-r--r--gst/rtp/gstrtpgsmdepay.c4
-rw-r--r--gst/rtp/gstrtph263pdepay.c4
-rw-r--r--gst/rtp/gstrtph264depay.c4
-rw-r--r--gst/rtp/gstrtpilbcdepay.c4
-rw-r--r--gst/rtp/gstrtpmp2tdepay.c4
-rw-r--r--gst/rtp/gstrtpmp4gdepay.c4
-rw-r--r--gst/rtp/gstrtpmp4vdepay.c4
-rw-r--r--gst/rtp/gstrtpmpadepay.c4
-rw-r--r--gst/rtp/gstrtppcmadepay.c4
-rw-r--r--gst/rtp/gstrtppcmudepay.c4
-rw-r--r--gst/rtp/gstrtpspeexdepay.c4
-rw-r--r--gst/rtp/gstrtpsv3vdepay.c4
-rw-r--r--gst/rtp/gstrtpvorbisdepay.c4
17 files changed, 33 insertions, 33 deletions
diff --git a/gst/rtp/gstasteriskh263.c b/gst/rtp/gstasteriskh263.c
index ea6fc3fc..09096f0f 100644
--- a/gst/rtp/gstasteriskh263.c
+++ b/gst/rtp/gstasteriskh263.c
@@ -50,7 +50,7 @@ typedef struct _GstAsteriskH263Header
/* elementfactory information */
static const GstElementDetails gst_rtp_h263p_depaydetails =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts H263 video from RTP and encodes in Asterisk H263 format",
"Neil Stratford <neils@vipadia.com>");
@@ -314,5 +314,5 @@ gboolean
gst_asteriskh263_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "asteriskh263",
- GST_RANK_NONE, GST_TYPE_ASTERISK_H263);
+ GST_RANK_MARGINAL, GST_TYPE_ASTERISK_H263);
}
diff --git a/gst/rtp/gstrtpL16depay.c b/gst/rtp/gstrtpL16depay.c
index 2d052db3..3d8b2e36 100644
--- a/gst/rtp/gstrtpL16depay.c
+++ b/gst/rtp/gstrtpL16depay.c
@@ -27,7 +27,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_L16depay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts raw audio from RTP packets",
"Zeeshan Ali <zak147@yahoo.com>");
@@ -348,5 +348,5 @@ gboolean
gst_rtp_L16depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpL16depay",
- GST_RANK_NONE, GST_TYPE_RTP_L16_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_L16_DEPAY);
}
diff --git a/gst/rtp/gstrtpamrdepay.c b/gst/rtp/gstrtpamrdepay.c
index a07aa8ae..5e7f1569 100644
--- a/gst/rtp/gstrtpamrdepay.c
+++ b/gst/rtp/gstrtpamrdepay.c
@@ -36,7 +36,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_amrdepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts AMR audio from RTP packets (RFC 3267)",
"Wim Taymans <wim@fluendo.com>");
@@ -405,5 +405,5 @@ gboolean
gst_rtp_amr_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpamrdepay",
- GST_RANK_NONE, GST_TYPE_RTP_AMR_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_AMR_DEPAY);
}
diff --git a/gst/rtp/gstrtpdepay.c b/gst/rtp/gstrtpdepay.c
index c309ae31..580ad49e 100644
--- a/gst/rtp/gstrtpdepay.c
+++ b/gst/rtp/gstrtpdepay.c
@@ -26,7 +26,7 @@ GST_DEBUG_CATEGORY_STATIC (rtpdepay_debug);
/* elementfactory information */
static const GstElementDetails rtpdepay_details =
GST_ELEMENT_DETAILS ("RTP payloader",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Accepts raw RTP and RTCP packets and sends them forward",
"Wim Taymans <wim@fluendo.com>");
diff --git a/gst/rtp/gstrtpgsmdepay.c b/gst/rtp/gstrtpgsmdepay.c
index 102b8df6..288d4e87 100644
--- a/gst/rtp/gstrtpgsmdepay.c
+++ b/gst/rtp/gstrtpgsmdepay.c
@@ -29,7 +29,7 @@
/* elementfactory information */
static GstElementDetails gst_rtp_gsmdepay_details = {
"RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts GSM audio from RTP packets",
"Zeeshan Ali <zeenix@gmail.com>"
};
@@ -138,5 +138,5 @@ gboolean
gst_rtp_gsm_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpgsmdepay",
- GST_RANK_NONE, GST_TYPE_RTP_GSM_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_GSM_DEPAY);
}
diff --git a/gst/rtp/gstrtph263pdepay.c b/gst/rtp/gstrtph263pdepay.c
index fcca8416..5fb595b7 100644
--- a/gst/rtp/gstrtph263pdepay.c
+++ b/gst/rtp/gstrtph263pdepay.c
@@ -29,7 +29,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_h263pdepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts H263+ video from RTP packets (RFC 2429)",
"Wim Taymans <wim@fluendo.com>");
@@ -337,5 +337,5 @@ gboolean
gst_rtp_h263p_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtph263pdepay",
- GST_RANK_NONE, GST_TYPE_RTP_H263P_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_H263P_DEPAY);
}
diff --git a/gst/rtp/gstrtph264depay.c b/gst/rtp/gstrtph264depay.c
index 8028a014..917eebcf 100644
--- a/gst/rtp/gstrtph264depay.c
+++ b/gst/rtp/gstrtph264depay.c
@@ -29,7 +29,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_h264depay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts H264 video from RTP packets (RFC 3984)",
"Wim Taymans <wim@fluendo.com>");
@@ -499,5 +499,5 @@ gboolean
gst_rtp_h264_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtph264depay",
- GST_RANK_NONE, GST_TYPE_RTP_H264_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_H264_DEPAY);
}
diff --git a/gst/rtp/gstrtpilbcdepay.c b/gst/rtp/gstrtpilbcdepay.c
index f2ff6003..0822e019 100644
--- a/gst/rtp/gstrtpilbcdepay.c
+++ b/gst/rtp/gstrtpilbcdepay.c
@@ -28,7 +28,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_ilbc_depay_details =
GST_ELEMENT_DETAILS ("RTP iLBC packet depayloader",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts iLBC audio from RTP packets",
"Philippe Kalaf <philippe.kalaf@collabora.co.uk>");
@@ -220,5 +220,5 @@ gboolean
gst_rtp_ilbc_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpilbcdepay",
- GST_RANK_NONE, GST_TYPE_RTP_ILBC_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_ILBC_DEPAY);
}
diff --git a/gst/rtp/gstrtpmp2tdepay.c b/gst/rtp/gstrtpmp2tdepay.c
index a43bb154..38a6d964 100644
--- a/gst/rtp/gstrtpmp2tdepay.c
+++ b/gst/rtp/gstrtpmp2tdepay.c
@@ -29,7 +29,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_mp2tdepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depay/Network",
+ "Codec/Depayloader/Network",
"Extracts MPEG2 TS from RTP packets (RFC 2250)",
"Wim Taymans <wim@fluendo.com>");
@@ -256,5 +256,5 @@ gboolean
gst_rtp_mp2t_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpmp2tdepay",
- GST_RANK_NONE, GST_TYPE_RTP_MP2T_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_MP2T_DEPAY);
}
diff --git a/gst/rtp/gstrtpmp4gdepay.c b/gst/rtp/gstrtpmp4gdepay.c
index 5e499c03..e715a43b 100644
--- a/gst/rtp/gstrtpmp4gdepay.c
+++ b/gst/rtp/gstrtpmp4gdepay.c
@@ -32,7 +32,7 @@ GST_DEBUG_CATEGORY_STATIC (rtpmp4gdepay_debug);
/* elementfactory information */
static const GstElementDetails gst_rtp_mp4gdepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depay/Network",
+ "Codec/Depayloader/Network",
"Extracts MPEG4 elementary streams from RTP packets (RFC 3640)",
"Wim Taymans <wim@fluendo.com>");
@@ -378,5 +378,5 @@ gboolean
gst_rtp_mp4g_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpmp4gdepay",
- GST_RANK_NONE, GST_TYPE_RTP_MP4G_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_MP4G_DEPAY);
}
diff --git a/gst/rtp/gstrtpmp4vdepay.c b/gst/rtp/gstrtpmp4vdepay.c
index b3a2f8bb..aeeeaec4 100644
--- a/gst/rtp/gstrtpmp4vdepay.c
+++ b/gst/rtp/gstrtpmp4vdepay.c
@@ -29,7 +29,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_mp4vdepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts MPEG4 video from RTP packets (RFC 3016)",
"Wim Taymans <wim@fluendo.com>");
@@ -304,5 +304,5 @@ gboolean
gst_rtp_mp4v_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpmp4vdepay",
- GST_RANK_NONE, GST_TYPE_RTP_MP4V_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_MP4V_DEPAY);
}
diff --git a/gst/rtp/gstrtpmpadepay.c b/gst/rtp/gstrtpmpadepay.c
index 70000748..3dd87a4e 100644
--- a/gst/rtp/gstrtpmpadepay.c
+++ b/gst/rtp/gstrtpmpadepay.c
@@ -29,7 +29,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_mpadepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts MPEG audio from RTP packets (RFC 2038)",
"Wim Taymans <wim@fluendo.com>");
@@ -281,5 +281,5 @@ gboolean
gst_rtp_mpa_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpmpadepay",
- GST_RANK_NONE, GST_TYPE_RTP_MPA_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_MPA_DEPAY);
}
diff --git a/gst/rtp/gstrtppcmadepay.c b/gst/rtp/gstrtppcmadepay.c
index 00e17224..14ce80ac 100644
--- a/gst/rtp/gstrtppcmadepay.c
+++ b/gst/rtp/gstrtppcmadepay.c
@@ -30,7 +30,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_pcmadepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts PCMA audio from RTP packets",
"Edgard Lima <edgard.lima@indt.org.br>, Zeeshan Ali <zeenix@gmail.com>");
@@ -160,5 +160,5 @@ gboolean
gst_rtp_pcma_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtppcmadepay",
- GST_RANK_NONE, GST_TYPE_RTP_PCMA_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_PCMA_DEPAY);
}
diff --git a/gst/rtp/gstrtppcmudepay.c b/gst/rtp/gstrtppcmudepay.c
index e701ada9..6e5c8b47 100644
--- a/gst/rtp/gstrtppcmudepay.c
+++ b/gst/rtp/gstrtppcmudepay.c
@@ -30,7 +30,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_pcmudepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts PCMU audio from RTP packets",
"Edgard Lima <edgard.lima@indt.org.br>, Zeeshan Ali <zeenix@gmail.com>");
@@ -161,5 +161,5 @@ gboolean
gst_rtp_pcmu_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtppcmudepay",
- GST_RANK_NONE, GST_TYPE_RTP_PCMU_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_PCMU_DEPAY);
}
diff --git a/gst/rtp/gstrtpspeexdepay.c b/gst/rtp/gstrtpspeexdepay.c
index b167755f..98ff5baf 100644
--- a/gst/rtp/gstrtpspeexdepay.c
+++ b/gst/rtp/gstrtpspeexdepay.c
@@ -28,7 +28,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_speexdepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts Speex audio from RTP packets",
"Edgard Lima <edgard.lima@indt.org.br>");
@@ -144,5 +144,5 @@ gboolean
gst_rtp_speex_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpspeexdepay",
- GST_RANK_NONE, GST_TYPE_RTP_SPEEX_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_SPEEX_DEPAY);
}
diff --git a/gst/rtp/gstrtpsv3vdepay.c b/gst/rtp/gstrtpsv3vdepay.c
index 162a7edd..e9021244 100644
--- a/gst/rtp/gstrtpsv3vdepay.c
+++ b/gst/rtp/gstrtpsv3vdepay.c
@@ -29,7 +29,7 @@
/* elementfactory information */
static const GstElementDetails gst_rtp_sv3vdepay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depayr/Network",
+ "Codec/Depayloader/Network",
"Extracts SVQ3 video from RTP packets (no RFC)",
"Wim Taymans <wim@fluendo.com>");
@@ -344,5 +344,5 @@ gboolean
gst_rtp_sv3v_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpsv3vdepay",
- GST_RANK_NONE, GST_TYPE_RTP_SV3V_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_SV3V_DEPAY);
}
diff --git a/gst/rtp/gstrtpvorbisdepay.c b/gst/rtp/gstrtpvorbisdepay.c
index 551db598..ba294130 100644
--- a/gst/rtp/gstrtpvorbisdepay.c
+++ b/gst/rtp/gstrtpvorbisdepay.c
@@ -32,7 +32,7 @@ GST_DEBUG_CATEGORY_STATIC (rtpvorbisdepay_debug);
/* elementfactory information */
static const GstElementDetails gst_rtp_vorbis_depay_details =
GST_ELEMENT_DETAILS ("RTP packet parser",
- "Codec/Depay/Network",
+ "Codec/Depayloader/Network",
"Extracts Vorbis Audio from RTP packets (draft-01 of RFC XXXX)",
"Wim Taymans <wim@fluendo.com>");
@@ -437,5 +437,5 @@ gboolean
gst_rtp_vorbis_depay_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "rtpvorbisdepay",
- GST_RANK_NONE, GST_TYPE_RTP_VORBIS_DEPAY);
+ GST_RANK_MARGINAL, GST_TYPE_RTP_VORBIS_DEPAY);
}