view src/com/aurellem/capture/audio/SoundProcessor.java @ 65:23e3df41db3c

reformatting for web
author Robert McIntyre <rlm@mit.edu>
date Sat, 11 Feb 2012 12:25:26 -0700
parents 784a3f4e6202
children
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 /**
10 * Called when the SoundProcessor is being destroyed, and there
11 * are no more samples to process. This happens at the latest
12 * when the Application is shutting down.
13 */
14 void cleanup();
16 /**
17 *
18 * Called whenever there are new audio samples to process. The
19 * audioSamples ByteBuffer contains 3D audio data rendered by
20 * OpenAL.
21 *
22 * @param audioSamples a ByteBuffer containing processed audio
23 * samples
24 * @param numSamples the number of samples, in bytes, that are
25 * valid
26 * @param format the format of the audio samples in audioSamples
27 */
28 void process(ByteBuffer audioSamples, int numSamples, AudioFormat format);
30 }