mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-03 06:39:51 +00:00
rtpmanager: Trivial gst-indent fixes
This commit is contained in:
parent
9f0c22e891
commit
e9692e4207
2 changed files with 4 additions and 4 deletions
|
@ -466,7 +466,8 @@ on_sender_ssrc_active (RTPSession * session, RTPSource * src,
|
|||
}
|
||||
|
||||
static void
|
||||
on_notify_stats (RTPSession * session, GParamSpec *spec, GstRtpSession *rtpsession)
|
||||
on_notify_stats (RTPSession * session, GParamSpec * spec,
|
||||
GstRtpSession * rtpsession)
|
||||
{
|
||||
g_object_notify (G_OBJECT (rtpsession), "stats");
|
||||
}
|
||||
|
|
|
@ -704,7 +704,7 @@ rtp_session_create_sources (RTPSession * sess)
|
|||
}
|
||||
|
||||
static void
|
||||
create_source_stats (gpointer key, RTPSource * source, GValueArray *arr)
|
||||
create_source_stats (gpointer key, RTPSource * source, GValueArray * arr)
|
||||
{
|
||||
GValue value = G_VALUE_INIT;
|
||||
GstStructure *s;
|
||||
|
@ -729,8 +729,7 @@ rtp_session_create_stats (RTPSession * sess)
|
|||
s = gst_structure_new ("application/x-rtp-session-stats",
|
||||
"rtx-drop-count", G_TYPE_UINT, sess->stats.nacks_dropped,
|
||||
"sent-nack-count", G_TYPE_UINT, sess->stats.nacks_sent,
|
||||
"recv-nack-count", G_TYPE_UINT, sess->stats.nacks_received,
|
||||
NULL);
|
||||
"recv-nack-count", G_TYPE_UINT, sess->stats.nacks_received, NULL);
|
||||
|
||||
size = g_hash_table_size (sess->ssrcs[sess->mask_idx]);
|
||||
source_stats = g_value_array_new (size);
|
||||
|
|
Loading…
Reference in a new issue