Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IAudioMixerSource.java « audio « jumble « morlunk « com « java « main « src - gitlab.com/quite/humla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61e065f360e5b708eb0024e008b48f9e07c6f2b8 (plain)
1
2
3
4
5
6
7
8
9
10
package com.morlunk.jumble.audio;

/**
 * A source for an {@link IAudioMixer}.
 * Stores samples in a collection of type {@link T}.
 */
public interface IAudioMixerSource<T> {
    T getSamples();
    int getNumSamples();
}