view src/com/aurellem/capture/audio/SoundProcessor.java @ 31:b67ffa8aa0b9

fixed click problem
author Robert McIntyre <rlm@mit.edu>
date Sun, 30 Oct 2011 10:17:09 -0700
parents be37291c62b8
children 784a3f4e6202
line wrap: on
line source
1 package com.aurellem.capture.audio;
3 import java.nio.ByteBuffer;
5 import javax.sound.sampled.AudioFormat;
7 public interface SoundProcessor {
9 void cleanup();
11 void process(ByteBuffer audioSamples, int numSamples, AudioFormat format);
13 }