audio-river/test/testRecordCallback.cpp

106 lines
3.4 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 MPL v2.0 (see license file)
2015-03-03 23:17:43 +01:00
*/
2016-10-02 22:19:26 +02:00
#include <test-debug/debug.hpp>
2017-11-07 13:38:04 +01:00
#include <audio/river/river.hpp>
#include <audio/river/Manager.hpp>
#include <audio/river/Interface.hpp>
#include <etest/etest.hpp>
#include <etk/etk.hpp>
extern "C" {
#include <math.h>
}
#include <ethread/Thread.hpp>
#include <ethread/tools.hpp>
2015-03-12 22:28:15 +01:00
2015-03-03 23:17:43 +01:00
namespace river_test_record_callback {
2017-08-28 00:08:50 +02:00
static const etk::String configurationRiver =
2015-03-13 23:22:17 +01:00
"{\n"
" microphone:{\n"
" io:'input',\n"
" map-on:{\n"
" interface:'auto',\n"
" name:'default',\n"
" },\n"
" frequency:0,\n"
" channel-map:['front-left', 'front-right'],\n"
" type:'auto',\n"
" nb-chunk:1024\n"
" }\n"
"}\n";
2015-03-12 23:17:14 +01:00
2015-03-03 23:17:43 +01:00
class testInCallback {
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
public:
2017-08-28 00:08:50 +02:00
testInCallback(ememory::SharedPtr<audio::river::Manager> _manager, const etk::String& _input="microphone") :
2015-03-04 22:15:35 +01:00
m_manager(_manager) {
2015-03-03 23:17:43 +01:00
//Set stereo output:
2017-08-28 00:08:50 +02:00
etk::Vector<audio::channel> channelMap;
2015-03-03 23:17:43 +01:00
m_interface = m_manager->createInput(48000,
channelMap,
audio::format_int16,
2015-03-13 23:22:17 +01:00
_input);
2018-06-19 22:13:48 +02:00
if(m_interface == null) {
TEST_ERROR("null interface");
return;
}
2015-03-03 23:17:43 +01:00
// set callback mode ...
2017-09-26 15:57:44 +02:00
m_interface->setInputCallback([=](const void* _data,
const audio::Time& _time,
size_t _nbChunk,
enum audio::format _format,
uint32_t _frequency,
const etk::Vector<audio::channel>& _map) {
onDataReceived(_data, _time, _nbChunk, _format, _frequency, _map);
});
2015-03-03 23:17:43 +01:00
}
void onDataReceived(const 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,
2017-08-28 00:08:50 +02:00
const etk::Vector<audio::channel>& _map) {
2015-03-03 23:17:43 +01:00
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
}
2018-10-23 22:19:32 +02:00
//TEST_SAVE_FILE_MACRO(int16_t, "REC_INPUT.raw", _data, _nbChunk * _map.size());
2015-03-03 23:17:43 +01:00
const int16_t* data = static_cast<const int16_t*>(_data);
int64_t value = 0;
for (size_t iii=0; iii<_nbChunk*_map.size(); ++iii) {
2017-09-14 00:59:21 +02:00
value += etk::abs(data[iii]);
2015-03-03 23:17:43 +01:00
}
value /= (_nbChunk*_map.size());
2015-10-14 21:21:03 +02:00
TEST_INFO("Get data ... average=" << int32_t(value));
2015-03-03 23:17:43 +01:00
}
void run() {
2018-06-19 22:13:48 +02:00
if(m_interface == null) {
TEST_ERROR("null interface");
return;
}
2015-03-03 23:17:43 +01:00
m_interface->start();
// wait 2 second ...
2017-09-26 15:57:44 +02:00
ethread::sleepMilliSeconds(1000*(20));
2015-03-03 23:17:43 +01:00
m_interface->stop();
}
};
TEST(TestALL, testInputCallBack) {
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-10-14 21:21:03 +02:00
TEST_INFO("test input (callback mode)");
2016-07-19 21:43:58 +02:00
ememory::SharedPtr<testInCallback> process = ememory::makeShared<testInCallback>(manager);
2015-03-03 23:17:43 +01:00
process->run();
process.reset();
2017-09-14 00:59:21 +02:00
ethread::sleepMilliSeconds((500));
2015-04-11 09:38:30 +02:00
audio::river::unInit();
2015-03-03 23:17:43 +01:00
}
};