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
566e7fdb
Commit
566e7fdb
authored
3 years ago
by
Maxime Callet
Committed by
Sébastien Blin
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
MediaStream: Add binding for android
Change-Id: I3dbed60d7b0d53e720a564f28a32b6e2fa73fcea
parent
77a2d0c0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bin/jni/callmanager.i
+4
-0
4 additions, 0 deletions
bin/jni/callmanager.i
bin/jni/jni_interface.i
+2
-0
2 additions, 0 deletions
bin/jni/jni_interface.i
with
6 additions
and
0 deletions
bin/jni/callmanager.i
+
4
−
0
View file @
566e7fdb
...
...
@@ -51,6 +51,8 @@ public:
virtual
void
onRtcpReportReceived
(
const
std
::
string&
call_id
,
const
std
::
map
<
std
::
string
,
int
>
&
stats
)
{}
virtual
void
onConferenceInfosUpdated
(
const
std
::
string&
confId
,
const
std
::
vector
<
std
::
map
<
std
::
string
,
std
::
string
>>
&
infos
)
{}
virtual
void
peerHold
(
const
std
::
string&
call_id
,
bool
holding
)
{}
virtual
void
audioMuted
(
const
std
::
string&
call_id
,
bool
muted
)
{}
virtual
void
videoMuted
(
const
std
::
string&
call_id
,
bool
muted
)
{}
virtual
void
connectionUpdate
(
const
std
::
string&
id
,
int
state
)
{}
virtual
void
remoteRecordingChanged
(
const
std
::
string&
call_id
,
const
std
::
string&
peer_number
,
bool
state
)
{}
virtual
void
mediaNegotiationStatus
(
const
std
::
string&
call_id
,
const
std
::
string&
event
,
...
...
@@ -154,6 +156,8 @@ public:
virtual
void
onRtcpReportReceived
(
const
std
::
string&
call_id
,
const
std
::
map
<
std
::
string
,
int
>
&
stats
)
{}
virtual
void
onConferenceInfosUpdated
(
const
std
::
string&
confId
,
const
std
::
vector
<
std
::
map
<
std
::
string
,
std
::
string
>>
&
infos
)
{}
virtual
void
peerHold
(
const
std
::
string&
call_id
,
bool
holding
)
{}
virtual
void
audioMuted
(
const
std
::
string&
call_id
,
bool
muted
)
{}
virtual
void
videoMuted
(
const
std
::
string&
call_id
,
bool
muted
)
{}
virtual
void
connectionUpdate
(
const
std
::
string&
id
,
int
state
)
{}
virtual
void
remoteRecordingChanged
(
const
std
::
string&
call_id
,
const
std
::
string&
peer_number
,
bool
state
)
{}
virtual
void
mediaNegotiationStatus
(
const
std
::
string&
call_id
,
const
std
::
string&
event
,
...
...
This diff is collapsed.
Click to expand it.
bin/jni/jni_interface.i
+
2
−
0
View file @
566e7fdb
...
...
@@ -253,6 +253,8 @@ void init(ConfigurationCallback* confM, Callback* callM, PresenceCallback* presM
exportable_callback<CallSignal::RtcpReportReceived>(bind(&Callback::onRtcpReportReceived, callM, _1, _2)),
exportable_callback<CallSignal::OnConferenceInfosUpdated>(bind(&Callback::onConferenceInfosUpdated, callM, _1, _2)),
exportable_callback<CallSignal::PeerHold>(bind(&Callback::peerHold, callM, _1, _2)),
exportable_callback<CallSignal::AudioMuted>(bind(&Callback::audioMuted, callM, _1, _2)),
exportable_callback<CallSignal::VideoMuted>(bind(&Callback::videoMuted, callM, _1, _2)),
exportable_callback<CallSignal::ConnectionUpdate>(bind(&Callback::connectionUpdate, callM, _1, _2)),
exportable_callback<CallSignal::RemoteRecordingChanged>(bind(&Callback::remoteRecordingChanged, callM, _1, _2, _3)),
exportable_callback<CallSignal::MediaNegotiationStatus>(bind(&Callback::mediaNegotiationStatus, callM, _1, _2, _3))
...
...
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