Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
c8656828
Commit
c8656828
authored
11 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
gnome: add RTCP parsing
Refs #44379
parent
a103f4f0
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnome/src/dbus/dbus.c
+12
-0
12 additions, 0 deletions
gnome/src/dbus/dbus.c
with
12 additions
and
0 deletions
gnome/src/dbus/dbus.c
+
12
−
0
View file @
c8656828
...
@@ -569,12 +569,24 @@ zrtp_not_supported_cb(G_GNUC_UNUSED DBusGProxy *proxy, const gchar *callID, SFLP
...
@@ -569,12 +569,24 @@ zrtp_not_supported_cb(G_GNUC_UNUSED DBusGProxy *proxy, const gchar *callID, SFLP
}
}
}
}
#ifdef RTCP_DEBUG
static
void
print_rtcp_stats
(
const
gchar
*
key
,
gint
value
,
G_GNUC_UNUSED
gpointer
data
)
{
g_debug
(
"%s: %d"
,
key
,
value
);
}
#endif
static
void
static
void
on_rtcp_report_received_cb
(
G_GNUC_UNUSED
DBusGProxy
*
proxy
,
const
gchar
*
callID
,
on_rtcp_report_received_cb
(
G_GNUC_UNUSED
DBusGProxy
*
proxy
,
const
gchar
*
callID
,
const
GHashTable
*
stats
,
const
GHashTable
*
stats
,
SFLPhoneClient
*
client
)
SFLPhoneClient
*
client
)
{
{
g_debug
(
"Daemon notification of new RTCP report for %s"
,
callID
);
g_debug
(
"Daemon notification of new RTCP report for %s"
,
callID
);
#ifdef RTCP_DEBUG
g_hash_table_foreach
(
stats
,
print_rtcp_stats
,
NULL
);
#endif
}
}
static
void
static
void
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment