/usr/include/CLAM/AudioBufferSink.hxx is in libclam-dev 1.4.0-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | #ifndef AudioBufferSink_hxx
#define AudioBufferSink_hxx
#include "Processing.hxx"
#include "InPort.hxx"
#include "Audio.hxx"
#include <sstream>
namespace CLAM
{
class AudioBufferSink : public Processing
{
public:
struct Port
{
float* mFloatBuffer;
double* mDoubleBuffer;
unsigned mBufferSize;
//AudioInPort* mPort;
InPort<Audio>* mPort;
//resize needs a default constructor
Port()
: mFloatBuffer(0), mDoubleBuffer(0), mBufferSize(0), mPort(0)
{
}
explicit Port(InPort<Audio>* p)
: mFloatBuffer(0), mDoubleBuffer(0), mBufferSize(0), mPort(p)
{
}
};
typedef std::vector<Port> Ports;
private:
class Config : public ProcessingConfig
{
DYNAMIC_TYPE_USING_INTERFACE( Config, 1, ProcessingConfig );
DYN_ATTRIBUTE( 0, public, int, NSinks);
protected:
void DefaultInit()
{
AddAll();
UpdateData();
SetNSinks(1);
};
void LoadFrom(Storage & storage)
{
ProcessingConfig::LoadFrom(storage);
if (not HasNSinks())
{
AddNSinks();
UpdateData();
SetNSinks(1);
}
}
};
private:
Config _config;
Ports _ports;
public:
AudioBufferSink(const ProcessingConfig & config=Config())
{
//After being dropped it is ready to run as it does not need any configuration at all
//SetExecState(Ready);
Configure( config );
ResizePorts(1);
}
~AudioBufferSink()
{
for (unsigned port = 0; port < _ports.size(); ++port)
delete _ports[port].mPort;
}
/// @deprecated Delegated to SetExternalBuffer
void SetFrameAndHopSize(const int val, unsigned index)
{
CLAM_ASSERT(index < _ports.size(), "AudioInPort index out of range");
Port& port = _ports[index];
port.mPort->SetSize(1);
port.mPort->SetHop(1);
}
void SetExternalBuffer(float* buf, unsigned nframes, unsigned index);
void SetExternalBuffer(double* buf, unsigned nframes, unsigned index);
bool Do();
virtual bool SupportsVariableAudioSize() const {return true;}
const char* GetClassName() const { return "AudioBufferSink";}
const ProcessingConfig & GetConfig() const
{
return _config;
}
bool ConcreteConfigure(const ProcessingConfig& config)
{
CopyAsConcreteConfig(_config, config);
unsigned sinks = _config.GetNSinks();
ResizePorts(sinks);
return true;
}
Ports& GetPorts() { return _ports; }
private:
std::string const Portname(unsigned port) const
{
std::ostringstream os;
os << port + 1; //to make ports one based (when viewed in jack)
return os.str();
}
void ResizePorts(unsigned sinks)
{
if (sinks == _ports.size())
return;
for (unsigned port = sinks; port < _ports.size(); ++port)
delete _ports[port].mPort;
unsigned oldSize = _ports.size();
_ports.resize(sinks);
for (unsigned port = oldSize; port < sinks; ++port)
_ports[port] = Port(new InPort<Audio>(Portname(port), this));
}
};
} //namespace CLAM
#endif
|