[DEV] rm __class__
This commit is contained in:
parent
434c8097d0
commit
e83ac7620d
@ -12,10 +12,6 @@
|
||||
#include <audio/drain/EndPointRead.h>
|
||||
#include <audio/drain/Volume.h>
|
||||
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "Interface"
|
||||
|
||||
audio::river::Interface::Interface(void) :
|
||||
m_node(),
|
||||
m_name("") {
|
||||
|
@ -12,9 +12,6 @@
|
||||
#include "NodePortAudio.h"
|
||||
#include "Node.h"
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "io::Group"
|
||||
|
||||
void audio::river::io::Group::createFrom(const ejson::Document& _obj, const std::string& _name) {
|
||||
RIVER_INFO("Create Group[" << _name << "] (START) ___________________________");
|
||||
for (size_t iii=0; iii<_obj.size(); ++iii) {
|
||||
|
@ -17,9 +17,6 @@
|
||||
#include <etk/types.h>
|
||||
#include <utility>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "io::Manager"
|
||||
|
||||
#ifdef AUDIO_RIVER_BUILD_PORTAUDIO
|
||||
#include <portaudio/portaudio.h>
|
||||
#endif
|
||||
|
@ -7,10 +7,6 @@
|
||||
#include "Node.h"
|
||||
#include <audio/river/debug.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "io::Node"
|
||||
|
||||
|
||||
audio::river::io::Node::Node(const std::string& _name, const ejson::Object& _config) :
|
||||
m_config(_config),
|
||||
m_name(_name),
|
||||
|
@ -10,9 +10,6 @@
|
||||
#include <memory>
|
||||
#include <functional>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "io::NodeAEC"
|
||||
|
||||
std::shared_ptr<audio::river::io::NodeAEC> audio::river::io::NodeAEC::create(const std::string& _name, const ejson::Object& _config) {
|
||||
return std::shared_ptr<audio::river::io::NodeAEC>(new audio::river::io::NodeAEC(_name, _config));
|
||||
}
|
||||
|
@ -10,9 +10,6 @@
|
||||
#include <audio/river/debug.h>
|
||||
#include <memory>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "io::NodeFile"
|
||||
|
||||
int32_t audio::river::io::NodeFile::recordCallback(const void* _inputBuffer,
|
||||
const audio::Time& _timeInput,
|
||||
uint32_t _nbChunk,
|
||||
|
@ -10,9 +10,6 @@
|
||||
#include <memory>
|
||||
#include <functional>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "io::NodeMuxer"
|
||||
|
||||
std::shared_ptr<audio::river::io::NodeMuxer> audio::river::io::NodeMuxer::create(const std::string& _name, const ejson::Object& _config) {
|
||||
return std::shared_ptr<audio::river::io::NodeMuxer>(new audio::river::io::NodeMuxer(_name, _config));
|
||||
}
|
||||
|
@ -10,9 +10,6 @@
|
||||
#include <audio/river/debug.h>
|
||||
#include <memory>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "io::NodeOrchestra"
|
||||
|
||||
int32_t audio::river::io::NodeOrchestra::recordCallback(const void* _inputBuffer,
|
||||
const audio::Time& _timeInput,
|
||||
uint32_t _nbChunk,
|
||||
|
@ -12,9 +12,6 @@
|
||||
#include <audio/Time.h>
|
||||
#include <audio/Duration.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "io::NodePortAudio"
|
||||
|
||||
static int portAudioStreamCallback(const void *_input,
|
||||
void *_output,
|
||||
unsigned long _frameCount,
|
||||
|
@ -1,9 +1,7 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license BSD 3 clauses (see license file)
|
||||
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||
* @license APACHE v2.0 (see license file)
|
||||
*/
|
||||
|
||||
#include <ewol/ewol.h>
|
||||
@ -14,9 +12,6 @@
|
||||
#include <audio/river/widget/TemporalViewer.h>
|
||||
#include <etk/tool.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "Windows"
|
||||
|
||||
appl::Windows::Windows() :
|
||||
m_composer(nullptr) {
|
||||
addObjectType("appl::Windows");
|
||||
|
@ -1,9 +1,7 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license BSD 3 clauses (see license file)
|
||||
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||
* @license APACHE v2.0 (see license file)
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
/**
|
||||
/** @file
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2010, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license BSD 3 clauses (see license file)
|
||||
* @copyright 2015, Edouard DUPIN, all right reserved
|
||||
* @license APACHE v2.0 (see license file)
|
||||
*/
|
||||
|
||||
|
||||
|
@ -47,10 +47,6 @@
|
||||
#include "testRecordRead.h"
|
||||
#include "testVolume.h"
|
||||
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test"
|
||||
|
||||
int main(int _argc, const char** _argv) {
|
||||
// init Google test :
|
||||
::testing::InitGoogleTest(&_argc, const_cast<char **>(_argv));
|
||||
|
@ -5,9 +5,6 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test_aec"
|
||||
|
||||
namespace river_test_aec {
|
||||
|
||||
class Linker {
|
||||
@ -215,6 +212,4 @@ namespace river_test_aec {
|
||||
}
|
||||
};
|
||||
|
||||
#undef __class__
|
||||
#define __class__ nullptr
|
||||
|
||||
|
@ -7,9 +7,6 @@
|
||||
|
||||
#include <test-debug/debug.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test_echo_delay"
|
||||
|
||||
namespace river_test_echo_delay {
|
||||
class TestClass {
|
||||
private:
|
||||
@ -426,6 +423,4 @@ namespace river_test_echo_delay {
|
||||
}
|
||||
};
|
||||
|
||||
#undef __class__
|
||||
#define __class__ nullptr
|
||||
|
||||
|
@ -5,9 +5,6 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test_format"
|
||||
|
||||
namespace river_test_format {
|
||||
static const std::string configurationRiver =
|
||||
"{\n"
|
||||
@ -235,10 +232,6 @@ namespace river_test_format {
|
||||
}
|
||||
audio::river::unInit();
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
#undef __class__
|
||||
#define __class__ nullptr
|
||||
|
||||
|
@ -7,9 +7,6 @@
|
||||
|
||||
#include <test-debug/debug.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test_muxer"
|
||||
|
||||
namespace river_test_muxer {
|
||||
class TestClass {
|
||||
private:
|
||||
@ -176,6 +173,4 @@ namespace river_test_muxer {
|
||||
}
|
||||
};
|
||||
|
||||
#undef __class__
|
||||
#define __class__ nullptr
|
||||
|
||||
|
@ -5,9 +5,6 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test_playback_callback"
|
||||
|
||||
namespace river_test_playback_callback {
|
||||
|
||||
class testOutCallback {
|
||||
@ -129,10 +126,5 @@ namespace river_test_playback_callback {
|
||||
usleep(500000);
|
||||
audio::river::unInit();
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
#undef __class__
|
||||
#define __class__ nullptr
|
||||
|
||||
|
@ -5,9 +5,6 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test_playback_write"
|
||||
|
||||
namespace river_test_playback_write {
|
||||
static const std::string configurationRiver =
|
||||
"{\n"
|
||||
@ -179,6 +176,3 @@ namespace river_test_playback_write {
|
||||
|
||||
};
|
||||
|
||||
#undef __class__
|
||||
#define __class__ nullptr
|
||||
|
||||
|
@ -7,9 +7,6 @@
|
||||
|
||||
#include <test-debug/debug.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test_record_callback"
|
||||
|
||||
namespace river_test_record_callback {
|
||||
static const std::string configurationRiver =
|
||||
"{\n"
|
||||
@ -97,6 +94,3 @@ namespace river_test_record_callback {
|
||||
|
||||
};
|
||||
|
||||
#undef __class__
|
||||
#define __class__ nullptr
|
||||
|
||||
|
@ -5,13 +5,7 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test_record_read"
|
||||
|
||||
namespace river_test_record_read {
|
||||
|
||||
};
|
||||
|
||||
#undef __class__
|
||||
#define __class__ nullptr
|
||||
|
||||
|
@ -5,9 +5,6 @@
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "test_volume"
|
||||
|
||||
namespace river_test_volume {
|
||||
static const std::string configurationRiver =
|
||||
"{\n"
|
||||
@ -133,6 +130,4 @@ namespace river_test_volume {
|
||||
|
||||
};
|
||||
|
||||
#undef __class__
|
||||
#define __class__ nullptr
|
||||
|
||||
|
@ -8,9 +8,6 @@
|
||||
#include <audio/river/widget/TemporalViewer.h>
|
||||
#include <etk/tool.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "TemporalViewer"
|
||||
|
||||
static const int32_t nbSecond = 3;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user