gstreamer/gst/gdp
2016-01-28 19:38:22 +01:00
..
dataprotocol.c
dataprotocol.h
dp-private.h
gstgdp.c
gstgdpdepay.c gdpdepay: Add ts-offset property to adjust buffer timestamps 2016-01-28 19:38:22 +01:00
gstgdpdepay.h gdpdepay: Add ts-offset property to adjust buffer timestamps 2016-01-28 19:38:22 +01:00
gstgdppay.c gdppay: Fix buffer memory leak 2015-12-16 09:40:39 +01:00
gstgdppay.h
Makefile.am
README plugins-bad: Fix example pipelines 2015-12-15 10:30:49 +00:00

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

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

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

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