• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D19-Apr-2019361 1814

Makefile.inH A D03-May-202239 KiB1,1281,032

READMEH A D19-Apr-2019895 2319

dataprotocol.cH A D19-Apr-201923.6 KiB778441

dataprotocol.hH A D19-Apr-20194.4 KiB11449

dp-private.hH A D19-Apr-20192.1 KiB5522

gstgdp.cH A D19-Apr-20191.3 KiB4720

gstgdpdepay.cH A D19-Apr-201917.4 KiB599453

gstgdpdepay.hH A D19-Apr-20192.2 KiB8847

gstgdppay.cH A D19-Apr-201921 KiB720526

gstgdppay.hH A D19-Apr-20192.1 KiB8241

meson.buildH A D19-Apr-2019362 1715

README

1Sample pipelines:
2- replacing tcpserversink protocol=gdp with gdppay ! tcpserversink:
3  - raw audio:
4    - server:
5      gst-launch-1.0 -v audiotestsrc ! gdppay version=0.2 ! tcpserversink
6    - client:
7      gst-launch-1.0 -v tcpclientsrc protocol=gdp ! alsasink sync=FALSE
8
9  - vorbis packets:
10    - server:
11      gst-launch-1.0 -v audiotestsrc ! audioconvert ! vorbisenc ! gdppay version=0.2 ! tcpserversink
12    - client:
13      gst-launch-1.0 -v tcpclientsrc protocol=gdp ! vorbisdec ! audioconvert ! alsasink sync=FALSE
14
15  - ogg packets:
16    - server:
17      gst-launch-1.0 -v audiotestsrc ! audioconvert ! vorbisenc ! oggmux ! gdppay version=0.2 ! tcpserversink
18    - client:
19      gst-launch-1.0 -v tcpclientsrc protocol=gdp ! oggdemux ! vorbisdec ! audioconvert ! alsasink sync=FALSE
20
21  In all the client pipelines, tcpclientsrc protocol=gdp can be replaced with
22  tcpclientsrc ! gdpdepay
23