view src/com/aurellem/capture/SoundProcessor.java @ 6:0634e72bad3e

don't need StdAudio since I'm now using builtin javax to write wav files
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 12:07:56 -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 }