* @bandwidth: the RTCP bandwidth
*
* Set the bandwidth that should be used for RTCP
- * messages.
+ * messages.
*/
void
rtp_session_set_rtcp_bandwidth (RTPSession * sess, gdouble bandwidth)
* @sess: an #RTPSession
* @cname: a CNAME for the session
*
- * Set the CNAME for the session.
+ * Set the CNAME for the session.
*/
void
rtp_session_set_cname (RTPSession * sess, const gchar * cname)
* @sess: an #RTPSession
* @name: a NAME for the session
*
- * Set the NAME for the session.
+ * Set the NAME for the session.
*/
void
rtp_session_set_name (RTPSession * sess, const gchar * name)
* @sess: an #RTPSession
* @email: an EMAIL for the session
*
- * Set the EMAIL the session.
+ * Set the EMAIL the session.
*/
void
rtp_session_set_email (RTPSession * sess, const gchar * email)
* @sess: an #RTPSession
* @phone: a PHONE for the session
*
- * Set the PHONE the session.
+ * Set the PHONE the session.
*/
void
rtp_session_set_phone (RTPSession * sess, const gchar * phone)
* @sess: an #RTPSession
* @location: a LOCATION for the session
*
- * Set the LOCATION the session.
+ * Set the LOCATION the session.
*/
void
rtp_session_set_location (RTPSession * sess, const gchar * location)
* @sess: an #RTPSession
* @tool: a TOOL for the session
*
- * Set the TOOL the session.
+ * Set the TOOL the session.
*/
void
rtp_session_set_tool (RTPSession * sess, const gchar * tool)
* @sess: an #RTPSession
* @note: a NOTE for the session
*
- * Set the NOTE the session.
+ * Set the NOTE the session.
*/
void
rtp_session_set_note (RTPSession * sess, const gchar * note)
members = sess->stats.active_sources;
if (!sess->source->received_bye && members < pmembers) {
- /* some members went away since the previous timeout estimate.
+ /* some members went away since the previous timeout estimate.
* Perform reverse reconsideration but only when we are not scheduling a
* BYE ourselves. */
if (arrival->time < sess->next_rtcp_check_time) {
extended_max = stats->cycles + stats->max_seq;
expected = extended_max - stats->base_seq + 1;
- GST_DEBUG ("ext_max %d, expected %d, received %d, base_seq %d",
+ GST_DEBUG ("ext_max %" G_GUINT64_FORMAT ", expected %" G_GUINT64_FORMAT
+ ", received %" G_GUINT64_FORMAT ", base_seq %" G_GUINT32_FORMAT,
extended_max, expected, stats->packets_received, stats->base_seq);
lost = expected - stats->packets_received;
GST_DEBUG ("add RR for SSRC %08x", source->ssrc);
/* we scaled the jitter up for additional precision */
- GST_DEBUG ("fraction %d, lost %d, extseq %u, jitter %d", fraction, lost,
+ GST_DEBUG ("fraction %" G_GUINT32_FORMAT ", lost %" G_GINT64_FORMAT
+ ", extseq %" G_GUINT64_FORMAT ", jitter %d", fraction, lost,
extended_max, stats->jitter >> 4);
if (rtp_source_get_last_sr (source, &ntptime, NULL, NULL, NULL, &time)) {
src->probation--;
src->stats.max_seq = seqnr;
if (src->probation == 0) {
- GST_DEBUG ("probation done!", src->probation);
+ GST_DEBUG ("probation done!");
init_seq (src, seqnr);
} else {
GstBuffer *q;
/* push packet */
if (src->callbacks.push_rtp) {
- GST_DEBUG ("pushing RTP packet %u", src->stats.packets_sent);
+ GST_DEBUG ("pushing RTP packet %" G_GUINT64_FORMAT,
+ src->stats.packets_sent);
result = src->callbacks.push_rtp (src, buffer, src->user_data);
} else {
GST_DEBUG ("no callback installed");
g_return_if_fail (RTP_IS_SOURCE (src));
- GST_DEBUG ("got SR packet: SSRC %08x, NTP %08x:%08x, RTP %u, PC %u, OC %u",
- src->ssrc, ntptime >> 32, ntptime & 0xffffffff, rtptime, packet_count,
- octet_count);
+ GST_DEBUG ("got SR packet: SSRC %08x, NTP %08x:%08x, RTP %" G_GUINT32_FORMAT
+ ", PC %" G_GUINT32_FORMAT ", OC %" G_GUINT32_FORMAT, src->ssrc,
+ (guint32) (ntptime >> 32), (guint32) (ntptime & 0xffffffff), rtptime,
+ packet_count, octet_count);
curridx = src->stats.curr_sr ^ 1;
curr = &src->stats.sr[curridx];
g_return_if_fail (RTP_IS_SOURCE (src));
- GST_DEBUG ("got RB packet %d: SSRC %08x, FL %u"
- ", PL %u, HS %u, JITTER %u, LSR %08x, DLSR %08x", src->ssrc, fractionlost,
- packetslost, exthighestseq, jitter, lsr, dlsr);
+ GST_DEBUG ("got RB packet: SSRC %08x, FL %" G_GUINT32_FORMAT ""
+ ", PL %d, HS %" G_GUINT32_FORMAT ", JITTER %" G_GUINT32_FORMAT
+ ", LSR %08x, DLSR %08x", src->ssrc, fractionlost, packetslost,
+ exthighestseq, jitter, lsr, dlsr);
curridx = src->stats.curr_rr ^ 1;
curr = &src->stats.rr[curridx];