view src/com/aurellem/capture/audio/SoundProcessor.java @ 30:be37291c62b8

propagated AudioFormat to other classes.
author Robert McIntyre <rlm@mit.edu>
date Sun, 30 Oct 2011 10:11:21 -0700
parents 5dfc9e768816
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 }