gstreamer/gst/gdp
Edward Hervey 6f7b2e2a3b gst/gdp/gstgdpdepay.c: Don't validate the payload if there isn't any.
Original commit message from CVS:
* gst/gdp/gstgdpdepay.c: (gst_gdp_depay_chain):
Don't validate the payload if there isn't any.
Fixes #525915
2012-09-11 01:54:32 +01:00
..
gstgdp.c adding GDP payloader and depayloader. Build integration will follow later when the GDP issues for core are sorted out. 2012-09-11 01:54:28 +01:00
gstgdpdepay.c gst/gdp/gstgdpdepay.c: Don't validate the payload if there isn't any. 2012-09-11 01:54:32 +01:00
gstgdpdepay.h Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass 2012-09-11 01:54:28 +01:00
gstgdppay.c Use G_PARAM_STATIC_STRINGS everywhere for GParamSpecs that use static strings (i.e. all). This gives us less memory u... 2012-09-11 01:54:32 +01:00
gstgdppay.h gst/gdp/gstgdpdepay.c: Disable seeking. 2012-09-11 01:54:29 +01:00
Makefile.am Move GDP plugin to -base from -bad. Closes #347783. 2012-09-11 01:54:31 +01:00
README adding a README 2012-09-11 01:54:31 +01: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