audio-river/test/testPlaybackCallback.h

131 lines
4.2 KiB
C
Raw Normal View History

2015-03-03 23:17:43 +01:00
/** @file
* @author Edouard DUPIN
* @copyright 2015, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
#pragma once
2015-03-03 23:17:43 +01:00
namespace river_test_playback_callback {
class testOutCallback {
2015-03-13 23:22:17 +01:00
public:
2016-07-19 21:43:58 +02:00
ememory::SharedPtr<audio::river::Manager> m_manager;
ememory::SharedPtr<audio::river::Interface> m_interface;
2015-03-03 23:17:43 +01:00
double m_phase;
public:
2016-07-19 21:43:58 +02:00
testOutCallback(ememory::SharedPtr<audio::river::Manager> _manager, const std::string& _io="speaker") :
2015-03-03 23:17:43 +01:00
m_manager(_manager),
m_phase(0) {
//Set stereo output:
std::vector<audio::channel> channelMap;
channelMap.push_back(audio::channel_frontLeft);
channelMap.push_back(audio::channel_frontRight);
m_interface = m_manager->createOutput(48000,
channelMap,
audio::format_int16,
2015-03-13 23:22:17 +01:00
_io);
if(m_interface == nullptr) {
2015-10-14 21:21:03 +02:00
TEST_ERROR("nullptr interface");
return;
}
2015-03-03 23:17:43 +01:00
// set callback mode ...
m_interface->setOutputCallback(std::bind(&testOutCallback::onDataNeeded,
2015-03-03 23:17:43 +01:00
this,
std::placeholders::_1,
std::placeholders::_2,
std::placeholders::_3,
std::placeholders::_4,
std::placeholders::_5,
std::placeholders::_6));
2015-03-03 23:17:43 +01:00
}
void onDataNeeded(void* _data,
2015-04-13 21:49:48 +02:00
const audio::Time& _time,
2015-03-03 23:17:43 +01:00
size_t _nbChunk,
enum audio::format _format,
uint32_t _frequency,
const std::vector<audio::channel>& _map) {
if (_format != audio::format_int16) {
2015-10-14 21:21:03 +02:00
TEST_ERROR("call wrong type ... (need int16_t)");
2015-03-03 23:17:43 +01:00
}
int16_t* data = static_cast<int16_t*>(_data);
double baseCycle = 2.0*M_PI/(double)48000 * (double)550;
for (int32_t iii=0; iii<_nbChunk; iii++) {
for (int32_t jjj=0; jjj<_map.size(); jjj++) {
data[_map.size()*iii+jjj] = cos(m_phase) * 30000;
}
m_phase += baseCycle;
if (m_phase >= 2*M_PI) {
m_phase -= 2*M_PI;
}
}
}
void run() {
if(m_interface == nullptr) {
2015-10-14 21:21:03 +02:00
TEST_ERROR("nullptr interface");
return;
}
2015-03-03 23:17:43 +01:00
m_interface->start();
// wait 2 second ...
usleep(2000000);
m_interface->stop();
}
};
2015-03-13 23:22:17 +01:00
static const std::string configurationRiver =
"{\n"
" speaker:{\n"
" io:'output',\n"
" map-on:{\n"
" interface:'auto',\n"
2015-04-14 21:53:14 +02:00
" name:'default',\n"
2015-03-13 23:22:17 +01:00
" },\n"
" frequency:0,\n"
" channel-map:['front-left', 'front-right'],\n"
" type:'auto',\n"
" nb-chunk:1024,\n"
" volume-name:'MASTER'\n"
" }\n"
"}\n";
2015-03-12 23:17:14 +01:00
2015-03-03 23:17:43 +01:00
TEST(TestALL, testOutputCallBack) {
2015-04-11 09:38:30 +02:00
audio::river::initString(configurationRiver);
2016-07-19 21:43:58 +02:00
ememory::SharedPtr<audio::river::Manager> manager;
2015-04-11 09:38:30 +02:00
manager = audio::river::Manager::create("testApplication");
2015-03-03 23:17:43 +01:00
2015-10-14 21:21:03 +02:00
TEST_INFO("test output (callback mode)");
2016-07-19 21:43:58 +02:00
ememory::SharedPtr<testOutCallback> process = ememory::makeShared<testOutCallback>(manager, "speaker");
2015-03-13 23:22:17 +01:00
ASSERT_NE(process, nullptr);
2015-03-03 23:17:43 +01:00
process->run();
process.reset();
usleep(500000);
2015-04-11 09:38:30 +02:00
audio::river::unInit();
2015-03-03 23:17:43 +01:00
}
TEST(TestALL, testOutputCallBackPulse) {
2015-04-11 09:38:30 +02:00
audio::river::initString(configurationRiver);
2016-07-19 21:43:58 +02:00
ememory::SharedPtr<audio::river::Manager> manager;
2015-04-11 09:38:30 +02:00
manager = audio::river::Manager::create("testApplication");
2015-03-03 23:17:43 +01:00
2015-10-14 21:21:03 +02:00
TEST_INFO("test output (callback mode)");
2016-07-19 21:43:58 +02:00
ememory::SharedPtr<testOutCallback> process = ememory::makeShared<testOutCallback>(manager, "speaker-pulse");
2015-03-03 23:17:43 +01:00
process->run();
process.reset();
usleep(500000);
2015-04-11 09:38:30 +02:00
audio::river::unInit();
2015-03-03 23:17:43 +01:00
}
TEST(TestALL, testOutputCallBackJack) {
2015-04-11 09:38:30 +02:00
audio::river::initString(configurationRiver);
2016-07-19 21:43:58 +02:00
ememory::SharedPtr<audio::river::Manager> manager;
2015-04-11 09:38:30 +02:00
manager = audio::river::Manager::create("testApplication");
2015-03-03 23:17:43 +01:00
2015-10-14 21:21:03 +02:00
TEST_INFO("test output (callback mode)");
2016-07-19 21:43:58 +02:00
ememory::SharedPtr<testOutCallback> process = ememory::makeShared<testOutCallback>(manager, "speaker-jack");
2015-03-03 23:17:43 +01:00
process->run();
process.reset();
usleep(500000);
2015-04-11 09:38:30 +02:00
audio::river::unInit();
2015-03-03 23:17:43 +01:00
}
};