rtpmanager: Trivial gst-indent fixes

This commit is contained in:
Arun Raghavan 2015-11-04 18:51:32 +05:30 committed by Arun Raghavan
parent 9f0c22e891
commit e9692e4207
2 changed files with 4 additions and 4 deletions

View file

@ -466,7 +466,8 @@ on_sender_ssrc_active (RTPSession * session, RTPSource * src,
} }
static void 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"); g_object_notify (G_OBJECT (rtpsession), "stats");
} }

View file

@ -704,7 +704,7 @@ rtp_session_create_sources (RTPSession * sess)
} }
static void 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; GValue value = G_VALUE_INIT;
GstStructure *s; GstStructure *s;
@ -729,8 +729,7 @@ rtp_session_create_stats (RTPSession * sess)
s = gst_structure_new ("application/x-rtp-session-stats", s = gst_structure_new ("application/x-rtp-session-stats",
"rtx-drop-count", G_TYPE_UINT, sess->stats.nacks_dropped, "rtx-drop-count", G_TYPE_UINT, sess->stats.nacks_dropped,
"sent-nack-count", G_TYPE_UINT, sess->stats.nacks_sent, "sent-nack-count", G_TYPE_UINT, sess->stats.nacks_sent,
"recv-nack-count", G_TYPE_UINT, sess->stats.nacks_received, "recv-nack-count", G_TYPE_UINT, sess->stats.nacks_received, NULL);
NULL);
size = g_hash_table_size (sess->ssrcs[sess->mask_idx]); size = g_hash_table_size (sess->ssrcs[sess->mask_idx]);
source_stats = g_value_array_new (size); source_stats = g_value_array_new (size);