2011-06-26 08:30:44 +00:00
|
|
|
/********************************************************************
|
|
|
|
SleepLib Waveform Class Implementation
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#include "waveform.h"
|
|
|
|
|
2011-07-02 14:35:50 +00:00
|
|
|
Waveform::Waveform(qint64 time,MachineCode code, SampleFormat *data,int samples,qint64 duration,SampleFormat min, SampleFormat max)
|
2011-06-26 08:30:44 +00:00
|
|
|
:w_time(time),w_code(code),w_data(data),w_samples(samples),w_duration(duration)
|
|
|
|
{
|
|
|
|
w_totalspan=duration;
|
2011-07-02 14:35:50 +00:00
|
|
|
w_samplespan=duration/samples;
|
2011-06-26 08:30:44 +00:00
|
|
|
Min=min;
|
|
|
|
Max=max;
|
|
|
|
}
|
|
|
|
Waveform::~Waveform()
|
|
|
|
{
|
|
|
|
delete [] w_data;
|
|
|
|
}
|