gstreamer/gst/gdp
2018-02-08 11:15:46 +01:00
..
dataprotocol.c
dataprotocol.h
dp-private.h
gstgdp.c
gstgdpdepay.c Revert "gdpdepay: don't use allocator if it has custom alloc" 2018-02-08 11:15:46 +01:00
gstgdpdepay.h
gstgdppay.c
gstgdppay.h
Makefile.am Remove plugin specific static build option 2017-05-16 14:05:52 -04:00
meson.build
README

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