mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-01 11:17:36 +02:00
275 lines
7.2 KiB
C++
275 lines
7.2 KiB
C++
#include "stream.h"
|
|
#include <iostream>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include "common/log.h"
|
|
|
|
using namespace std;
|
|
|
|
Stream::Stream(const SampleFormat& sampleFormat) : format(format_), format_(sampleFormat), sleep(0), median(0), shortMedian(0), lastUpdate(0)
|
|
{
|
|
pBuffer = new DoubleBuffer<int>(500);
|
|
pShortBuffer = new DoubleBuffer<int>(100);
|
|
pMiniBuffer = new DoubleBuffer<int>(20);
|
|
pCardBuffer = new DoubleBuffer<int>(50);
|
|
bufferMs = 500;
|
|
}
|
|
|
|
|
|
|
|
void Stream::setBufferLen(size_t bufferLenMs)
|
|
{
|
|
bufferMs = bufferLenMs;
|
|
}
|
|
|
|
|
|
|
|
void Stream::clearChunks()
|
|
{
|
|
while (chunks.size() > 0)
|
|
chunks.pop();
|
|
}
|
|
|
|
|
|
void Stream::addChunk(PcmChunk* chunk)
|
|
{
|
|
while (chunks.size() * chunk->getDuration() > 10000)
|
|
chunks.pop();
|
|
chunks.push(shared_ptr<PcmChunk>(chunk));
|
|
// cout << "new chunk: " << chunk->getDuration() << ", Chunks: " << chunks.size() << "\n";
|
|
}
|
|
|
|
|
|
|
|
time_point_ms Stream::getSilentPlayerChunk(void* outputBuffer, unsigned long framesPerBuffer)
|
|
{
|
|
if (!chunk)
|
|
chunk = chunks.pop();
|
|
time_point_ms tp = chunk->timePoint();
|
|
memset(outputBuffer, 0, framesPerBuffer * format.frameSize);
|
|
return tp;
|
|
}
|
|
|
|
|
|
/*
|
|
time_point_ms Stream::seekTo(const time_point_ms& to)
|
|
{
|
|
if (!chunk)
|
|
chunk = chunks.pop();
|
|
// time_point_ms tp = chunk->timePoint();
|
|
while (to > chunk->timePoint())// + std::chrono::milliseconds((long int)chunk->getDuration()))//
|
|
{
|
|
chunk = chunks.pop();
|
|
cout << "\nto: " << Chunk::getAge(to) << "\t chunk: " << Chunk::getAge(chunk->timePoint()) << "\n";
|
|
cout << "diff: " << std::chrono::duration_cast<std::chrono::milliseconds>((to - chunk->timePoint())).count() << "\n";
|
|
}
|
|
chunk->seek(std::chrono::duration_cast<std::chrono::milliseconds>(to - chunk->timePoint()).count() * format.msRate());
|
|
return chunk->timePoint();
|
|
}
|
|
*/
|
|
|
|
|
|
time_point_ms Stream::seek(long ms)
|
|
{
|
|
if (!chunk)
|
|
chunk = chunks.pop();
|
|
|
|
if (ms <= 0)
|
|
return chunk->timePoint();
|
|
|
|
// time_point_ms tp = chunk->timePoint();
|
|
while (ms > chunk->getTimeLeft())
|
|
{
|
|
chunk = chunks.pop();
|
|
ms -= min(ms, (long)chunk->getTimeLeft());
|
|
}
|
|
chunk->seek(ms * format.msRate());
|
|
return chunk->timePoint();
|
|
}
|
|
|
|
|
|
time_point_ms Stream::getNextPlayerChunk(void* outputBuffer, unsigned long framesPerBuffer, int correction)
|
|
{
|
|
if (!chunk)
|
|
chunk = chunks.pop();
|
|
|
|
time_point_ms tp = chunk->timePoint();
|
|
int read = 0;
|
|
int toRead = framesPerBuffer + correction*format.msRate();
|
|
char* buffer;
|
|
|
|
if (correction != 0)
|
|
{
|
|
int msBuffer = floor(framesPerBuffer / format.msRate());
|
|
if (abs(correction) > msBuffer / 2)
|
|
correction = copysign(msBuffer / 2, correction);
|
|
buffer = (char*)malloc(toRead * format.frameSize);
|
|
}
|
|
else
|
|
buffer = (char*)outputBuffer;
|
|
|
|
while (read < toRead)
|
|
{
|
|
read += chunk->readFrames(buffer + read*format.frameSize, toRead - read);
|
|
if (chunk->isEndOfChunk())
|
|
chunk = chunks.pop();
|
|
}
|
|
|
|
if (correction != 0)
|
|
{
|
|
float factor = (float)toRead / framesPerBuffer;//(float)(framesPerBuffer*channels_);
|
|
std::cout << "correction: " << correction << ", factor: " << factor << "\n";
|
|
float idx = 0;
|
|
for (size_t n=0; n<framesPerBuffer; ++n)
|
|
{
|
|
size_t index(floor(idx));// = (int)(ceil(n*factor));
|
|
memcpy((char*)outputBuffer + n*format.frameSize, buffer + index*format.frameSize, format.frameSize);
|
|
idx += factor;
|
|
}
|
|
free(buffer);
|
|
}
|
|
|
|
return tp;
|
|
}
|
|
|
|
|
|
|
|
void Stream::updateBuffers(int age)
|
|
{
|
|
pBuffer->add(age);
|
|
pMiniBuffer->add(age);
|
|
pShortBuffer->add(age);
|
|
}
|
|
|
|
|
|
void Stream::resetBuffers()
|
|
{
|
|
pBuffer->clear();
|
|
pMiniBuffer->clear();
|
|
pShortBuffer->clear();
|
|
}
|
|
|
|
|
|
void Stream::getPlayerChunk(void* outputBuffer, double outputBufferDacTime, unsigned long framesPerBuffer)
|
|
{
|
|
//cout << "framesPerBuffer: " << framesPerBuffer << "\tms: " << framesPerBuffer*2 / PLAYER_CHUNK_MS_SIZE << "\t" << PLAYER_CHUNK_SIZE << "\n";
|
|
int msBuffer = framesPerBuffer / format_.msRate();
|
|
//cout << msBuffer << " ms, " << framesPerBuffer << "\t" << format_.rate/1000 << "\n";
|
|
int ticks = 0;
|
|
long currentTick = getTickCount();
|
|
if (lastTick == 0)
|
|
lastTick = currentTick;
|
|
ticks = currentTick - lastTick;
|
|
lastTick = currentTick;
|
|
|
|
int cardBuffer = 0;
|
|
if (ticks > 1)
|
|
pCardBuffer->add(ticks);
|
|
if (pCardBuffer->full())
|
|
cardBuffer = pCardBuffer->percentil(90);
|
|
|
|
int correction = 0;
|
|
if (sleep != 0)
|
|
{
|
|
resetBuffers();
|
|
if (sleep < -msBuffer/2)
|
|
{
|
|
cout << "Sleep " << sleep;
|
|
sleep = PcmChunk::getAge(getSilentPlayerChunk(outputBuffer, framesPerBuffer)) - bufferMs + outputBufferDacTime;
|
|
std::cerr << " after: " << sleep << ", chunks: " << chunks.size() << "\n";
|
|
// std::clog << kLogNotice << "sleep: " << sleep << std::endl;
|
|
// if (sleep > -msBuffer/2)
|
|
// sleep = 0;
|
|
if (sleep < -msBuffer/2)
|
|
return;
|
|
}
|
|
else if (sleep > msBuffer/2)
|
|
{
|
|
/* cout << "Sleep " << sleep;
|
|
time_point_ms ms(std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now().time_since_epoch()));
|
|
ms -= std::chrono::milliseconds((long int)(bufferMs - outputBufferDacTime));
|
|
cout << "\nms: " << Chunk::getAge(ms) << "\t chunk: " << chunk->getAge() << "\n";
|
|
sleep = Chunk::getAge(seekTo(ms)) - bufferMs + outputBufferDacTime;
|
|
cout << " after: " << sleep << "\n";
|
|
*/
|
|
if (!chunk)
|
|
chunk = chunks.pop();
|
|
while (sleep > chunk->getDuration())
|
|
{
|
|
chunk = chunks.pop();
|
|
sleep = chunk->getAge() - bufferMs + outputBufferDacTime;
|
|
// cout << "chunk->getAge() > chunk->getDuration(): " << chunk->getAge() - bufferMs + outputBufferDacTime << " > " << chunk->getDuration() << ", chunks: " << chunks.size() << ", out: " << outputBufferDacTime << ", needed: " << msBuffer << ", sleep: " << sleep << "\n";
|
|
usleep(1000);
|
|
}
|
|
cout << "seek: " << PcmChunk::getAge(seek(sleep)) - bufferMs + outputBufferDacTime << "\n";
|
|
sleep = 0;
|
|
}
|
|
else if (sleep < 0)
|
|
{
|
|
++sleep;
|
|
correction = -1;
|
|
}
|
|
else if (sleep > 0)
|
|
{
|
|
--sleep;
|
|
correction = 1;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
int age = PcmChunk::getAge(getNextPlayerChunk(outputBuffer, framesPerBuffer, correction)) - bufferMs + outputBufferDacTime;
|
|
|
|
|
|
// if (pCardBuffer->full())
|
|
// age += 4*cardBuffer;
|
|
|
|
// cout << age << "\t" << outputBufferDacTime << "\t";// << framesPerBuffer << "\t" << msBuffer << "\t" << ticks << "\t" << cardBuffer << "\t" << outputBufferDacTime << "\n";
|
|
|
|
|
|
if (sleep == 0)
|
|
{
|
|
if (pBuffer->full() && (abs(median) > 1))
|
|
{
|
|
cout << "pBuffer->full() && (abs(median) > 1): " << median << "\n";
|
|
sleep = median;
|
|
}
|
|
else if (pShortBuffer->full() && (abs(shortMedian) > 5))
|
|
{
|
|
cout << "pShortBuffer->full() && (abs(shortMedian) > 5): " << shortMedian << "\n";
|
|
sleep = shortMedian;
|
|
}
|
|
else if (pMiniBuffer->full() && (abs(pMiniBuffer->median()) > 50))
|
|
{
|
|
cout << "pMiniBuffer->full() && (abs(pMiniBuffer->mean()) > 50): " << pMiniBuffer->median() << "\n";
|
|
sleep = pMiniBuffer->mean();
|
|
}
|
|
else if (abs(age) > 200)
|
|
{
|
|
cout << "age > 50: " << age << "\n";
|
|
sleep = age;
|
|
}
|
|
}
|
|
|
|
if (sleep != 0)
|
|
std::cerr << "Sleep: " << sleep << "\n";
|
|
|
|
|
|
// std::cerr << "Chunk: " << age << "\t" << outputBufferDacTime*1000 << "\n";
|
|
if (ticks > 2)
|
|
{
|
|
// cout << age << "\n";
|
|
updateBuffers(age);
|
|
}
|
|
time_t now = time(NULL);
|
|
if (now != lastUpdate)
|
|
{
|
|
lastUpdate = now;
|
|
median = pBuffer->median();
|
|
shortMedian = pShortBuffer->median();
|
|
std::cerr << "Chunk: " << age << "\t" << pMiniBuffer->median() << "\t" << shortMedian << "\t" << median << "\t" << pBuffer->size() << "\t" << cardBuffer << "\t" << outputBufferDacTime << "\n";
|
|
}
|
|
}
|
|
|
|
|
|
|