public final class AVCaptureOutputDataDroppedReason
extends java.lang.Object
Constants indicating the reason a capture data output dropped data.
[@constant] AVCaptureOutputDataDroppedReasonNone No data was dropped. [@constant] AVCaptureOutputDataDroppedReasonLateData Data was dropped because alwaysDiscardsLate{VideoFrames | DepthData} is YES and the client was still processing previous data when the current data needed to be delivered. [@constant] AVCaptureOutputDataDroppedReasonOutOfBuffers Data was dropped because its pool of buffers ran dry. This is usually indicative that the client is holding onto data objects too long. [@constant] AVCaptureOutputDataDroppedReasonDiscontinuity Data was dropped because the device providing the data experienced a discontinuity, and an unknown number of data objects have been lost. This condition is typically caused by the system being too busy.
| Modifier and Type | Field and Description |
|---|---|
static long |
Discontinuity |
static long |
LateData |
static long |
None |
static long |
OutOfBuffers |
public static final long None
public static final long LateData
public static final long OutOfBuffers
public static final long Discontinuity