adas_viewer_plugin_process_t

Updated: April 19, 2023

Process input frames

Synopsis:

#include <adas/adas_viewer_plugin.h>
typedef int(* adas_viewer_plugin_process_t)(int channel,
            void *dest,
            void *src);

Arguments:

channel
An integer to specify the sensor channel; used for multiple sensor configurations.
dest
A void pointer for the destination.
src
A void pointer for the source.

Library:

libadas

Description:

This function is used to process any input data from source to destination.

Returns:

ADAS_EOK when the function successfully completes, otherwise a value that provides the reason that the call failed.