Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
sofia-sip
Commits
50ce536b
Commit
50ce536b
authored
Sep 29, 2005
by
Pekka Pessi
Browse files
Using SOATAG_ACTIVE_*.
darcs-hash:20050929182517-65a35-b84e0a2cd8688ccd4c81828064baa7f692b3759e.gz
parent
633e452a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
libsofia-sip-ua/nua/nua_stack.h
libsofia-sip-ua/nua/nua_stack.h
+8
-8
No files found.
libsofia-sip-ua/nua/nua_stack.h
View file @
50ce536b
...
...
@@ -272,24 +272,24 @@ typedef struct nua_session_state
#define \
NH_ACTIVE_MEDIA_TAGS(include, soa) \
TAG_IF((include) && (soa) && soa_is_audio_active(soa) >= 0, \
NU
TAG_ACTIVE_AUDIO(soa_is_audio_active(soa))),
\
SOA
TAG_ACTIVE_AUDIO(soa_is_audio_active(soa))), \
TAG_IF((include) && (soa) && soa_is_video_active(soa) >= 0, \
NU
TAG_ACTIVE_VIDEO(soa_is_video_active(soa))),
\
SOA
TAG_ACTIVE_VIDEO(soa_is_video_active(soa))), \
TAG_IF((include) && (soa) && soa_is_image_active(soa) >= 0, \
NU
TAG_ACTIVE_IMAGE(soa_is_image_active(soa))),
\
SOA
TAG_ACTIVE_IMAGE(soa_is_image_active(soa))), \
TAG_IF((include) && (soa) && soa_is_chat_active(soa) >= 0, \
NU
TAG_ACTIVE_CHAT(soa_is_chat_active(soa)))
SOA
TAG_ACTIVE_CHAT(soa_is_chat_active(soa)))
#define \
NH_REMOTE_MEDIA_TAGS(include, soa) \
TAG_IF((include) && (soa) && soa_is_remote_audio_active(soa) >= 0, \
NU
TAG_ACTIVE_AUDIO(soa_is_remote_audio_active(soa))), \
SOA
TAG_ACTIVE_AUDIO(soa_is_remote_audio_active(soa))), \
TAG_IF((include) && (soa) && soa_is_remote_video_active(soa) >= 0, \
NU
TAG_ACTIVE_VIDEO(soa_is_remote_video_active(soa))), \
SOA
TAG_ACTIVE_VIDEO(soa_is_remote_video_active(soa))), \
TAG_IF((include) && (soa) && soa_is_remote_image_active(soa) >= 0, \
NU
TAG_ACTIVE_IMAGE(soa_is_remote_image_active(soa))), \
SOA
TAG_ACTIVE_IMAGE(soa_is_remote_image_active(soa))), \
TAG_IF((include) && (soa) && soa_is_remote_chat_active(soa) >= 0, \
NU
TAG_ACTIVE_CHAT(soa_is_remote_chat_active(soa)))
SOA
TAG_ACTIVE_CHAT(soa_is_remote_chat_active(soa)))
/** NUA handle.
*
...
...
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