Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
eb9eb4d6
Commit
eb9eb4d6
authored
3 years ago
by
Kateryna Kostiuk
Committed by
Andreas Traczyk
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
avmodel: link audio device event
Change-Id: I1e6029c471ff89ad8b05653bc5c99da9a2d72cf9
parent
8c6b1956
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/api/avmodel.h
+5
-1
5 additions, 1 deletion
src/api/avmodel.h
src/avmodel.cpp
+15
-1
15 additions, 1 deletion
src/avmodel.cpp
src/callbackshandler.cpp
+18
-8
18 additions, 8 deletions
src/callbackshandler.cpp
src/callbackshandler.h
+12
-2
12 additions, 2 deletions
src/callbackshandler.h
with
50 additions
and
12 deletions
src/api/avmodel.h
+
5
−
1
View file @
eb9eb4d6
...
...
@@ -318,9 +318,13 @@ Q_SIGNALS:
*/
void
frameUpdated
(
const
QString
&
id
);
/**
* Emitted when a device is plugged or unplugged
* Emitted when a
video
device is plugged or unplugged
*/
void
deviceEvent
();
/**
* Emitted when an audio device is plugged or unplugged
*/
void
audioDeviceEvent
();
/**
* Audio volume level
* @param id Ringbuffer id
...
...
This diff is collapsed.
Click to expand it.
src/avmodel.cpp
+
15
−
1
View file @
eb9eb4d6
...
...
@@ -114,9 +114,13 @@ public Q_SLOTS:
*/
void
slotFrameUpdated
(
const
QString
&
id
);
/**
* Detect when a device is plugged or unplugged
* Detect when a
video
device is plugged or unplugged
*/
void
slotDeviceEvent
();
/**
* Detect when an audio device is plugged or unplugged
*/
void
slotAudioDeviceEvent
();
/**
* Audio volume level
* @param id Ringbuffer id
...
...
@@ -643,6 +647,10 @@ AVModelPimpl::AVModelPimpl(AVModel& linked, const CallbacksHandler& callbacksHan
SIZE_RENDERER
=
renderers_
.
size
();
#endif
connect
(
&
callbacksHandler
,
&
CallbacksHandler
::
deviceEvent
,
this
,
&
AVModelPimpl
::
slotDeviceEvent
);
connect
(
&
callbacksHandler
,
&
CallbacksHandler
::
audioDeviceEvent
,
this
,
&
AVModelPimpl
::
slotAudioDeviceEvent
);
connect
(
&
callbacksHandler
,
&
CallbacksHandler
::
audioMeter
,
this
,
&
AVModelPimpl
::
slotAudioMeter
);
connect
(
&
callbacksHandler
,
&
CallbacksHandler
::
recordPlaybackStopped
,
...
...
@@ -859,6 +867,12 @@ AVModelPimpl::slotDeviceEvent()
emit
linked_
.
deviceEvent
();
}
void
AVModelPimpl
::
slotAudioDeviceEvent
()
{
emit
linked_
.
audioDeviceEvent
();
}
void
AVModelPimpl
::
slotAudioMeter
(
const
QString
&
id
,
float
level
)
{
...
...
This diff is collapsed.
Click to expand it.
src/callbackshandler.cpp
+
18
−
8
View file @
eb9eb4d6
...
...
@@ -233,14 +233,17 @@ CallbacksHandler::CallbacksHandler(const Lrc& parent)
this
,
&
CallbacksHandler
::
slotDeviceEvent
,
Qt
::
QueuedConnection
);
connect
(
&
ConfigurationManager
::
instance
(),
&
ConfigurationManagerInterface
::
audioDeviceEvent
,
this
,
&
CallbacksHandler
::
slotAudioDeviceEvent
,
Qt
::
QueuedConnection
);
connect
(
&
ConfigurationManager
::
instance
(),
&
ConfigurationManagerInterface
::
audioMeter
,
this
,
&
CallbacksHandler
::
slotAudioMeterReceived
,
Qt
::
QueuedConnection
);
}
CallbacksHandler
::~
CallbacksHandler
()
{}
...
...
@@ -249,11 +252,10 @@ void
CallbacksHandler
::
subscribeToDebugReceived
()
{
connect
(
&
ConfigurationManager
::
instance
(),
&
ConfigurationManagerInterface
::
messageSend
,
this
,
&
CallbacksHandler
::
slotDebugMessageReceived
,
Qt
::
QueuedConnection
);
&
ConfigurationManagerInterface
::
messageSend
,
this
,
&
CallbacksHandler
::
slotDebugMessageReceived
,
Qt
::
QueuedConnection
);
}
void
...
...
@@ -566,6 +568,12 @@ CallbacksHandler::slotDeviceEvent()
emit
deviceEvent
();
}
void
CallbacksHandler
::
slotAudioDeviceEvent
()
{
emit
audioDeviceEvent
();
}
void
CallbacksHandler
::
slotAudioMeterReceived
(
const
QString
&
id
,
float
level
)
{
...
...
@@ -573,7 +581,9 @@ CallbacksHandler::slotAudioMeterReceived(const QString& id, float level)
}
void
CallbacksHandler
::
slotRemoteRecordingChanged
(
const
QString
&
callId
,
const
QString
&
peerNumber
,
bool
state
)
CallbacksHandler
::
slotRemoteRecordingChanged
(
const
QString
&
callId
,
const
QString
&
peerNumber
,
bool
state
)
{
emit
remoteRecordingChanged
(
callId
,
peerNumber
,
state
);
}
...
...
This diff is collapsed.
Click to expand it.
src/callbackshandler.h
+
12
−
2
View file @
eb9eb4d6
...
...
@@ -273,10 +273,15 @@ Q_SIGNALS:
void
stoppedDecoding
(
const
QString
&
id
,
const
QString
&
shmPath
);
/**
* Emitted when a device is plugged or unplugged
* Emitted when a
video
device is plugged or unplugged
*/
void
deviceEvent
();
/**
* Emitted when an audio level is plugged or unplugged
*/
void
audioDeviceEvent
();
/**
* Emitted when an audio level is received
* @param id of the ringbuffer level
...
...
@@ -522,10 +527,15 @@ private Q_SLOTS:
void
slotStoppedDecoding
(
const
QString
&
id
,
const
QString
&
shmPath
);
/**
* Detect when a device is plugged or unplugged
* Detect when a
video
device is plugged or unplugged
*/
void
slotDeviceEvent
();
/**
* Detect when an audio device is plugged or unplugged
*/
void
slotAudioDeviceEvent
();
/**
* Called when an audio meter level is received
* @param id of the ringbuffer level
...
...
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