summaryrefslogtreecommitdiffstats
path: root/docs/plugins
diff options
context:
space:
mode:
authorLeandro Melo de Sales <leandroal@gmail.com>2008-08-21 13:22:38 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2008-08-21 13:22:38 +0000
commit605482a1a852a42aba6263811d7fa57b110728ba (patch)
tree14a29b92472bd9ebfc207581f54b307967842e29 /docs/plugins
parentfd66868120ad27860d140d1a54040dcbffc014a5 (diff)
downloadgst-plugins-bad-605482a1a852a42aba6263811d7fa57b110728ba.tar.gz
gst-plugins-bad-605482a1a852a42aba6263811d7fa57b110728ba.tar.bz2
gst-plugins-bad-605482a1a852a42aba6263811d7fa57b110728ba.zip
Add dccp plugin. Fixes #542390.
Original commit message from CVS: patch by: Leandro Melo de Sales <leandroal@gmail.com> * configure.ac: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-bad-plugins-docs.sgml: * docs/plugins/gst-plugins-bad-plugins-sections.txt: * docs/plugins/gst-plugins-bad-plugins.args: * docs/plugins/gst-plugins-bad-plugins.hierarchy: * docs/plugins/gst-plugins-bad-plugins.interfaces: * docs/plugins/gst-plugins-bad-plugins.prerequisites: * docs/plugins/gst-plugins-bad-plugins.signals: * docs/plugins/inspect/plugin-dccp.xml: * gst/dccp/Makefile.am: * gst/dccp/gstdccp.c: * gst/dccp/gstdccp.h: * gst/dccp/gstdccpclientsink.c: * gst/dccp/gstdccpclientsink.h: * gst/dccp/gstdccpclientsrc.c: * gst/dccp/gstdccpclientsrc.h: * gst/dccp/gstdccpplugin.c: * gst/dccp/gstdccpserversink.c: * gst/dccp/gstdccpserversink.h: * gst/dccp/gstdccpserversrc.c: * gst/dccp/gstdccpserversrc.h: * tests/icles/dccp/README: * tests/icles/dccp/call/README: * tests/icles/dccp/call/DCCPClient.c: * tests/icles/dccp/call/DCCPServer.c: * tests/icles/dccp/file/DCCPClientSaveFile.c: * tests/icles/dccp/file/DCCPServerSendFile.c: * tests/icles/dccp/mic/DCCPClientPlayMic.c: * tests/icles/dccp/mic/DCCPServerMic.c: * tests/icles/dccp/mp3/DCCPClientPlayMP3.c: * tests/icles/dccp/mp3/DCCPServerSendMP3.c: * tests/icles/dccp/mp3Speex/DCCPClientPlaySpeexMP3.c: * tests/icles/dccp/mp3Speex/DCCPServerSendSpeexMP3.c: * tests/icles/dccp/mp3Stream/DCCPClientPlayMP3Stream.c: * tests/icles/dccp/mp3Stream/DCCPServerSendMP3Stream.c: Add dccp plugin. Fixes #542390.
Diffstat (limited to 'docs/plugins')
-rw-r--r--docs/plugins/Makefile.am4
-rw-r--r--docs/plugins/gst-plugins-bad-plugins-docs.sgml5
-rw-r--r--docs/plugins/gst-plugins-bad-plugins-sections.txt56
-rw-r--r--docs/plugins/gst-plugins-bad-plugins.args236
-rw-r--r--docs/plugins/gst-plugins-bad-plugins.hierarchy210
-rw-r--r--docs/plugins/gst-plugins-bad-plugins.interfaces25
-rw-r--r--docs/plugins/gst-plugins-bad-plugins.prerequisites2
-rw-r--r--docs/plugins/gst-plugins-bad-plugins.signals32
-rw-r--r--docs/plugins/inspect/plugin-dccp.xml73
9 files changed, 519 insertions, 124 deletions
diff --git a/docs/plugins/Makefile.am b/docs/plugins/Makefile.am
index 826fa568..0d474c00 100644
--- a/docs/plugins/Makefile.am
+++ b/docs/plugins/Makefile.am
@@ -119,6 +119,10 @@ EXTRA_HFILES = \
$(top_srcdir)/ext/twolame/gsttwolame.h \
$(top_srcdir)/ext/x264/gstx264enc.h \
$(top_srcdir)/gst/deinterlace/gstdeinterlace.h \
+ $(top_srcdir)/gst/dccp/gstdccpclientsink.h \
+ $(top_srcdir)/gst/dccp/gstdccpclientsrc.h \
+ $(top_srcdir)/gst/dccp/gstdccpserversink.h \
+ $(top_srcdir)/gst/dccp/gstdccpserversrc.h \
$(top_srcdir)/gst/dvdspu/gstdvdspu.h \
$(top_srcdir)/gst/festival/gstfestival.h \
$(top_srcdir)/gst/modplug/gstmodplug.h \
diff --git a/docs/plugins/gst-plugins-bad-plugins-docs.sgml b/docs/plugins/gst-plugins-bad-plugins-docs.sgml
index ecf67a21..157c5775 100644
--- a/docs/plugins/gst-plugins-bad-plugins-docs.sgml
+++ b/docs/plugins/gst-plugins-bad-plugins-docs.sgml
@@ -18,6 +18,10 @@
<xi:include href="xml/element-audioparse.xml" />
<xi:include href="xml/element-celtdec.xml" />
<xi:include href="xml/element-celtenc.xml" />
+ <xi:include href="xml/element-dccpclientsink.xml" />
+ <xi:include href="xml/element-dccpclientsrc.xml" />
+ <xi:include href="xml/element-dccpserversink.xml" />
+ <xi:include href="xml/element-dccpserversrc.xml" />
<xi:include href="xml/element-deinterlace.xml" />
<xi:include href="xml/element-dfbvideosink.xml" />
<xi:include href="xml/element-dvbsrc.xml" />
@@ -70,6 +74,7 @@
<xi:include href="xml/plugin-cdaudio.xml" />
<xi:include href="xml/plugin-cdxaparse.xml" />
<xi:include href="xml/plugin-celt.xml" />
+ <xi:include href="xml/plugin-dccp.xml" />
<xi:include href="xml/plugin-dfbvideosink.xml" />
<xi:include href="xml/plugin-dtsdec.xml" />
<xi:include href="xml/plugin-dvbsrc.xml" />
diff --git a/docs/plugins/gst-plugins-bad-plugins-sections.txt b/docs/plugins/gst-plugins-bad-plugins-sections.txt
index b3f05be4..a6d9bedd 100644
--- a/docs/plugins/gst-plugins-bad-plugins-sections.txt
+++ b/docs/plugins/gst-plugins-bad-plugins-sections.txt
@@ -97,6 +97,62 @@ gst_dc1394_get_type
</SECTION>
<SECTION>
+<FILE>element-dccpclientsink</FILE>
+<TITLE>dccpclientsink</TITLE>
+GstDCCPClientSink
+<SUBSECTION Standard>
+GstDCCPClientSinkClass
+GST_DCCP_CLIENT_SINK
+GST_DCCP_CLIENT_SINK_CLASS
+GST_IS_DCCP_CLIENT_SINK
+GST_IS_DCCP_CLIENT_SINK_CLASS
+GST_TYPE_DCCP_CLIENT_SINK
+gst_dccp_client_sink_get_type
+</SECTION>
+
+<SECTION>
+<FILE>element-dccpclientsrc</FILE>
+<TITLE>dccpclientsrc</TITLE>
+GstDCCPClientSrc
+<SUBSECTION Standard>
+GstDCCPClientSrcClass
+GST_DCCP_CLIENT_SRC
+GST_DCCP_CLIENT_SRC_CLASS
+GST_IS_DCCP_CLIENT_SRC
+GST_IS_DCCP_CLIENT_SRC_CLASS
+GST_TYPE_DCCP_CLIENT_SRC
+gst_dccp_client_src_get_type
+</SECTION>
+
+<SECTION>
+<FILE>element-dccpserversink</FILE>
+<TITLE>dccpserversink</TITLE>
+GstDCCPServerSink
+<SUBSECTION Standard>
+GstDCCPServerSinkClass
+GST_DCCP_SERVER_SINK
+GST_DCCP_SERVER_SINK_CLASS
+GST_IS_DCCP_SERVER_SINK
+GST_IS_DCCP_SERVER_SINK_CLASS
+GST_TYPE_DCCP_SERVER_SINK
+gst_dccp_server_sink_get_type
+</SECTION>
+
+<SECTION>
+<FILE>element-dccpserversrc</FILE>
+<TITLE>dccpserversrc</TITLE>
+GstDCCPServerSrc
+<SUBSECTION Standard>
+GstDCCPServerSrcClass
+GST_DCCP_SERVER_SRC
+GST_DCCP_SERVER_SRC_CLASS
+GST_IS_DCCP_SERVER_SRC
+GST_IS_DCCP_SERVER_SRC_CLASS
+GST_TYPE_DCCP_SERVER_SRC
+gst_dccp_server_src_get_type
+</SECTION>
+
+<SECTION>
<FILE>element-deinterlace</FILE>
<TITLE>deinterlace</TITLE>
GstDeinterlace
diff --git a/docs/plugins/gst-plugins-bad-plugins.args b/docs/plugins/gst-plugins-bad-plugins.args
index 66d015c9..b03cb8eb 100644
--- a/docs/plugins/gst-plugins-bad-plugins.args
+++ b/docs/plugins/gst-plugins-bad-plugins.args
@@ -17000,12 +17000,12 @@
<ARG>
<NAME>GstX264Enc::pass</NAME>
-<TYPE>GstX264EncPass</TYPE>
-<RANGE></RANGE>
+<TYPE>guint</TYPE>
+<RANGE><= 3</RANGE>
<FLAGS>rw</FLAGS>
-<NICK>Encoding pass/type</NICK>
-<BLURB>Encoding pass/type.</BLURB>
-<DEFAULT>Constant Bitrate Encoding</DEFAULT>
+<NICK>Pass</NICK>
+<BLURB>Pass of multipass encoding (0=single pass; 1=first pass, 2=middle pass, 3=last pass).</BLURB>
+<DEFAULT>0</DEFAULT>
</ARG>
<ARG>
@@ -17051,10 +17051,10 @@
<ARG>
<NAME>GstX264Enc::threads</NAME>
<TYPE>guint</TYPE>
-<RANGE><= 4</RANGE>
+<RANGE>[1,4]</RANGE>
<FLAGS>rw</FLAGS>
<NICK>Threads</NICK>
-<BLURB>Number of threads used by the codec (0 for automatic).</BLURB>
+<BLURB>Number of threads used by the codec.</BLURB>
<DEFAULT>1</DEFAULT>
</ARG>
@@ -22020,7 +22020,7 @@
<FLAGS>rw</FLAGS>
<NICK>Method</NICK>
<BLURB>Deinterlace Method.</BLURB>
-<DEFAULT>Toms Motion Compensation</DEFAULT>
+<DEFAULT>Motion Adaptive: Motion Search</DEFAULT>
</ARG>
<ARG>
@@ -22233,3 +22233,223 @@
<DEFAULT>NULL</DEFAULT>
</ARG>
+<ARG>
+<NAME>GstDCCPClientSrc::caps</NAME>
+<TYPE>GstCaps*</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Caps</NICK>
+<BLURB>The caps of the source pad.</BLURB>
+<DEFAULT></DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSrc::ccid</NAME>
+<TYPE>gint</TYPE>
+<RANGE>>= 2</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>CCID</NICK>
+<BLURB>The Congestion Control IDentified to be used.</BLURB>
+<DEFAULT>2</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSrc::close-socket</NAME>
+<TYPE>gboolean</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Close socket</NICK>
+<BLURB>Close socket at the end of stream.</BLURB>
+<DEFAULT>TRUE</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSrc::host</NAME>
+<TYPE>gchar*</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Host</NICK>
+<BLURB>The host IP address to receive packets from.</BLURB>
+<DEFAULT>"127.0.0.1"</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSrc::port</NAME>
+<TYPE>gint</TYPE>
+<RANGE>[0,65535]</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Port</NICK>
+<BLURB>The port to receive the packets from, 0=allocate.</BLURB>
+<DEFAULT>5001</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSrc::sockfd</NAME>
+<TYPE>gint</TYPE>
+<RANGE>>= -1</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Socket fd</NICK>
+<BLURB>The socket file descriptor.</BLURB>
+<DEFAULT>-1</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSink::ccid</NAME>
+<TYPE>gint</TYPE>
+<RANGE>>= 2</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>CCID</NICK>
+<BLURB>The Congestion Control IDentified to be used.</BLURB>
+<DEFAULT>2</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSink::close-socket</NAME>
+<TYPE>gboolean</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Close</NICK>
+<BLURB>Close socket at end of stream.</BLURB>
+<DEFAULT>TRUE</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSink::port</NAME>
+<TYPE>gint</TYPE>
+<RANGE>[0,65535]</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Port</NICK>
+<BLURB>The port to receive the packets from, 0=allocate.</BLURB>
+<DEFAULT>5001</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSink::sockfd</NAME>
+<TYPE>gint</TYPE>
+<RANGE>>= -1</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Socket fd</NICK>
+<BLURB>The client socket file descriptor.</BLURB>
+<DEFAULT>-1</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSink::wait-connections</NAME>
+<TYPE>gboolean</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Wait connections</NICK>
+<BLURB>Wait for many client connections.</BLURB>
+<DEFAULT>FALSE</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSink::ccid</NAME>
+<TYPE>gint</TYPE>
+<RANGE>>= 2</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>CCID</NICK>
+<BLURB>The Congestion Control IDentified to be used.</BLURB>
+<DEFAULT>2</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSink::close-socket</NAME>
+<TYPE>gboolean</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Close</NICK>
+<BLURB>Close socket at end of stream.</BLURB>
+<DEFAULT>TRUE</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSink::host</NAME>
+<TYPE>gchar*</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Host</NICK>
+<BLURB>The host IP address to send packets to.</BLURB>
+<DEFAULT>"127.0.0.1"</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSink::port</NAME>
+<TYPE>gint</TYPE>
+<RANGE>[0,65535]</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Port</NICK>
+<BLURB>The port to receive the packets from, 0=allocate.</BLURB>
+<DEFAULT>5001</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPClientSink::sockfd</NAME>
+<TYPE>gint</TYPE>
+<RANGE>>= -1</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Socket fd</NICK>
+<BLURB>The socket file descriptor.</BLURB>
+<DEFAULT>-1</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSrc::caps</NAME>
+<TYPE>GstCaps*</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Caps</NICK>
+<BLURB>The caps of the source pad.</BLURB>
+<DEFAULT></DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSrc::ccid</NAME>
+<TYPE>gint</TYPE>
+<RANGE>>= 2</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>CCID</NICK>
+<BLURB>The Congestion Control IDentified to be used.</BLURB>
+<DEFAULT>2</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSrc::close-socket</NAME>
+<TYPE>gboolean</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Close socket</NICK>
+<BLURB>Close socket at the end of stream.</BLURB>
+<DEFAULT>TRUE</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSrc::host</NAME>
+<TYPE>gchar*</TYPE>
+<RANGE></RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Host</NICK>
+<BLURB>The hostname to listen as.</BLURB>
+<DEFAULT>NULL</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSrc::port</NAME>
+<TYPE>gint</TYPE>
+<RANGE>[0,65535]</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Port</NICK>
+<BLURB>The port to receive the packets from, 0=allocate.</BLURB>
+<DEFAULT>5001</DEFAULT>
+</ARG>
+
+<ARG>
+<NAME>GstDCCPServerSrc::sockfd</NAME>
+<TYPE>gint</TYPE>
+<RANGE>>= -1</RANGE>
+<FLAGS>rw</FLAGS>
+<NICK>Socket fd</NICK>
+<BLURB>The client socket file descriptor.</BLURB>
+<DEFAULT>-1</DEFAULT>
+</ARG>
+
diff --git a/docs/plugins/gst-plugins-bad-plugins.hierarchy b/docs/plugins/gst-plugins-bad-plugins.hierarchy
index fbe6fff4..731deb0b 100644
--- a/docs/plugins/gst-plugins-bad-plugins.hierarchy
+++ b/docs/plugins/gst-plugins-bad-plugins.hierarchy
@@ -11,109 +11,34 @@ GObject
GstElement
GstBin
GstPipeline
- GstSDPDemux
- GstRgVolume
+ RsnDvdBin
+ DvbBaseBin
GstRtpBin
GstRtpClient
- DvbBaseBin
- GstCDXAParse
- GstVcdParse
- GstBaseTransform
- GstDeinterlace
- GstIIR
- GstBayer2RGB
- GstAudioFilter
- GstStereo
- GstBPMDetect
- GstVideoCrop
- GstRgAnalysis
- GstRgLimiter
- GstVideoFilter
- GstVideoAnalyse
- GstVideoDetect
- GstVideoMark
- GstSpeexResample
- GstFestival
+ GstRgVolume
+ GstSDPDemux
+ GstX264Enc
+ GstBaseMetadata
+ GstMetadataDemux
+ GstMetadataMux
+ GstWildmidi
+ GstTimidity
GstBaseSrc
- GstAppSrc
GstPushSrc
- GstRfbSrc
- GstVCDSrc
- GstDvbSrc
+ GstMythtvSrc
+ GstNeonhttpSrc
+ GstMMS
GstBaseAudioSrc
+ GstJackAudioSrc
GstAudioSrc
GstOss4Source
- GstJackAudioSrc
- GstMMS
- GstNeonhttpSrc
- GstMythtvSrc
+ GstDvbSrc
+ GstVCDSrc
+ GstDCCPClientSrc
+ GstDCCPServerSrc
+ GstRfbSrc
GstSFSrc
- GstBaseSink
- GstAppSink
- GstVideoSink
- GstGLImageSink
- GstSDLVideoSink
- GstBaseAudioSink
- GstAudioSink
- GstOss4Sink
- GstNasSink
- GstSDLAudioSink
- GstJackAudioSink
- GstFBDEVSink
- AlsaSPDIFSink
- GstSFSink
- GstFreeze
- GstFLVDemux
- GstH264Parse
- GstModPlug
- GstInputSelector
- GstOutputSelector
- GstDVDSpu
- GstNsfDec
- GstSpeed
- GstTtaParse
- GstTtaDec
- GstDeinterlace2
- GstY4mEncode
- GstNuvDemux
- GstRealVideoDec
- GstRealAudioDec
- GstInterleave
- GstDeinterleave
- GstMveDemux
- GstMveMux
- GstVMncDec
- MpegVideoParse
- GstMpeg4VParse
- GstRtpJitterBuffer
- GstRtpPtDemux
- GstRtpSession
- GstRtpSsrcDemux
- GstRawParse
- GstVideoParse
- GstAudioParse
- MpegTSParse
- GstSrtEnc
- GstOss4Mixer
- GstAmrwbDec
- GstAmrwbParse
- GstAmrwbEnc
- GstBz2enc
- GstBz2dec
- GstCDAudio
- GstDtsDec
- GstFaac
- GstFaad
- GstGSMEnc
- GstGSMDec
- GstMpeg2enc
- GstMplex
- GstMusepackDec
- GstTRM
- GstPitch
- GstSpcDec
- GstXvidEnc
- GstXvidDec
+ GstAppSrc
GstSignalProcessor
ladspa-delay-5s
ladspa-amp-mono
@@ -346,12 +271,91 @@ GObject
ladspa-mbeq
ladspa-pitchScaleHQ
ladspa-imp
- GstTimidity
- GstWildmidi
- GstBaseMetadata
- GstMetadataDemux
- GstMetadataMux
- GstX264Enc
+ GstXvidEnc
+ GstXvidDec
+ GstSpcDec
+ GstPitch
+ GstBaseTransform
+ GstAudioFilter
+ GstBPMDetect
+ GstStereo
+ GstSpeexResample
+ GstVideoFilter
+ GstVideoAnalyse
+ GstVideoDetect
+ GstVideoMark
+ GstRgAnalysis
+ GstRgLimiter
+ GstVideoCrop
+ GstBayer2RGB
+ GstIIR
+ GstDeinterlace
+ GstBaseSink
+ GstSFSink
+ GstVideoSink
+ GstSDLVideoSink
+ GstGLImageSink
+ GstBaseAudioSink
+ GstAudioSink
+ GstSDLAudioSink
+ GstNasSink
+ GstOss4Sink
+ GstJackAudioSink
+ AlsaSPDIFSink
+ GstFBDEVSink
+ GstDCCPServerSink
+ GstDCCPClientSink
+ GstAppSink
+ GstTRM
+ GstMusepackDec
+ GstMpeg2enc
+ GstGSMEnc
+ GstGSMDec
+ GstFaad
+ GstFaac
+ GstDtsDec
+ GstCDAudio
+ GstBz2enc
+ GstBz2dec
+ GstAmrwbDec
+ GstAmrwbParse
+ GstAmrwbEnc
+ GstOss4Mixer
+ GstSrtEnc
+ MpegTSParse
+ GstRawParse
+ GstVideoParse
+ GstAudioParse
+ GstRtpJitterBuffer
+ GstRtpPtDemux
+ GstRtpSession
+ GstRtpSsrcDemux
+ GstMpeg4VParse
+ MpegVideoParse
+ GstVMncDec
+ GstMveDemux
+ GstMveMux
+ GstInterleave
+ GstDeinterleave
+ GstRealVideoDec
+ GstRealAudioDec
+ GstNuvDemux
+ GstY4mEncode
+ GstDeinterlace2
+ GstTtaParse
+ GstTtaDec
+ GstSpeed
+ GstNsfDec
+ GstDVDSpu
+ GstInputSelector
+ GstOutputSelector
+ GstModPlug
+ GstH264Parse
+ GstFLVDemux
+ GstFreeze
+ GstFestival
+ GstCDXAParse
+ GstVcdParse
GstBus
GstTask
GstClock
@@ -367,9 +371,9 @@ GInterface
GTypePlugin
GstChildProxy
GstURIHandler
+ GstTagSetter
GstImplementsInterface
GstXOverlay
+ GstNavigation
GstPropertyProbe
GstMixer
- GstNavigation
- GstTagSetter
diff --git a/docs/plugins/gst-plugins-bad-plugins.interfaces b/docs/plugins/gst-plugins-bad-plugins.interfaces
index 835f818e..728d8df6 100644
--- a/docs/plugins/gst-plugins-bad-plugins.interfaces
+++ b/docs/plugins/gst-plugins-bad-plugins.interfaces
@@ -1,20 +1,21 @@
GstBin GstChildProxy
GstPipeline GstChildProxy
-GstSDPDemux GstChildProxy
-GstRgVolume GstChildProxy
+RsnDvdBin GstChildProxy GstURIHandler
+DvbBaseBin GstChildProxy GstURIHandler
GstRtpBin GstChildProxy
GstRtpClient GstChildProxy
-DvbBaseBin GstChildProxy GstURIHandler
-GstAppSrc GstURIHandler
-GstVCDSrc GstURIHandler
-GstOss4Source GstImplementsInterface GstPropertyProbe GstMixer
-GstMMS GstURIHandler
-GstNeonhttpSrc GstURIHandler
+GstRgVolume GstChildProxy
+GstSDPDemux GstChildProxy
+GstMetadataMux GstTagSetter
GstMythtvSrc GstURIHandler
-GstGLImageSink GstImplementsInterface GstXOverlay
+GstNeonhttpSrc GstURIHandler
+GstMMS GstURIHandler
+GstOss4Source GstImplementsInterface GstPropertyProbe GstMixer
+GstVCDSrc GstURIHandler
+GstAppSrc GstURIHandler
GstSDLVideoSink GstImplementsInterface GstXOverlay GstNavigation
+GstGLImageSink GstImplementsInterface GstXOverlay
GstOss4Sink GstPropertyProbe
-GstDeinterlace2 GstChildProxy
-GstOss4Mixer GstImplementsInterface GstPropertyProbe GstMixer
GstCDAudio GstURIHandler
-GstMetadataMux GstTagSetter
+GstOss4Mixer GstImplementsInterface GstPropertyProbe GstMixer
+GstDeinterlace2 GstChildProxy
diff --git a/docs/plugins/gst-plugins-bad-plugins.prerequisites b/docs/plugins/gst-plugins-bad-plugins.prerequisites
index 943c1c4e..b703e314 100644
--- a/docs/plugins/gst-plugins-bad-plugins.prerequisites
+++ b/docs/plugins/gst-plugins-bad-plugins.prerequisites
@@ -1,5 +1,5 @@
GstChildProxy GstObject
+GstTagSetter GstObject GstElement
GstImplementsInterface GstObject GstElement
GstXOverlay GstObject GstImplementsInterface GstElement
GstMixer GstObject GstImplementsInterface GstElement
-GstTagSetter GstObject GstElement
diff --git a/docs/plugins/gst-plugins-bad-plugins.signals b/docs/plugins/gst-plugins-bad-plugins.signals
index 7fbfd545..cba8307a 100644
--- a/docs/plugins/gst-plugins-bad-plugins.signals
+++ b/docs/plugins/gst-plugins-bad-plugins.signals
@@ -343,3 +343,35 @@ guint64 arg1
GstDivxEnc *gstdivxenc
</SIGNAL>
+<SIGNAL>
+<NAME>GstDCCPClientSrc::connected</NAME>
+<RETURNS>void</RETURNS>
+<FLAGS>f</FLAGS>
+GstDCCPClientSrc *gstdccpclientsrc
+gint arg1
+</SIGNAL>
+
+<SIGNAL>
+<NAME>GstDCCPServerSink::connected</NAME>
+<RETURNS>void</RETURNS>
+<FLAGS>f</FLAGS>
+GstDCCPServerSink *gstdccpserversink
+gint arg1
+</SIGNAL>
+
+<SIGNAL>
+<NAME>GstDCCPClientSink::connected</NAME>
+<RETURNS>void</RETURNS>
+<FLAGS>f</FLAGS>
+GstDCCPClientSink *gstdccpclientsink
+gint arg1
+</SIGNAL>
+
+<SIGNAL>
+<NAME>GstDCCPServerSrc::connected</NAME>
+<RETURNS>void</RETURNS>
+<FLAGS>f</FLAGS>
+GstDCCPServerSrc *gstdccpserversrc
+gint arg1
+</SIGNAL>
+
diff --git a/docs/plugins/inspect/plugin-dccp.xml b/docs/plugins/inspect/plugin-dccp.xml
new file mode 100644
index 00000000..237fb198
--- /dev/null
+++ b/docs/plugins/inspect/plugin-dccp.xml
@@ -0,0 +1,73 @@
+<plugin>
+ <name>dccp</name>
+ <description>transfer data over the network via DCCP.</description>
+ <filename>../../gst/dccp/.libs/libgstdccp.so</filename>
+ <basename>libgstdccp.so</basename>
+ <version>0.10.8.1</version>
+ <license>LGPL</license>
+ <source>gst-plugins-bad</source>
+ <package>DCCP</package>
+ <origin>http://garage.maemo.org/projects/ephone</origin>
+ <elements>
+ <element>
+ <name>dccpclientsink</name>
+ <longname>DCCP client sink</longname>
+ <class>Sink/Network</class>
+ <description>Send data as a client over the network via DCCP</description>
+ <author>E-Phone Team at Federal University of Campina Grande &lt;leandroal@gmail.com&gt;</author>
+ <pads>
+ <caps>
+ <name>sink</name>
+ <direction>sink</direction>
+ <presence>always</presence>
+ <details>ANY</details>
+ </caps>
+ </pads>
+ </element>
+ <element>
+ <name>dccpclientsrc</name>
+ <longname>DCCP client source</longname>
+ <class>Source/Network</class>
+ <description>Receive data as a client over the network via DCCP</description>
+ <author>E-Phone Team at Federal University of Campina Grande &lt;leandroal@gmail.com&gt;</author>
+ <pads>
+ <caps>
+ <name>src</name>
+ <direction>source</direction>
+ <presence>always</presence>
+ <details>ANY</details>
+ </caps>
+ </pads>
+ </element>
+ <element>
+ <name>dccpserversink</name>
+ <longname>DCCP server sink</longname>
+ <class>Sink/Network</class>
+ <description>Send data as a server over the network via DCCP</description>
+ <author>E-Phone Team at Federal University of Campina Grande &lt;leandroal@gmail.com&gt;</author>
+ <pads>
+ <caps>
+ <name>sink</name>
+ <direction>sink</direction>
+ <presence>always</presence>
+ <details>ANY</details>
+ </caps>
+ </pads>
+ </element>
+ <element>
+ <name>dccpserversrc</name>
+ <longname>DCCP server source</longname>
+ <class>Source/Network</class>
+ <description>Receive data as a server over the network via DCCP</description>
+ <author>E-Phone Team at Federal University of Campina Grande &lt;leandroal@gmail.com&gt;</author>
+ <pads>
+ <caps>
+ <name>src</name>
+ <direction>source</direction>
+ <presence>always</presence>
+ <details>ANY</details>
+ </caps>
+ </pads>
+ </element>
+ </elements>
+</plugin> \ No newline at end of file