diff 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 diff
     1.1 --- a/src/com/aurellem/capture/audio/SoundProcessor.java	Fri Feb 10 04:07:05 2012 -0700
     1.2 +++ b/src/com/aurellem/capture/audio/SoundProcessor.java	Sat Feb 11 12:25:26 2012 -0700
     1.3 @@ -7,10 +7,9 @@
     1.4  public interface SoundProcessor {
     1.5  
     1.6      /**
     1.7 -     * Called when the SoundProcessor is being destroyed, and
     1.8 -     * there are no more samples to process.  This happens at the
     1.9 -     * latest when the Application is shutting down.
    1.10 -     * 
    1.11 +     * Called when the SoundProcessor is being destroyed, and there
    1.12 +     * are no more samples to process.  This happens at the latest
    1.13 +     * when the Application is shutting down.
    1.14       */
    1.15      void cleanup();
    1.16  	
    1.17 @@ -22,7 +21,8 @@
    1.18       * 
    1.19       * @param audioSamples a ByteBuffer containing processed audio
    1.20       * samples
    1.21 -     * @param numSamples the number of samples, in bytes, that are valid
    1.22 +     * @param numSamples the number of samples, in bytes, that are
    1.23 +     * valid
    1.24       * @param format the format of the audio samples in audioSamples
    1.25       */
    1.26      void process(ByteBuffer audioSamples, int numSamples, AudioFormat format);