gstreamer/gst/gdp
Thomas Vander Stichele 9b7fcfdcae debug changes
Original commit message from CVS:
debug changes
2007-04-13 21:09:04 +00: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 debug changes 2007-04-13 21:09:04 +00:00
gstgdpdepay.h Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass 2006-06-01 22:00:23 +00:00
gstgdppay.c gst/gdp/gstgdppay.c: Make sure we set the IN_CAPS flag correctly. 2007-04-12 10:03:22 +00:00
gstgdppay.h gst/gdp/gstgdpdepay.c: Disable seeking. 2006-08-02 16:56:19 +00:00
Makefile.am Move GDP plugin to -base from -bad. Closes #347783. 2006-08-21 19:01:41 +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