gstreamer/gst/gdp
Wim Taymans ae5528c28f gdp: Make debug category static
Original commit message from CVS:
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer_any), (gst_dp_packet_from_caps_any),
(gst_dp_crc), (gst_dp_header_payload_length),
(gst_dp_header_payload_type), (gst_dp_packet_from_event),
(gst_dp_packet_from_event_1_0), (gst_dp_buffer_from_header),
(gst_dp_caps_from_packet), (gst_dp_event_from_packet_0_2),
(gst_dp_event_from_packet), (gst_dp_validate_header),
(gst_dp_validate_payload):
Make debug category static
Constify the crc table.
Do some more arg checking in public functions.
Fix some docs and do some small cleanups.
* tests/check/libs/gdp.c: (GST_START_TEST), (gst_dp_suite):
Add some more checks to see if GDP deals with bogus input.
2012-09-11 01:54:38 +01:00
..
dataprotocol.c gdp: Make debug category static 2012-09-11 01:54:38 +01:00
dataprotocol.h gdp: add a GstDPPacketizer object, and create/free functions 2012-09-11 01:54:38 +01:00
dp-private.h gdp: It's about time we bump the version number. 2012-09-11 01:54:37 +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 add parent to pad functions 2012-09-11 01:54:36 +01:00
gstgdpdepay.h Add -Wmissing-declarations -Wmissing-prototypes to warning flags 2012-09-11 01:54:33 +01:00
gstgdppay.c add parent to pad functions 2012-09-11 01:54:36 +01:00
gstgdppay.h Add -Wmissing-declarations -Wmissing-prototypes to warning flags 2012-09-11 01:54:33 +01:00
Makefile.am android: make it ready for androgenizer 2012-09-11 01:54:34 +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