[DEV] rm __class__
This commit is contained in:
@@ -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
|
||||
@@ -417,4 +414,4 @@ std::shared_ptr<audio::river::io::Group> audio::river::io::Manager::getGroup(con
|
||||
}
|
||||
|
||||
return out;
|
||||
}
|
||||
}
|
||||
|
@@ -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),
|
||||
@@ -365,4 +361,4 @@ void audio::river::io::Node::stopInGroup() {
|
||||
} else {
|
||||
stop();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -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));
|
||||
}
|
||||
@@ -368,4 +365,4 @@ void audio::river::io::NodeAEC::generateDot(etk::FSNode& _node) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -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));
|
||||
}
|
||||
@@ -483,4 +480,4 @@ void audio::river::io::NodeMuxer::generateDot(etk::FSNode& _node) {
|
||||
}
|
||||
}
|
||||
_node << "\n";
|
||||
}
|
||||
}
|
||||
|
@@ -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,
|
||||
|
Reference in New Issue
Block a user