47#ifndef DW_SENSORS_SENSORSERIALIZER_H_
48#define DW_SENSORS_SENSORSERIALIZER_H_
210DW_DEPRECATED(
"This API is deprecated and will be removed in the next major release")
226DW_DEPRECATED("This API is deprecated and will be removed in the next major release")
250DW_DEPRECATED("This API is deprecated and will be removed in the next major release")
NVIDIA DriveWorks API: Cameras
NVIDIA DriveWorks API: Core Methods
dwStatus
Status definition.
NVIDIA DriveWorks API: Sensors
NVIDIA DriveWorks API: Core Types
NVIDIA DriveWorks API: Core Exports
struct dwCameraFrame * dwCameraFrameHandle_t
Handle to captured frame.
int64_t dwTime_t
Specifies a timestamp unit, in microseconds.
#define DW_DEPRECATED(msg)
const char8_t * parameters
Array for additional parameters provided to sensor serializer creation.
float64_t meanDelta[DW_SERIALIZER_STAT_COUNT]
Array of Mean of all the time deltas between various stages of serialization as per the dwSerializerS...
dwTime_t currentDeltaUs[DW_SERIALIZER_STAT_COUNT]
Array of current latencies of all the time deltas between various stages of serialization as per the ...
dwTime_t minDeltaUs[DW_SERIALIZER_STAT_COUNT]
Array of min latencies of all the time deltas between various stages of serialization as per the dwSe...
dwSensorSerializerOnDataFunc_t onData
Callback executed by the serializer on new data available.
float64_t standardDeviationDelta[DW_SERIALIZER_STAT_COUNT]
Array of Variance of all the time deltas between various stages of serialization as per the dwSeriali...
dwTime_t maxDeltaUs[DW_SERIALIZER_STAT_COUNT]
Array of max latencies of all the time deltas between various stages of serialization as per the dwSe...
void * userData
User data to be passed to the callback.
DW_API_PUBLIC dwStatus dwSensorSerializer_initialize(dwSensorSerializerHandle_t *const serializer, dwSerializerParams const *const params, dwSensorHandle_t const sensor)
Initializes a sensor serializer with the parameters provided.
DW_API_PUBLIC dwStatus dwSensorSerializer_detachFrom(dwSensorSerializerHandle_t const serializer, dwSensorSerializerHandle_t const masterSerializer)
This method detaches the serializer previously attached with dwSensorSerializer_attachTo().
DW_API_PUBLIC dwStatus dwSensorSerializer_serializeCameraFrame(dwCameraFrameHandle_t const frame, dwSensorSerializerHandle_t const serializer)
Pushes a camera frame to the serializer.This method must only be used if 'dwSensorSerializer_start' i...
dwSerializerStatTimeDifference
Defines the various delta used in statistics.
DW_API_PUBLIC dwStatus dwSensorSerializer_serializeData(uint8_t const *const data, size_t const size, dwSensorSerializerHandle_t const serializer)
Pushes data to the serializer.
DW_API_PUBLIC dwStatus dwSensorSerializer_start(dwSensorSerializerHandle_t const serializer)
Starts serialization of sensor.
DW_API_PUBLIC dwStatus dwSensorSerializer_stop(dwSensorSerializerHandle_t const serializer)
Starts serialization of sensor.
DW_API_PUBLIC dwStatus dwSensorSerializer_release(dwSensorSerializerHandle_t const serializer)
Releases a sensor serializer.
DW_API_PUBLIC dwStatus dwSensorSerializer_isAttached(bool *const isAttached, dwSensorSerializerHandle_t const serializer)
Query method to check whether the serializer is attached to another.
DW_API_PUBLIC dwStatus dwSensorSerializer_getStats(dwSerializerStats *const outStats, dwSensorSerializerHandle_t const serializer)
Gets serializer statistics (if available).
DW_API_PUBLIC dwStatus dwSensorSerializer_serializeCameraFrameAsync(dwCameraFrameHandle_t const frame, dwSensorSerializerHandle_t const serializer)
Pushes a camera frame to the serializer.
void(* dwSensorSerializerOnDataFunc_t)(const uint8_t *data, size_t size, void *userData)
Callback type for getting data from sensor serializer.
DW_API_PUBLIC dwStatus dwSensorSerializer_serializeDataAsync(uint8_t const *const data, size_t const size, dwSensorSerializerHandle_t const serializer)
Pushes data to the serializer.
struct dwSensorSerializerObject * dwSensorSerializerHandle_t
Handle representing a sensor serializer.
DW_API_PUBLIC dwStatus dwSensorSerializer_attachTo(dwSensorSerializerHandle_t const serializer, dwSensorSerializerHandle_t const masterSerializer)
Starts and stops serialization of a sensor with a master serializer.
@ DW_SERIALIZER_STAT_STAGE2_TIME
Stat to hold the stage2 time delta.
@ DW_SERIALIZER_STAT_DISK_WRITE_TIME
Stat to hold the disk write time delta.
@ DW_SERIALIZER_STAT_COUNT
Count which the type value is less than.
@ DW_SERIALIZER_STAT_STAGE1_TIME
Stat to hold the stage1 time delta.
@ DW_SERIALIZER_STAT_ENCODE_TIME
Stat to hold the encode time delta.
@ DW_SERIALIZER_STAT_STAGE3_TIME
Stat to hold the stage3 time delta.
Holds the parameters for sensor serializer creation.
Holds the available statistics for a serializer.
struct dwSensorObject * dwSensorHandle_t
Handle representing a sensor.