gstreamer/gst/tcp
Jan Schmidt 28bf221806 ext/alsa/gstalsasink.c: Chain up to the parent finalize method.
Original commit message from CVS:
* ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
Chain up to the parent finalize method.
Add 32-bit sample size to the template caps.

* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
(gst_riff_create_video_template_caps):
Add the fourcc that the VMWare codec uses.

* gst/playback/gststreamselector.c:
(gst_stream_selector_set_property),
(gst_stream_selector_bufferalloc),
(gst_stream_selector_request_new_pad):
For the active pad, forward buffer-alloc requests, otherwise
return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
having to memcpy every frame when used by playbin.

* gst/tcp/gstmultifdsink.c:
(gst_multi_fd_sink_handle_client_write):
Get negotiated caps from the sink pad, rather than the sink
pad's peer.
2006-03-15 17:59:05 +00:00
..
.gitignore gst/tcp/: Added burst on connect sync_method, deprecated sync_clients, streamlined the sync code some more. 2004-10-29 11:10:38 +00:00
fdsetstress.c gst/tcp/: Added more locks around fdset structures. Fixed/reworked the poll array resizing code. 2004-10-28 14:22:15 +00:00
gstfdset.c expand tabs 2005-12-06 19:42:02 +00:00
gstfdset.h expand tabs 2005-12-06 19:42:02 +00:00
gstmultifdsink.c ext/alsa/gstalsasink.c: Chain up to the parent finalize method. 2006-03-15 17:59:05 +00:00
gstmultifdsink.h Updated/added documentation. 2006-03-01 16:24:37 +00:00
gsttcp-marshal.list gst/tcp/: Starting to prepare for specifying buffer time in other units than buffers. Expose remove reason in signal. 2004-08-10 15:23:19 +00:00
gsttcp.c gst/tcp/: Add <string.h> includes for memset and FD_ZERO (fixes #323878; 2005-12-16 11:25:51 +00:00
gsttcp.h expand tabs 2005-12-06 19:42:02 +00:00
gsttcpclientsink.c gst/tcp/: Add <string.h> includes for memset and FD_ZERO (fixes #323878; 2005-12-16 11:25:51 +00:00
gsttcpclientsink.h more borgifying 2005-12-01 01:21:49 +00:00
gsttcpclientsrc.c gst/tcp/gsttcpclientsrc.c: Revert Andy's newsegment change pending a more correct fix. 2006-02-08 15:50:08 +00:00
gsttcpclientsrc.h expand tabs 2005-12-06 19:42:02 +00:00
gsttcpplugin.c more borgifying 2005-12-01 01:21:49 +00:00
gsttcpplugin.h expand tabs 2005-12-06 19:42:02 +00:00
gsttcpserversink.c Just make it compile with --disable-gst-debug. 2006-02-03 17:45:44 +00:00
gsttcpserversink.h Fix some more docs. 2006-03-01 17:39:28 +00:00
gsttcpserversrc.c gst/tcp/: Add <string.h> includes for memset and FD_ZERO (fixes #323878; 2005-12-16 11:25:51 +00:00
gsttcpserversrc.h more borgifying 2005-12-01 01:21:49 +00:00
Makefile.am make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be added manually to each Makefile.am so we are sure it goes 2005-07-13 17:58:07 +00:00
README Ported tcp plugins to 0.9. 2005-07-05 10:21:40 +00:00
tcp.vcproj more working plugins 2004-07-27 21:41:30 +00:00

This part of the documentation is for the new tcp elements:
- tcpclientsrc
- tcpclientsink
- tcpserversrc
- tcpserversink
                                                                                
TESTS
-----
Use these tests to test functionality of the various tcp plugins

* server: nc -l -p 3000
  client: nc localhost 3000
  everything you type in the server is shown on the client
  everything you type in the client is shown on the server

* server: nc -l -p 3000
  client: gst-launch tcpclientsrc protocol=none port=3000 ! fdsink fd=2
  everything you type in the server is shown on the client

* server: nc -l -p 3000
  client: gst-launch fdsrc fd=1 ! tcpclientsink protocol=none port=3000
  everything you type in the client is shown on the server

* server: gst-launch tcpserversrc protocol=none port=3000 ! fdsink fd=2
  client: gst-launch fdsrc fd=1 ! tcpclientsink protocol=none port=3000


TODO
----
- implement DNS resolution