gstreamer/gst/gdp
Tim-Philipp Müller 6be16ad773 gdppay: parse caps event and payload caps
Which makes it actually output stuff.
2011-07-08 20:03:27 +01:00
..
gstgdp.c adding GDP payloader and depayloader. Build integration will follow later when the GDP issues for core are sorted out. 2006-05-22 13:25:52 +00:00
gstgdpdepay.c -base: port to new SEGMENT API 2011-05-16 13:48:11 +02:00
gstgdpdepay.h Add -Wmissing-declarations -Wmissing-prototypes to warning flags 2010-03-11 13:50:31 +01:00
gstgdppay.c gdppay: parse caps event and payload caps 2011-07-08 20:03:27 +01:00
gstgdppay.h Add -Wmissing-declarations -Wmissing-prototypes to warning flags 2010-03-11 13:50:31 +01:00
Makefile.am android: make it ready for androgenizer 2011-04-11 07:23:21 +02: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