gst_rtcp_buffer_validate
gst_rtcp_buffer_new
-gst_rtcp_buffer_end
+gst_rtcp_buffer_map
+gst_rtcp_buffer_unmap
gst_rtcp_buffer_get_packet_count
gst_rtcp_buffer_get_first_packet
gst_rtp_buffer_new_copy_data
gst_rtp_buffer_new_allocate
gst_rtp_buffer_new_allocate_len
-gst_rtp_buffer_list_from_buffer
gst_rtp_buffer_calc_header_len
gst_rtp_buffer_calc_packet_len
gst_rtp_buffer_ext_timestamp
gst_rtp_buffer_set_extension_data
-gst_rtp_buffer_list_validate
-
-gst_rtp_buffer_list_get_payload_len
-
-gst_rtp_buffer_list_get_payload_type
-gst_rtp_buffer_list_set_payload_type
-
-gst_rtp_buffer_list_get_seq
-gst_rtp_buffer_list_set_seq
-
-gst_rtp_buffer_list_get_ssrc
-gst_rtp_buffer_list_set_ssrc
-
-gst_rtp_buffer_list_get_timestamp
-gst_rtp_buffer_list_set_timestamp
-
gst_rtp_buffer_get_extension_onebyte_header
gst_rtp_buffer_get_extension_twobytes_header
gst_rtp_buffer_add_extension_onebyte_header
gst_rtp_buffer_add_extension_twobytes_header
-
-gst_rtp_buffer_list_get_extension_onebyte_header
-gst_rtp_buffer_list_get_extension_twobytes_header
-gst_rtp_buffer_list_add_extension_onebyte_header
-gst_rtp_buffer_list_add_extension_twobytes_header
</SECTION>
# rtsp
gst_rtsp_lower_trans_get_type
</SECTION>
-<SECTION>
-<FILE>gstrtspbase64</FILE>
-<INCLUDE>gst/rtsp/gstrtspbase64.h</INCLUDE>
-gst_rtsp_base64_encode
-gst_rtsp_base64_decode_ip
-</SECTION>
-
<SECTION>
<FILE>gstrtspconnection</FILE>
<INCLUDE>gst/rtsp/gstrtspconnection.h</INCLUDE>
gst_rtsp_watch_unref
gst_rtsp_watch_attach
gst_rtsp_watch_reset
-gst_rtsp_watch_queue_message
-gst_rtsp_watch_queue_data
gst_rtsp_watch_send_message
gst_rtsp_watch_write_data
</SECTION>
/**
* gst_rtcp_buffer_unmap:
- * @buffer: a buffer with an RTCP packet
+ * @rtcp: a buffer with an RTCP packet
*
* Finish @rtcp after being constructured. This function is usually called
* after gst_rtcp_buffer_map() and after adding the RTCP items to the new buffer.
*
- * The function adjusts the size of @buffer with the total length of all the
+ * The function adjusts the size of @rtcp with the total length of all the
* added packets.
*/
gboolean
/**
* gst_rtcp_buffer_get_packet_count:
- * @buffer: a valid RTCP buffer
+ * @rtcp: a valid RTCP buffer
*
- * Get the number of RTCP packets in @buffer.
+ * Get the number of RTCP packets in @rtcp.
*
- * Returns: the number of RTCP packets in @buffer.
+ * Returns: the number of RTCP packets in @rtcp.
*/
guint
gst_rtcp_buffer_get_packet_count (GstRTCPBuffer * rtcp)
/**
* gst_rtcp_buffer_get_first_packet:
- * @buffer: a valid RTCP buffer
+ * @rtcp: a valid RTCP buffer
* @packet: a #GstRTCPPacket
*
* Initialize a new #GstRTCPPacket pointer that points to the first packet in
- * @buffer.
+ * @rtcp.
*
- * Returns: TRUE if the packet existed in @buffer.
+ * Returns: TRUE if the packet existed in @rtcp.
*/
gboolean
gst_rtcp_buffer_get_first_packet (GstRTCPBuffer * rtcp, GstRTCPPacket * packet)
/**
* gst_rtcp_buffer_add_packet:
- * @buffer: a valid RTCP buffer
+ * @rtcp: a valid RTCP buffer
* @type: the #GstRTCPType of the new packet
* @packet: pointer to new packet
*
- * Add a new packet of @type to @buffer. @packet will point to the newly created
+ * Add a new packet of @type to @rtcp. @packet will point to the newly created
* packet.
*
* Returns: %TRUE if the packet could be created. This function returns %FALSE
/**
* GstRTCPPacket:
- * @buffer: pointer to RTCP buffer
+ * @rtcp: pointer to RTCP buffer
* @offset: offset of packet in buffer data
*
* Data structure that points to a packet at @offset in @buffer.
/**
* gst_rtp_buffer_new_allocate_len:
- * @rtp_len: the total length of the packet
+ * @packet_len: the total length of the packet
* @pad_len: the amount of padding
* @csrc_count: the number of CSRC entries
*
/**
* gst_rtp_buffer_set_padding:
- * @buffer: the buffer
+ * @rtp: the buffer
* @padding: the new padding
*
* Set the padding bit on the RTP packet in @buffer to @padding.
const gchar *encoding_parameters;
guint bitrate;
+ /*< private >*/
gpointer _gst_reserved[GST_PADDING];
};
/* RTP specific */
guint ssrc;
+ /*< private >*/
gpointer _gst_reserved[GST_PADDING];
};