Skip to content
Snippets Groups Projects
Commit 927de9e7 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

libjami: add init flags to disable local media

Change-Id: I39fe75dee6b6aa5ca509b8f06621fc5698e42427
parent dd16aaff
Branches
No related tags found
No related merge requests found
......@@ -40,6 +40,9 @@ enum InitFlag {
LIBJAMI_FLAG_CONSOLE_LOG = 1 << 1,
LIBJAMI_FLAG_AUTOANSWER = 1 << 2,
LIBJAMI_FLAG_IOS_EXTENSION = 1 << 4,
LIBJAMI_FLAG_NO_LOCAL_AUDIO = 1 << 6,
LIBJAMI_FLAG_NO_LOCAL_VIDEO = 1 << 7,
LIBJAMI_FLAG_NO_LOCAL_MEDIA = LIBJAMI_FLAG_NO_LOCAL_AUDIO | LIBJAMI_FLAG_NO_LOCAL_VIDEO
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment