Skip to main content

RecordVideoFileEnum

enum class RecordVideoFileEnum

Description: Video file information

enum class RecordVideoFileEnum(val value: Int) {
/**
* unknown
*/
UNKNOWN(0),

/**
* success
*/
SUCCESS(1),

/**
* write error
*/
WRITE_ERROR(2),

/**
* Insufficient cache space
*/
BUFFER_FULL(3),

/**
* card full
*/
NO_SPACE(4),

/**
* not support
*/
NOT_SUPPORT(5),

/**
* sd card removal
*/
SD_REMOVE(6),

/**
* 3.5G automatic segmentation
*/
SPLIT(7),

/**
* other errors
*/
OTHER_FAILED(8);
}