Loopp/src/audiobuffer.hxx

131 lines
2.5 KiB
C++
Raw Normal View History

#ifndef LUPPP_AUDIOBUFFER_H
#define LUPPP_AUDIOBUFFER_H
#include <vector>
#include <string>
#include <cstring>
#include <iostream>
#include <sstream>
#include <stdlib.h>
using namespace std;
/// AudioBuffer stores float samples in a big vector.
class AudioBuffer
{
public:
AudioBuffer()
{
ID = privateID++;
init();
}
AudioBuffer(unsigned long size)
{
2013-09-06 00:54:58 +02:00
// FIXME recorded buffers don't get an ID, using garbage IDs
2013-08-22 02:35:43 +02:00
/// no ID assigned: it *takes* the one from the previous buffer!
init();
buffer.resize(size);
}
void init()
{
numBeats = 0;
2013-09-06 00:07:19 +02:00
audioFrames = 0;
memset( name, 0, sizeof(char)*20 );
stringstream s;
s << ID;
sprintf ( name, "%s\n", s.str().c_str() );
}
2013-08-22 02:35:43 +02:00
/// this function is used for "resizing" an exisiting buffer, and should
/// not be called for any other reason.
void setID(int id)
{
ID = id;
}
int getID()
{
return ID;
}
void setName(const char* n)
{
if ( strlen(n) > 19 )
{
#ifdef DEBUG_BUFFER
cout << "AudioBuffer setName too long!" << endl;
#endif
return;
}
memcpy( name, n, sizeof(char)* 20 );
}
int getBeats()
{
return numBeats;
}
void setBeats(int b)
{
#ifdef DEBUG_BUFFER
cout << "AudioBuffer now has " << b << " beats\n" << endl;
#endif
numBeats = b;
}
2013-09-06 00:07:19 +02:00
void setAudioFrames(long af)
{
audioFrames = af;
#ifdef DEBUG_BUFFER
cout << "AudioBuffer " << ID << " has " << audioFrames << " audioFrames\n" << endl;
#endif
}
long getAudioFrames()
{
return audioFrames;
}
std::vector<float>& getData()
{
return buffer;
}
void nonRtSetSample(std::vector<float>& sample)
{
buffer.swap(sample);
}
2013-09-11 14:07:21 +02:00
void nonRtResize(unsigned long size)
{
buffer.resize(size);
}
friend ostream& operator<<(ostream& o, const AudioBuffer& a)
{
o << "AudioBuffer " << a.name <<
" beats: " << a.numBeats <<
" audioFrames: " << a.audioFrames << endl;
return o;
}
protected:
static int privateID;
int ID;
int numBeats;
2013-09-06 00:07:19 +02:00
/// holds the number of samples that are usable audio, as opposed to
/// buffer.size(), which also has non-used space at the end.
long audioFrames;
char name[20];
std::vector<float> buffer;
};
#endif