gstreamer/gst-libs/gst/rtp
Tim-Philipp Müller b550eabdac rtp: improve basertpdepayload's error message when no input caps were set
This is pretty much an FAQ, so try to make the error message a bit
more helpful. Also, don't tell people to file a bug in bugzilla
about this (which is what happens if the default error message for
CORE_NEGOTIATION is used).
2010-09-06 18:19:44 +01:00
..
gstbasertpaudiopayload.c basertpaudiopayload: Add extra frame for non-complete frame lengths 2010-05-13 11:03:12 +02:00
gstbasertpaudiopayload.h audiortppayload: refactor some more 2009-09-03 17:58:59 +02:00
gstbasertpdepayload.c rtp: improve basertpdepayload's error message when no input caps were set 2010-09-06 18:19:44 +01:00
gstbasertpdepayload.h gst-libs/gst/rtp/gstbasertpdepayload.*: Add some more G_LIKELY 2008-10-13 09:16:59 +00:00
gstbasertppayload.c rtppayload: notify of first timestamp/seqnum 2010-09-06 13:15:41 +02:00
gstbasertppayload.h audiopayload: add property to control packet duration 2010-04-09 16:17:31 +02:00
gstrtcpbuffer.c rtcpbuffer: add helper functions for SDES types 2009-12-22 20:15:28 +01:00
gstrtcpbuffer.h rtcpbuffer: add helper functions for SDES types 2009-12-22 20:15:28 +01:00
gstrtpbuffer.c docs: more helper libraries docs fixes 2010-03-16 00:44:50 +00:00
gstrtpbuffer.h rtp: add bufferlist support 2009-06-18 18:51:04 +02:00
gstrtppayloads.c gst-libs/gst/rtp/gstrtppayloads.c: Use g_ascii_strcasecmp() instead of the deprecated g_strcasecmp(). 2008-04-19 16:33:24 +00:00
gstrtppayloads.h gst-libs/gst/rtp/: Added new file and header to deal with payload info. 2007-10-01 13:22:14 +00:00
Makefile.am build: use new AG_GST_PKG_CONFIG_PATH m4 macro from common 2010-08-14 19:12:37 +01:00
README gst-libs/gst/rtp/: Moved some documentation into .c file 2006-09-29 23:50:53 +00:00

The RTP libraries
---------------------

  RTP Buffers
  -----------
  The real time protocol as described in RFC 3550 requires the use of special
  packets containing an additional RTP header of at least 12 bytes. GStreamer
  provides some helper functions for creating and parsing these RTP headers.
  The result is a normal #GstBuffer with an additional RTP header.
 
  RTP buffers are usually created with gst_rtp_buffer_new_allocate() or
  gst_rtp_buffer_new_allocate_len(). These functions create buffers with a
  preallocated space of memory. It will also ensure that enough memory
  is allocated for the RTP header. The first function is used when the payload
  size is known. gst_rtp_buffer_new_allocate_len() should be used when the size
  of the whole RTP buffer (RTP header + payload) is known.
 
  When receiving RTP buffers from a network, gst_rtp_buffer_new_take_data()
  should be used when the user would like to parse that RTP packet. (TODO Ask
  Wim what the real purpose of this function is as it seems to simply create a
  duplicate GstBuffer with the same data as the previous one). The
  function will create a new RTP buffer with the given data as the whole RTP
  packet. Alternatively, gst_rtp_buffer_new_copy_data() can be used if the user
  wishes to make a copy of the data before using it in the new RTP buffer. An
  important function is gst_rtp_buffer_validate() that is used to verify that
  the buffer a well formed RTP buffer.
 
  It is now possible to use all the gst_rtp_buffer_get_*() or
  gst_rtp_buffer_set_*() functions to read or write the different parts of the
  RTP header such as the payload type, the sequence number or the RTP
  timestamp. The use can also retreive a pointer to the actual RTP payload data
  using the gst_rtp_buffer_get_payload() function.

  RTP Base Payloader Class (GstBaseRTPPayload)
  --------------------------------------------

  All RTP payloader elements (audio or video) should derive from this class.

  RTP Base Audio Payloader Class (GstBaseRTPAudioPayload)
  -------------------------------------------------------

  This base class can be tested through it's children classes. Here is an
  example using the iLBC payloader (frame based).

  For 20ms mode :

  GST_DEBUG="basertpaudiopayload:5" gst-launch-0.10 fakesrc sizetype=2
  sizemax=114 datarate=1900 ! audio/x-iLBC, mode=20 !  rtpilbcpay
  max-ptime="40000000" ! fakesink

  For 30ms mode :

  GST_DEBUG="basertpaudiopayload:5" gst-launch-0.10 fakesrc sizetype=2
  sizemax=150 datarate=1662 ! audio/x-iLBC, mode=30 !  rtpilbcpay
  max-ptime="60000000" ! fakesink

  Here is an example using the uLaw payloader (sample based).

  GST_DEBUG="basertpaudiopayload:5" gst-launch-0.10 fakesrc sizetype=2
  sizemax=150 datarate=8000 ! audio/x-mulaw ! rtppcmupay max-ptime="6000000" !
  fakesink

  RTP Base Depayloader Class (GstBaseRTPDepayload)
  ------------------------------------------------

  All RTP depayloader elements (audio or video) should derive from this class.