Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Olivier Crête
libnice
Commits
b09462c7
Commit
b09462c7
authored
Mar 14, 2014
by
Olivier Crête
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
agent: Create a custom pointer GType to recognize the stream ids
parent
a2801ef9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
agent/agent.c
agent/agent.c
+10
-3
No files found.
agent/agent.c
View file @
b09462c7
...
...
@@ -158,6 +158,12 @@ void agent_unlock(void)
#endif
static
GType
_nice_agent_stream_ids_get_type
(
void
);
G_DEFINE_POINTER_TYPE
(
_NiceAgentStreamIds
,
_nice_agent_stream_ids
);
#define NICE_TYPE_AGENT_STREAM_IDS _nice_agent_stream_ids_get_type ()
typedef
struct
{
guint
signal_id
;
GSignalQuery
query
;
...
...
@@ -171,9 +177,9 @@ free_queued_signal (QueuedSignal *sig)
guint
i
;
for
(
i
=
0
;
i
<
sig
->
query
.
n_params
;
i
++
)
{
if
(
G_VALUE_HOLDS_POINTER
(
&
sig
->
params
[
i
]))
g_free
(
g_value_get_pointer
(
&
sig
->
params
[
i
]));
g_value_unset
(
&
sig
->
params
[
i
]);
if
(
G_VALUE_HOLDS
(
&
sig
->
params
[
i
+
1
],
NICE_TYPE_AGENT_STREAM_IDS
))
}
g_slice_free1
(
sizeof
(
GValue
)
*
(
sig
->
query
.
n_params
+
1
),
sig
->
params
);
...
...
@@ -771,7 +777,7 @@ nice_agent_class_init (NiceAgentClass *klass)
g_cclosure_marshal_VOID__POINTER
,
G_TYPE_NONE
,
1
,
G_TYPE_POINTER
,
NICE_TYPE_AGENT_STREAM_IDS
,
G_TYPE_INVALID
);
/* Init debug options depending on env variables */
...
...
@@ -2378,7 +2384,8 @@ nice_agent_remove_stream (
if
(
!
agent
->
streams
)
priv_remove_keepalive_timer
(
agent
);
agent_queue_signal
(
agent
,
signals
[
SIGNAL_STREAMS_REMOVED
],
stream_ids
);
agent_queue_signal
(
agent
,
signals
[
SIGNAL_STREAMS_REMOVED
],
g_memdup
(
stream_ids
,
sizeof
(
stream_ids
)));
agent_unlock_and_emit
(
agent
);
return
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment