public final class AVAudioConverterInputStatus
extends java.lang.Object
You must return one of these codes from your AVAudioConverterInputBlock.
| Modifier and Type | Field and Description |
|---|---|
static long |
EndOfStream
If you are at the end of stream, set *ioNumberOfPackets = 0 and return
AVAudioConverterInputStatus_EndOfStream.
|
static long |
HaveData
This is the normal case where you supply data to the converter.
|
static long |
NoDataNow
If you are out of data for now, set *ioNumberOfPackets = 0 and return
AVAudioConverterInputStatus_NoDataNow; the conversion routine will return as much output as
could be converted with the input already supplied.
|
public static final long HaveData
public static final long NoDataNow
public static final long EndOfStream