diff options
author | Leandro Melo de Sales <leandroal@gmail.com> | 2008-08-21 13:22:38 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-08-21 13:22:38 +0000 |
commit | 605482a1a852a42aba6263811d7fa57b110728ba (patch) | |
tree | 14a29b92472bd9ebfc207581f54b307967842e29 /docs/plugins/inspect/plugin-dccp.xml | |
parent | fd66868120ad27860d140d1a54040dcbffc014a5 (diff) |
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/inspect/plugin-dccp.xml')
-rw-r--r-- | docs/plugins/inspect/plugin-dccp.xml | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/docs/plugins/inspect/plugin-dccp.xml b/docs/plugins/inspect/plugin-dccp.xml new file mode 100644 index 000000000..237fb1983 --- /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 <leandroal@gmail.com></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 <leandroal@gmail.com></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 <leandroal@gmail.com></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 <leandroal@gmail.com></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 |