mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 07:38:16 +00:00
Some minor docs fixes and additions; also add missing 'Since' bits.
Original commit message from CVS: * docs/libs/gst-plugins-base-libs.types: * gst-libs/gst/rtp/gstbasertpaudiopayload.c: (gst_base_rtp_audio_payload_class_init): * gst-libs/gst/rtp/gstbasertpdepayload.c: * gst-libs/gst/rtp/gstbasertppayload.c: Some minor docs fixes and additions; also add missing 'Since' bits.
This commit is contained in:
parent
80ebb9eb42
commit
71d77fbecc
5 changed files with 46 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
|||
2007-04-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/libs/gst-plugins-base-libs.types:
|
||||
* gst-libs/gst/rtp/gstbasertpaudiopayload.c:
|
||||
(gst_base_rtp_audio_payload_class_init):
|
||||
* gst-libs/gst/rtp/gstbasertpdepayload.c:
|
||||
* gst-libs/gst/rtp/gstbasertppayload.c:
|
||||
Some minor docs fixes and additions; also add missing 'Since' bits.
|
||||
|
||||
2007-04-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
Patch by: Zeeshan Ali <zeenix gmail com>
|
||||
|
|
|
@ -46,6 +46,8 @@ gst_x_overlay_get_type
|
|||
gst_base_rtp_depayload_get_type
|
||||
#include <gst/rtp/gstbasertppayload.h>
|
||||
gst_basertppayload_get_type
|
||||
#include <gst/rtp/gstbasertpaudiopayload.h>
|
||||
gst_base_rtp_audio_payload_get_type
|
||||
|
||||
|
||||
#include <gst/video/gstvideofilter.h>
|
||||
|
|
|
@ -161,6 +161,13 @@ gst_base_rtp_audio_payload_class_init (GstBaseRTPAudioPayloadClass * klass)
|
|||
gstelement_class->change_state =
|
||||
GST_DEBUG_FUNCPTR (gst_base_rtp_payload_audio_change_state);
|
||||
|
||||
/**
|
||||
* GstBaseRTPAudioPayload:min-ptime:
|
||||
*
|
||||
* Minimum duration of the packet data in ns (can't go above MTU)
|
||||
*
|
||||
* Since: 0.10.13
|
||||
**/
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_MIN_PTIME,
|
||||
g_param_spec_int64 ("min-ptime", "Min packet time",
|
||||
"Minimum duration of the packet data in ns (can't go above MTU)",
|
||||
|
@ -612,6 +619,8 @@ gst_base_rtp_audio_payload_handle_sample_based_buffer (GstBaseRTPPayload *
|
|||
* the buffer downstream.
|
||||
*
|
||||
* Returns: a #GstFlowReturn
|
||||
*
|
||||
* Since: 0.10.13
|
||||
*/
|
||||
GstFlowReturn
|
||||
gst_base_rtp_audio_payload_push (GstBaseRTPAudioPayload * baseaudiopayload,
|
||||
|
@ -737,6 +746,8 @@ gst_base_rtp_payload_audio_handle_event (GstPad * pad, GstEvent * event,
|
|||
* Gets the internal adapter used by the depayloader.
|
||||
*
|
||||
* Returns: a #GstAdapter.
|
||||
*
|
||||
* Since: 0.10.13
|
||||
*/
|
||||
GstAdapter *
|
||||
gst_base_rtp_audio_payload_get_adapter (GstBaseRTPAudioPayload
|
||||
|
|
|
@ -18,6 +18,17 @@
|
|||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:gstbasertpdepayload
|
||||
* @short_description: Base class for RTP depayloader
|
||||
*
|
||||
* <refsect2>
|
||||
* <para>
|
||||
* Provides a base class for RTP depayloaders
|
||||
* </para>
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
#include "gstbasertpdepayload.h"
|
||||
|
||||
GST_DEBUG_CATEGORY_STATIC (basertpdepayload_debug);
|
||||
|
|
|
@ -12,6 +12,17 @@
|
|||
* Library General Public License for more
|
||||
*/
|
||||
|
||||
/**
|
||||
* SECTION:gstbasertppayload
|
||||
* @short_description: Base class for RTP payloader
|
||||
*
|
||||
* <refsect2>
|
||||
* <para>
|
||||
* Provides a base class for RTP payloaders
|
||||
* </para>
|
||||
* </refsect2>
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
@ -79,6 +90,8 @@ static GstStateChangeReturn gst_basertppayload_change_state (GstElement *
|
|||
|
||||
static GstElementClass *parent_class = NULL;
|
||||
|
||||
/* FIXME 0.11: API should be changed to gst_base_typ_payload_xyz */
|
||||
|
||||
GType
|
||||
gst_basertppayload_get_type (void)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue