mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-10 15:46:42 +02:00
alsa
git-svn-id: svn://elaine/murooma/trunk@204 d8a302eb-03bc-478d-80e4-98257eca68ef
This commit is contained in:
parent
f269b6deb8
commit
d4fcf84fb8
4 changed files with 128 additions and 15 deletions
|
@ -1,7 +1,7 @@
|
||||||
VERSION = 0.01
|
VERSION = 0.01
|
||||||
CC = /usr/bin/g++
|
CC = /usr/bin/g++
|
||||||
CFLAGS = -std=gnu++0x -Wall -Wno-unused-function -O3 -D_REENTRANT -DVERSION=\"$(VERSION)\" -I..
|
CFLAGS = -std=gnu++0x -Wall -Wno-unused-function -O3 -D_REENTRANT -DVERSION=\"$(VERSION)\" -I..
|
||||||
LDFLAGS = -lrt -lpthread -lportaudio -lboost_system -lboost_program_options
|
LDFLAGS = -lrt -lpthread -lportaudio -lboost_system -lboost_program_options -lasound
|
||||||
|
|
||||||
OBJ = snapClient.o stream.o ../common/chunk.o ../common/log.o
|
OBJ = snapClient.o stream.o ../common/chunk.o ../common/log.o
|
||||||
BIN = snapclient
|
BIN = snapclient
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include <boost/asio.hpp>
|
#include <boost/asio.hpp>
|
||||||
#include <boost/lexical_cast.hpp>
|
#include <boost/lexical_cast.hpp>
|
||||||
#include <boost/program_options.hpp>
|
#include <boost/program_options.hpp>
|
||||||
|
#include <alsa/asoundlib.h>
|
||||||
|
|
||||||
#include "common/chunk.h"
|
#include "common/chunk.h"
|
||||||
#include "common/utils.h"
|
#include "common/utils.h"
|
||||||
|
@ -34,6 +35,7 @@ short channels;
|
||||||
uint16_t bps;
|
uint16_t bps;
|
||||||
Stream* stream;
|
Stream* stream;
|
||||||
|
|
||||||
|
#define PCM_DEVICE "default"
|
||||||
|
|
||||||
|
|
||||||
void socketRead(tcp::socket* socket, void* to, size_t bytes)
|
void socketRead(tcp::socket* socket, void* to, size_t bytes)
|
||||||
|
@ -50,7 +52,7 @@ void socketRead(tcp::socket* socket, void* to, size_t bytes)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void player(const std::string& ip, int port)
|
void receiver(const std::string& ip, int port)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -109,6 +111,106 @@ void player(const std::string& ip, int port)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void player(Stream* stream)
|
||||||
|
{
|
||||||
|
unsigned int pcm, tmp, dir, rate;
|
||||||
|
int channels, seconds;
|
||||||
|
snd_pcm_t *pcm_handle;
|
||||||
|
snd_pcm_hw_params_t *params;
|
||||||
|
snd_pcm_uframes_t frames;
|
||||||
|
char *buff;
|
||||||
|
int buff_size;
|
||||||
|
|
||||||
|
rate = stream->getSampleRate();
|
||||||
|
channels = stream->getChannels();
|
||||||
|
|
||||||
|
/* Open the PCM device in playback mode */
|
||||||
|
if (pcm = snd_pcm_open(&pcm_handle, PCM_DEVICE,
|
||||||
|
SND_PCM_STREAM_PLAYBACK, 0) < 0)
|
||||||
|
printf("ERROR: Can't open \"%s\" PCM device. %s\n",
|
||||||
|
PCM_DEVICE, snd_strerror(pcm));
|
||||||
|
|
||||||
|
/* Allocate parameters object and fill it with default values*/
|
||||||
|
snd_pcm_hw_params_alloca(¶ms);
|
||||||
|
|
||||||
|
snd_pcm_hw_params_any(pcm_handle, params);
|
||||||
|
|
||||||
|
/* Set parameters */
|
||||||
|
if (pcm = snd_pcm_hw_params_set_access(pcm_handle, params,
|
||||||
|
SND_PCM_ACCESS_RW_INTERLEAVED) < 0)
|
||||||
|
printf("ERROR: Can't set interleaved mode. %s\n", snd_strerror(pcm));
|
||||||
|
|
||||||
|
if (pcm = snd_pcm_hw_params_set_format(pcm_handle, params,
|
||||||
|
SND_PCM_FORMAT_S16_LE) < 0)
|
||||||
|
printf("ERROR: Can't set format. %s\n", snd_strerror(pcm));
|
||||||
|
|
||||||
|
if (pcm = snd_pcm_hw_params_set_channels(pcm_handle, params, channels) < 0)
|
||||||
|
printf("ERROR: Can't set channels number. %s\n", snd_strerror(pcm));
|
||||||
|
|
||||||
|
if (pcm = snd_pcm_hw_params_set_rate_near(pcm_handle, params, &rate, 0) < 0)
|
||||||
|
printf("ERROR: Can't set rate. %s\n", snd_strerror(pcm));
|
||||||
|
|
||||||
|
long unsigned int periodsize = 2*rate / 50;
|
||||||
|
if (pcm = snd_pcm_hw_params_set_buffer_size_near(pcm_handle, params, &periodsize) < 0)
|
||||||
|
printf("Unable to set buffer size %li: %s\n", (long int)periodsize, snd_strerror(pcm));
|
||||||
|
|
||||||
|
/* Write parameters */
|
||||||
|
if (pcm = snd_pcm_hw_params(pcm_handle, params) < 0)
|
||||||
|
printf("ERROR: Can't set harware parameters. %s\n", snd_strerror(pcm));
|
||||||
|
|
||||||
|
/* Resume information */
|
||||||
|
printf("PCM name: '%s'\n", snd_pcm_name(pcm_handle));
|
||||||
|
|
||||||
|
printf("PCM state: %s\n", snd_pcm_state_name(snd_pcm_state(pcm_handle)));
|
||||||
|
|
||||||
|
snd_pcm_hw_params_get_channels(params, &tmp);
|
||||||
|
printf("channels: %i ", tmp);
|
||||||
|
|
||||||
|
if (tmp == 1)
|
||||||
|
printf("(mono)\n");
|
||||||
|
else if (tmp == 2)
|
||||||
|
printf("(stereo)\n");
|
||||||
|
|
||||||
|
snd_pcm_hw_params_get_rate(params, &tmp, 0);
|
||||||
|
printf("rate: %d bps\n", tmp);
|
||||||
|
|
||||||
|
printf("seconds: %d\n", seconds);
|
||||||
|
|
||||||
|
/* Allocate buffer to hold single period */
|
||||||
|
snd_pcm_hw_params_get_period_size(params, &frames, 0);
|
||||||
|
printf("frames: %d\n", frames);
|
||||||
|
|
||||||
|
buff_size = frames * channels * 2 /* 2 -> sample size */;
|
||||||
|
buff = (char *) malloc(buff_size);
|
||||||
|
|
||||||
|
snd_pcm_hw_params_get_period_time(params, &tmp, NULL);
|
||||||
|
printf("period time: %d\n", tmp);
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
/* if (pcm = read(0, buff, buff_size) == 0) {
|
||||||
|
printf("Early end of file.\n");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
snd_pcm_sframes_t avail;
|
||||||
|
snd_pcm_sframes_t delay;
|
||||||
|
snd_pcm_avail_delay(pcm_handle, &avail, &delay);
|
||||||
|
|
||||||
|
stream->getPlayerChunk(buff, (float)delay / 48000.f, frames);
|
||||||
|
|
||||||
|
if (pcm = snd_pcm_writei(pcm_handle, buff, frames) == -EPIPE) {
|
||||||
|
printf("XRUN.\n");
|
||||||
|
snd_pcm_prepare(pcm_handle);
|
||||||
|
} else if (pcm < 0) {
|
||||||
|
printf("ERROR. Can't write to PCM device. %s\n", snd_strerror(pcm));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
snd_pcm_drain(pcm_handle);
|
||||||
|
snd_pcm_close(pcm_handle);
|
||||||
|
free(buff);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* This routine will be called by the PortAudio engine when audio is needed.
|
/* This routine will be called by the PortAudio engine when audio is needed.
|
||||||
|
@ -256,11 +358,12 @@ int main (int argc, char *argv[])
|
||||||
|
|
||||||
stream = new Stream(sampleRate, channels, bps);
|
stream = new Stream(sampleRate, channels, bps);
|
||||||
stream->setBufferLen(bufferMs);
|
stream->setBufferLen(bufferMs);
|
||||||
PaError paError;
|
// PaError paError;
|
||||||
PaStream* paStream = initAudio(paError, sampleRate, channels, bps);
|
// PaStream* paStream = initAudio(paError, sampleRate, channels, bps);
|
||||||
stream->setLatency(1000*Pa_GetStreamInfo(paStream)->outputLatency);
|
// stream->setLatency(1000*Pa_GetStreamInfo(paStream)->outputLatency);
|
||||||
|
|
||||||
std::thread playerThread(player, ip, port);
|
std::thread receiverThread(receiver, ip, port);
|
||||||
|
std::thread playerThread(player, stream);
|
||||||
|
|
||||||
std::string cmd;
|
std::string cmd;
|
||||||
while (true && (argc > 3))
|
while (true && (argc > 3))
|
||||||
|
|
|
@ -122,9 +122,14 @@ void Stream::resetBuffers()
|
||||||
|
|
||||||
void Stream::getPlayerChunk(void* outputBuffer, double outputBufferDacTime, unsigned long framesPerBuffer)
|
void Stream::getPlayerChunk(void* outputBuffer, double outputBufferDacTime, unsigned long framesPerBuffer)
|
||||||
{
|
{
|
||||||
|
if (outputBufferDacTime > 1)
|
||||||
|
outputBufferDacTime = 0;
|
||||||
|
else
|
||||||
|
outputBufferDacTime *= 1000;
|
||||||
|
|
||||||
//cout << "framesPerBuffer: " << framesPerBuffer << "\tms: " << framesPerBuffer*2 / PLAYER_CHUNK_MS_SIZE << "\t" << PLAYER_CHUNK_SIZE << "\n";
|
//cout << "framesPerBuffer: " << framesPerBuffer << "\tms: " << framesPerBuffer*2 / PLAYER_CHUNK_MS_SIZE << "\t" << PLAYER_CHUNK_SIZE << "\n";
|
||||||
// int msBuffer = floor(framesPerBuffer / (hz_/1000));
|
int msBuffer = framesPerBuffer / (hz_/1000);
|
||||||
//cout << msBuffer << " ms, " << framesPerBuffer << "\n";
|
//cout << msBuffer << " ms, " << framesPerBuffer << "\t" << hz_/1000 << "\n";
|
||||||
int ticks = 0;
|
int ticks = 0;
|
||||||
long currentTick = getTickCount();
|
long currentTick = getTickCount();
|
||||||
if (lastTick == 0)
|
if (lastTick == 0)
|
||||||
|
@ -144,7 +149,7 @@ void Stream::getPlayerChunk(void* outputBuffer, double outputBufferDacTime, unsi
|
||||||
resetBuffers();
|
resetBuffers();
|
||||||
if (sleep < -10)
|
if (sleep < -10)
|
||||||
{
|
{
|
||||||
sleep = Chunk::getAge(getSilentPlayerChunk(outputBuffer, framesPerBuffer)) - bufferMs + latencyMs;
|
sleep = Chunk::getAge(getSilentPlayerChunk(outputBuffer, framesPerBuffer)) - bufferMs + latencyMs + outputBufferDacTime;
|
||||||
std::cerr << "Sleep: " << sleep << ", chunks: " << chunks.size() << "\n";
|
std::cerr << "Sleep: " << sleep << ", chunks: " << chunks.size() << "\n";
|
||||||
// std::clog << kLogNotice << "sleep: " << sleep << std::endl;
|
// std::clog << kLogNotice << "sleep: " << sleep << std::endl;
|
||||||
// if (sleep > -msBuffer/2)
|
// if (sleep > -msBuffer/2)
|
||||||
|
@ -156,7 +161,7 @@ void Stream::getPlayerChunk(void* outputBuffer, double outputBufferDacTime, unsi
|
||||||
// std::clog << kLogNotice << "sleep: " << sleep << std::endl;
|
// std::clog << kLogNotice << "sleep: " << sleep << std::endl;
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
sleep = Chunk::getAge(getNextPlayerChunk(outputBuffer, framesPerBuffer)) - bufferMs + latencyMs;
|
sleep = Chunk::getAge(getNextPlayerChunk(outputBuffer, framesPerBuffer)) - bufferMs + latencyMs + outputBufferDacTime;
|
||||||
usleep(100);
|
usleep(100);
|
||||||
// std::clog << kLogNotice << "age: " << age << std::endl;
|
// std::clog << kLogNotice << "age: " << age << std::endl;
|
||||||
if (sleep < 0)
|
if (sleep < 0)
|
||||||
|
@ -179,12 +184,9 @@ void Stream::getPlayerChunk(void* outputBuffer, double outputBufferDacTime, unsi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int age = Chunk::getAge(getNextPlayerChunk(outputBuffer, framesPerBuffer, correction)) - bufferMs + latencyMs;// + outputBufferDacTime*1000;
|
int age = Chunk::getAge(getNextPlayerChunk(outputBuffer, framesPerBuffer, correction)) - bufferMs + latencyMs + outputBufferDacTime;// + outputBufferDacTime*1000;
|
||||||
|
|
||||||
|
|
||||||
if (outputBufferDacTime < 1)
|
|
||||||
age += outputBufferDacTime*1000;
|
|
||||||
|
|
||||||
// if (pCardBuffer->full())
|
// if (pCardBuffer->full())
|
||||||
// age += 4*cardBuffer;
|
// age += 4*cardBuffer;
|
||||||
|
|
||||||
|
@ -226,7 +228,7 @@ void Stream::getPlayerChunk(void* outputBuffer, double outputBufferDacTime, unsi
|
||||||
lastUpdate = now;
|
lastUpdate = now;
|
||||||
median = pBuffer->median();
|
median = pBuffer->median();
|
||||||
shortMedian = pShortBuffer->median();
|
shortMedian = pShortBuffer->median();
|
||||||
std::cerr << "Chunk: " << age << "\t" << pMiniBuffer->median() << "\t" << shortMedian << "\t" << median << "\t" << pBuffer->size() << "\t" << cardBuffer << "\t" << outputBufferDacTime*1000 << "\n";
|
std::cerr << "Chunk: " << age << "\t" << pMiniBuffer->median() << "\t" << shortMedian << "\t" << median << "\t" << pBuffer->size() << "\t" << cardBuffer << "\t" << outputBufferDacTime << "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,14 @@ public:
|
||||||
void getPlayerChunk(void* outputBuffer, double outputBufferDacTime, unsigned long framesPerBuffer);
|
void getPlayerChunk(void* outputBuffer, double outputBufferDacTime, unsigned long framesPerBuffer);
|
||||||
void setBufferLen(size_t bufferLenMs);
|
void setBufferLen(size_t bufferLenMs);
|
||||||
void setLatency(size_t latency);
|
void setLatency(size_t latency);
|
||||||
|
size_t getSampleRate() const
|
||||||
|
{
|
||||||
|
return hz_;
|
||||||
|
}
|
||||||
|
size_t getChannels() const
|
||||||
|
{
|
||||||
|
return channels_;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
time_point_ms getNextPlayerChunk(void* outputBuffer, unsigned long framesPerBuffer, int correction = 0);
|
time_point_ms getNextPlayerChunk(void* outputBuffer, unsigned long framesPerBuffer, int correction = 0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue