gstreamer/gst/gdp
Thomas Vander Stichele 9fe1aa7a1a add buffer logging
Original commit message from CVS:
add buffer logging
2007-03-14 15:05:32 +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 add buffer logging 2007-03-14 15:05:32 +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: Fix memory leaks and misleading debug messages, add a couple of comments. 2006-08-25 16:19:55 +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