comparison src/com/aurellem/capture/SoundProcessor.java @ 3:a92de00f0414

migrating files
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 11:55:55 -0700
parents
children
comparison
equal deleted inserted replaced
2:59509c585530 3:a92de00f0414
1 package com.aurellem.capture;
2
3 import java.nio.ByteBuffer;
4
5 public interface SoundProcessor {
6
7 void cleanup();
8
9 void process(ByteBuffer audioSamples, int numSamples);
10
11 }