openmaxal_logger_cb

Updated: April 19, 2023

Prototype for an OpenMAX AL logger function

Synopsis:

#include <OMXAL/OpenMAXAL_QNX.h>
typedef void(* openmaxal_logger_cb)(int verbose,
                                    const char *fmt,
                                    va_list ap);

Arguments:

verbose
The verbosity level. The lower the value, the more urgent the message.
fmt
A formatted string containing the message to be logged
ap
An argument list for filling in values in the formatted string; for details about variable arguments, see the printf() reference

Library:

mmfilter

Description:

This data type provides a prototype for an OpenMAX AL logger function. The function accepts input arguments specifying a verbosity level and a formatted message string and doesn't return a value.