Interface SplitShortPcmAudioFilter
-
- All Superinterfaces:
AudioFilter
- All Known Subinterfaces:
UniversalPcmAudioFilter
- All Known Implementing Classes:
AudioPipeline,ChannelCountPcmAudioFilter,CompositeAudioFilter,ConverterAudioFilter,FinalPcmAudioFilter,ToFloatAudioFilter,ToShortAudioFilter,ToSplitShortAudioFilter,UserProvidedAudioFilters
public interface SplitShortPcmAudioFilter extends AudioFilter
Audio filter which accepts 16-bit signed PCM samples, with an array per .
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocess(short[][] input, int offset, int length)-
Methods inherited from interface com.sedmelluq.discord.lavaplayer.filter.AudioFilter
close, flush, seekPerformed
-
-
-
-
Method Detail
-
process
void process(short[][] input, int offset, int length) throws java.lang.InterruptedException- Parameters:
input- An array of samples for each channeloffset- Offset in the arraylength- Length of the sequence in the array- Throws:
java.lang.InterruptedException- When interrupted externally (or for seek/stop).
-
-