snapcast/client/player/oboe_player.cpp

172 lines
6.8 KiB
C++

/***
This file is part of snapcast
Copyright (C) 2014-2020 Johannes Pohl
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
#include <assert.h>
#include <iostream>
#include "common/aixlog.hpp"
#include "common/snap_exception.hpp"
#include "common/str_compat.hpp"
#include "oboe_player.hpp"
using namespace std;
static constexpr auto LOG_TAG = "OboePlayer";
static constexpr double kDefaultLatency = 50;
OboePlayer::OboePlayer(boost::asio::io_context& io_context, const ClientSettings::Player& settings, std::shared_ptr<Stream> stream)
: Player(io_context, settings, stream)
{
LOG(DEBUG, LOG_TAG) << "Contructor\n";
LOG(INFO, LOG_TAG) << "Init start\n";
char* env = getenv("SAMPLE_RATE");
if (env)
oboe::DefaultStreamValues::SampleRate = cpt::stoi(env, oboe::DefaultStreamValues::SampleRate);
env = getenv("FRAMES_PER_BUFFER");
if (env)
oboe::DefaultStreamValues::FramesPerBurst = cpt::stoi(env, oboe::DefaultStreamValues::FramesPerBurst);
LOG(INFO, LOG_TAG) << "DefaultStreamValues::SampleRate: " << oboe::DefaultStreamValues::SampleRate
<< ", DefaultStreamValues::FramesPerBurst: " << oboe::DefaultStreamValues::FramesPerBurst << "\n";
oboe::SharingMode sharing_mode = oboe::SharingMode::Shared;
if (settings.sharing_mode == ClientSettings::SharingMode::exclusive)
sharing_mode = oboe::SharingMode::Exclusive;
// The builder set methods can be chained for convenience.
oboe::AudioStreamBuilder builder;
auto result = builder.setSharingMode(sharing_mode)
->setPerformanceMode(oboe::PerformanceMode::LowLatency)
->setChannelCount(stream->getFormat().channels())
->setSampleRate(stream->getFormat().rate())
->setFormat(oboe::AudioFormat::I16)
->setCallback(this)
->setDirection(oboe::Direction::Output)
//->setFramesPerCallback((8 * stream->getFormat().rate) / 1000)
//->setFramesPerCallback(2 * oboe::DefaultStreamValues::FramesPerBurst)
//->setFramesPerCallback(960) // 2*192)
->openManagedStream(out_stream_);
LOG(INFO, LOG_TAG) << "BufferSizeInFrames: " << out_stream_->getBufferSizeInFrames() << ", FramesPerBurst: " << out_stream_->getFramesPerBurst() << "\n";
if (result != oboe::Result::OK)
LOG(ERROR, LOG_TAG) << "Error building AudioStream: " << oboe::convertToText(result) << "\n";
if (out_stream_->getAudioApi() == oboe::AudioApi::AAudio)
{
LOG(INFO, LOG_TAG) << "AudioApi: AAudio\n";
// mLatencyTuner = std::make_unique<oboe::LatencyTuner>(*out_stream_);
mLatencyTuner = nullptr;
}
else
{
LOG(INFO, LOG_TAG) << "AudioApi: OpenSL\n";
out_stream_->setBufferSizeInFrames(4 * out_stream_->getFramesPerBurst());
}
LOG(INFO, LOG_TAG) << "Init done\n";
}
OboePlayer::~OboePlayer()
{
LOG(DEBUG, LOG_TAG) << "Destructor\n";
stop();
auto result = out_stream_->stop(std::chrono::nanoseconds(100ms).count());
if (result != oboe::Result::OK)
LOG(ERROR, LOG_TAG) << "Error in AudioStream::stop: " << oboe::convertToText(result) << "\n";
result = out_stream_->close();
if (result != oboe::Result::OK)
LOG(ERROR, LOG_TAG) << "Error in AudioStream::stop: " << oboe::convertToText(result) << "\n";
}
bool OboePlayer::needsThread() const
{
return false;
}
double OboePlayer::getCurrentOutputLatencyMillis() const
{
// Get the time that a known audio frame was presented for playing
auto result = out_stream_->getTimestamp(CLOCK_MONOTONIC);
double outputLatencyMillis = kDefaultLatency;
const int64_t kNanosPerMillisecond = 1000000;
if (result == oboe::Result::OK)
{
oboe::FrameTimestamp playedFrame = result.value();
// Get the write index for the next audio frame
int64_t writeIndex = out_stream_->getFramesWritten();
// Calculate the number of frames between our known frame and the write index
int64_t frameIndexDelta = writeIndex - playedFrame.position;
// Calculate the time which the next frame will be presented
int64_t frameTimeDelta = (frameIndexDelta * oboe::kNanosPerSecond) / (out_stream_->getSampleRate());
int64_t nextFramePresentationTime = playedFrame.timestamp + frameTimeDelta;
// Assume that the next frame will be written at the current time
using namespace std::chrono;
int64_t nextFrameWriteTime = duration_cast<nanoseconds>(steady_clock::now().time_since_epoch()).count();
// Calculate the latency
outputLatencyMillis = static_cast<double>(nextFramePresentationTime - nextFrameWriteTime) / kNanosPerMillisecond;
}
else
{
// LOG(ERROR, LOG_TAG) << "Error calculating latency: " << oboe::convertToText(result.error()) << "\n";
}
return outputLatencyMillis;
}
oboe::DataCallbackResult OboePlayer::onAudioReady(oboe::AudioStream* /*oboeStream*/, void* audioData, int32_t numFrames)
{
if (mLatencyTuner)
mLatencyTuner->tune();
double output_latency = getCurrentOutputLatencyMillis();
// LOG(INFO, LOG_TAG) << "getCurrentOutputLatencyMillis: " << output_latency << ", frames: " << numFrames << "\n";
chronos::usec delay(static_cast<int>(output_latency * 1000.));
if (!stream_->getPlayerChunk(audioData, delay, numFrames))
{
// LOG(INFO, LOG_TAG) << "Failed to get chunk. Playing silence.\n";
memset(audioData, 0, numFrames * stream_->getFormat().frameSize());
}
else
{
adjustVolume(static_cast<char*>(audioData), numFrames);
}
return oboe::DataCallbackResult::Continue;
}
void OboePlayer::start()
{
// Typically, start the stream after querying some stream information, as well as some input from the user
LOG(INFO, LOG_TAG) << "Start\n";
auto result = out_stream_->requestStart();
if (result != oboe::Result::OK)
LOG(ERROR, LOG_TAG) << "Error in requestStart: " << oboe::convertToText(result) << "\n";
}
void OboePlayer::stop()
{
LOG(INFO, LOG_TAG) << "Stop\n";
auto result = out_stream_->requestStop();
if (result != oboe::Result::OK)
LOG(ERROR, LOG_TAG) << "Error in requestStop: " << oboe::convertToText(result) << "\n";
}