Skip to content
Snippets Groups Projects
Commit 06f52505 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

dtmf: first dtmf is now played

opensllayer was switching its state to started too early, causing the loss of the
first buffer.
parent ef74f8ea
Branches
Tags
No related merge requests found
...@@ -116,6 +116,7 @@ OpenSLThread::run() ...@@ -116,6 +116,7 @@ OpenSLThread::run()
opensl_->startAudioPlayback(); opensl_->startAudioPlayback();
opensl_->startAudioCapture(); opensl_->startAudioCapture();
opensl_->isStarted_ = true;
while (opensl_->isStarted_) while (opensl_->isStarted_)
usleep(20000); // 20 ms usleep(20000); // 20 ms
...@@ -167,7 +168,6 @@ OpenSLLayer::startStream() ...@@ -167,7 +168,6 @@ OpenSLLayer::startStream()
if (audioThread_ == nullptr) { if (audioThread_ == nullptr) {
audioThread_ = new OpenSLThread(this); audioThread_ = new OpenSLThread(this);
isStarted_ = true;
audioThread_->start(); audioThread_->start();
} else if (!audioThread_->isRunning()) { } else if (!audioThread_->isRunning()) {
audioThread_->start(); audioThread_->start();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment