rlm@3: package com.aurellem.capture; rlm@3: rlm@3: import java.nio.ByteBuffer; rlm@3: rlm@3: public interface SoundProcessor { rlm@3: rlm@3: void cleanup(); rlm@3: rlm@3: void process(ByteBuffer audioSamples, int numSamples); rlm@3: rlm@3: }