2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Audio-out test implementation
|
|
|
|
* \author Sebastian Sumpf
|
|
|
|
* \author Christian Helmuth
|
|
|
|
* \date 2009-12-03
|
|
|
|
*
|
|
|
|
* The test program plays several tracks simultaneously to the Audio_out
|
|
|
|
* service. See README for the configuration.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 20:44:47 +00:00
|
|
|
* Copyright (C) 2009-2013 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
2013-01-10 11:10:41 +00:00
|
|
|
#include <audio_out_session/connection.h>
|
2011-12-22 15:19:25 +00:00
|
|
|
#include <base/printf.h>
|
|
|
|
#include <base/sleep.h>
|
2012-12-20 16:34:33 +00:00
|
|
|
#include <rom_session/connection.h>
|
|
|
|
#include <dataspace/client.h>
|
2011-12-22 15:19:25 +00:00
|
|
|
#include <os/config.h>
|
|
|
|
|
2012-12-20 16:34:33 +00:00
|
|
|
|
|
|
|
using namespace Genode;
|
|
|
|
|
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
using namespace Genode;
|
|
|
|
using namespace Audio_out;
|
|
|
|
|
|
|
|
static const bool verbose = false;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
CHN_CNT = 2, /* number of channels */
|
2012-12-20 16:34:33 +00:00
|
|
|
FRAME_SIZE = sizeof(float),
|
2011-12-22 15:19:25 +00:00
|
|
|
PERIOD_CSIZE = FRAME_SIZE * PERIOD, /* size of channel packet (bytes) */
|
|
|
|
PERIOD_FSIZE = CHN_CNT * PERIOD_CSIZE, /* size of period in file (bytes) */
|
|
|
|
};
|
|
|
|
|
2012-12-20 16:34:33 +00:00
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
static const char *channel_names[] = { "front left", "front right" };
|
|
|
|
|
|
|
|
|
|
|
|
class Track : Thread<8192>
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
const char *_file;
|
|
|
|
Audio_out::Connection *_audio_out[CHN_CNT];
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2012-12-20 16:34:33 +00:00
|
|
|
Track(const char *file) : Thread("track"), _file(file)
|
2011-12-22 15:19:25 +00:00
|
|
|
{
|
|
|
|
for (int i = 0; i < CHN_CNT; ++i) {
|
2012-12-20 16:34:33 +00:00
|
|
|
/* allocation signal for first channel only */
|
2011-12-22 15:19:25 +00:00
|
|
|
_audio_out[i] = new (env()->heap())
|
2012-12-20 16:34:33 +00:00
|
|
|
Audio_out::Connection(channel_names[i],
|
|
|
|
i == 0 ? true : false);
|
2011-12-22 15:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void entry()
|
|
|
|
{
|
|
|
|
char *base;
|
|
|
|
Dataspace_capability ds_cap;
|
|
|
|
|
|
|
|
try {
|
|
|
|
Rom_connection rom(_file);
|
|
|
|
rom.on_destruction(Rom_connection::KEEP_OPEN);
|
|
|
|
ds_cap = rom.dataspace();
|
|
|
|
base = env()->rm_session()->attach(ds_cap);
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
PDBG("Error: Could not open: %s", _file);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Dataspace_client ds_client(ds_cap);
|
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
PDBG("%s size is %zu Bytes (attached to %p)",
|
|
|
|
_file, ds_client.size(), base);
|
|
|
|
|
2012-12-20 16:34:33 +00:00
|
|
|
size_t file_size = ds_client.size();
|
|
|
|
for (int i = 0; i < CHN_CNT; ++i)
|
|
|
|
_audio_out[i]->start();
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
|
|
|
|
for (size_t offset = 0, cnt = 1;
|
|
|
|
offset < file_size;
|
|
|
|
offset += PERIOD_FSIZE, ++cnt) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The current chunk (in number of frames of one channel)
|
|
|
|
* is the size of the period except at the end of the
|
|
|
|
* file.
|
|
|
|
*/
|
|
|
|
size_t chunk = (offset + PERIOD_FSIZE > file_size)
|
|
|
|
? (file_size - offset) / CHN_CNT / FRAME_SIZE
|
|
|
|
: PERIOD;
|
|
|
|
|
2012-12-20 16:34:33 +00:00
|
|
|
Packet *p[CHN_CNT];
|
|
|
|
while (1)
|
|
|
|
try {
|
|
|
|
p[0] = _audio_out[0]->stream()->alloc();
|
|
|
|
break;
|
|
|
|
} catch (Audio_out::Stream::Alloc_failed) {
|
|
|
|
_audio_out[0]->wait_for_alloc();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned pos = _audio_out[0]->stream()->packet_position(p[0]);
|
|
|
|
/* sync other channels with first one */
|
|
|
|
for (int chn = 1; chn < CHN_CNT; ++chn)
|
|
|
|
p[chn] = _audio_out[chn]->stream()->get(pos);
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
/* copy channel contents into sessions */
|
|
|
|
float *content = (float *)(base + offset);
|
|
|
|
for (unsigned c = 0; c < CHN_CNT * chunk; c += CHN_CNT)
|
|
|
|
for (int i = 0; i < CHN_CNT; ++i)
|
2012-12-20 16:34:33 +00:00
|
|
|
p[i]->content()[c / 2] = content[c + i];
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
/* handle last packet gracefully */
|
|
|
|
if (chunk < PERIOD) {
|
|
|
|
for (int i = 0; i < CHN_CNT; ++i)
|
2012-12-20 16:34:33 +00:00
|
|
|
memset(p[i]->content() + chunk,
|
2011-12-22 15:19:25 +00:00
|
|
|
0, PERIOD_CSIZE - FRAME_SIZE * chunk);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (verbose)
|
2014-02-07 07:48:23 +00:00
|
|
|
PDBG("%s submit packet %u", _file,
|
2012-12-20 16:34:33 +00:00
|
|
|
_audio_out[0]->stream()->packet_position((p[0])));
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2012-12-20 16:34:33 +00:00
|
|
|
for (int i = 0; i < CHN_CNT; i++)
|
|
|
|
_audio_out[i]->submit(p[i]);
|
2011-12-22 15:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ready()
|
|
|
|
{
|
|
|
|
start();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int process_config(const char ***files)
|
|
|
|
{
|
|
|
|
enum { MAX_FILES = 16 };
|
|
|
|
|
|
|
|
static char file_mem[64][MAX_FILES];
|
|
|
|
static const char *file_p[MAX_FILES];
|
|
|
|
int cnt = 0;
|
|
|
|
|
|
|
|
Xml_node config_node = config()->xml_node();
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < config_node.num_sub_nodes(); ++i) {
|
|
|
|
|
|
|
|
if (!(i < MAX_FILES)) {
|
|
|
|
PWRN("Test supports max %d files. Skipping...", MAX_FILES);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Xml_node file_node = config_node.sub_node(i);
|
|
|
|
|
|
|
|
if (!config_node.has_type("config")) {
|
|
|
|
printf("Error: Root node of config file is not a <config> tag.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file_node.has_type("filename")) {
|
|
|
|
memcpy(file_mem[cnt], file_node.content_addr(), file_node.content_size());
|
|
|
|
file_p[cnt] = file_mem[cnt];
|
|
|
|
file_mem[cnt][file_node.content_size()] = '\0';
|
|
|
|
cnt++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*files = file_p;
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2012-12-20 16:34:33 +00:00
|
|
|
PDBG("--- Audio_out test ---\n");
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
const char *defaults[] = { "1.raw", "2.raw" };
|
|
|
|
const char **files = defaults;
|
|
|
|
int cnt = 2;
|
|
|
|
|
|
|
|
try {
|
|
|
|
cnt = process_config(&files);
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
PWRN("Couldn't get input files, failing back to defaults");
|
|
|
|
}
|
|
|
|
|
|
|
|
Track *track[cnt];
|
2012-12-20 16:34:33 +00:00
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
for (int i = 0; i < cnt; ++i) {
|
2012-12-20 16:34:33 +00:00
|
|
|
track[i] = new (env()->heap()) Track(files[i]);
|
2011-12-22 15:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* start playback after constrution of all tracks */
|
|
|
|
for (int i = 0; i < cnt; i++)
|
|
|
|
track[i]->ready();
|
|
|
|
|
|
|
|
sleep_forever();
|
|
|
|
return 0;
|
|
|
|
}
|
2012-12-20 16:34:33 +00:00
|
|
|
|
|
|
|
|