annotate src/com/aurellem/capture/SoundProcessor.java @ 4:edaa7e7806e4

migrated IsoTimer
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 12:03:01 -0700
parents a92de00f0414
children
rev   line source
rlm@3 1 package com.aurellem.capture;
rlm@3 2
rlm@3 3 import java.nio.ByteBuffer;
rlm@3 4
rlm@3 5 public interface SoundProcessor {
rlm@3 6
rlm@3 7 void cleanup();
rlm@3 8
rlm@3 9 void process(ByteBuffer audioSamples, int numSamples);
rlm@3 10
rlm@3 11 }