view src/com/aurellem/capture/audio/SoundProcessor.java @ 10:4c5fc53778c1

moved randelshofer stuff to rightfull place, enabled XuggleVideoRecorder
author Robert McIntyre <rlm@mit.edu>
date Wed, 26 Oct 2011 09:38:27 -0700
parents 5dfc9e768816
children 5249c8a9603c be37291c62b8
line wrap: on
line source
1 package com.aurellem.capture.audio;
3 import java.nio.ByteBuffer;
5 public interface SoundProcessor {
7 void cleanup();
9 void process(ByteBuffer audioSamples, int numSamples);
11 }