gstreamer/gst/gdp
Tim-Philipp Müller 862d9f741e gdp: move dataprotocol library into gdp plugin and make private
We have removed things like protocol=gdp in the tcp elements
in favour of explicit gdppay/depay elements, so there's no need
to keep a public API and library for now. We can still add it
back later. Someone needs to think hard about 0.11 and gdp
anyway one of these days.
2011-12-25 23:25:42 +00:00
..
dataprotocol.c gdp: move dataprotocol library into gdp plugin and make private 2011-12-25 23:25:42 +00:00
dataprotocol.h gdp: fix header files 2011-12-25 22:49:59 +00:00
dp-private.h gdp: move dataprotocol library into gdp plugin and make private 2011-12-25 23:25:42 +00:00
gstgdp.c gdp: move dataprotocol library into gdp plugin and make private 2011-12-25 23:25:42 +00:00
gstgdpdepay.c gdp: move dataprotocol library into gdp plugin and make private 2011-12-25 23:25:42 +00:00
gstgdpdepay.h Add -Wmissing-declarations -Wmissing-prototypes to warning flags 2010-03-11 13:50:31 +01:00
gstgdppay.c gdp: move dataprotocol library into gdp plugin and make private 2011-12-25 23:25:42 +00:00
gstgdppay.h Add -Wmissing-declarations -Wmissing-prototypes to warning flags 2010-03-11 13:50:31 +01:00
Makefile.am gdp: move dataprotocol library into gdp plugin and make private 2011-12-25 23:25:42 +00:00
README adding a README 2006-08-21 19:04:14 +00:00

Sample pipelines:
- replacing tcpserversink protocol=gdp with gdppay ! tcpserversink:
  - raw audio:
    - server:
      gst-launch -v audiotestsrc ! gdppay version=0.2 ! tcpserversink
    - client:
      gst-launch -v tcpclientsrc protocol=gdp ! alsasink sync=FALSE

  - vorbis packets:
    - server:
      gst-launch -v audiotestsrc ! audioconvert ! vorbisenc ! gdppay version=0.2 ! tcpserversink
    - client:
      gst-launch -v tcpclientsrc protocol=gdp ! vorbisdec ! audioconvert ! alsasink sync=FALSE

  - ogg packets:
    - server:
      gst-launch -v audiotestsrc ! audioconvert ! vorbisenc ! oggmux ! gdppay version=0.2 ! tcpserversink
    - client:
      gst-launch -v tcpclientsrc protocol=gdp ! oggdemux ! vorbisdec ! audioconvert ! alsasink sync=FALSE

  In all the client pipelines, tcpclientsrc protocol=gdp can be replaced with
  tcpclientsrc ! gdpdepay