Package uk.ac.qmul.eecs.depic.daw
Interface Sample
-
- All Known Implementing Classes:
- BeadsSampleWrapper
public interface Sample
An Audio Sample
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description int
getBytesPerSample()
void
getFrame(int arg0, float[] arg1)
void
getFrameCubic(double arg0, float[] arg1)
void
getFrameLinear(double arg0, float[] arg1)
void
getFrameNoInterp(double arg0, float[] arg1)
void
getFrames(int arg0, float[][] arg1)
float
getLength()
int
getNumChannels()
long
getNumFrames()
float
getSampleRate()
double
msToSamples(double arg0)
double
samplesToMs(double arg0)
-
-
-
Method Detail
-
getBytesPerSample
int getBytesPerSample()
-
getFrame
void getFrame(int arg0, float[] arg1)
-
getFrameCubic
void getFrameCubic(double arg0, float[] arg1)
-
getFrameLinear
void getFrameLinear(double arg0, float[] arg1)
-
getFrameNoInterp
void getFrameNoInterp(double arg0, float[] arg1)
-
getFrames
void getFrames(int arg0, float[][] arg1)
-
getLength
float getLength()
-
getNumChannels
int getNumChannels()
-
getNumFrames
long getNumFrames()
-
getSampleRate
float getSampleRate()
-
msToSamples
double msToSamples(double arg0)
-
samplesToMs
double samplesToMs(double arg0)
-
-