view src/com/aurellem/capture/SoundProcessor.java @ 7:002b955a120a

removed PrintTimer
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 12:09:15 -0700
parents a92de00f0414
children
line wrap: on
line source
1 package com.aurellem.capture;
3 import java.nio.ByteBuffer;
5 public interface SoundProcessor {
7 void cleanup();
9 void process(ByteBuffer audioSamples, int numSamples);
11 }