17 lines
300 B
Java
17 lines
300 B
Java
package com.danitheskunk.skunkworks.audio;
|
|
|
|
//todo: samplerate stuffs?
|
|
public interface ISample {
|
|
int getLength();
|
|
|
|
double getSampleLeft(int pos);
|
|
|
|
double getSampleRight(int pos);
|
|
|
|
void setSamplei(int pos, short left);
|
|
|
|
void setSamplei(int pos, short left, short right);
|
|
|
|
boolean isStereo();
|
|
}
|