Hello,
Hello,
I have a codec engine algo. For giving the user a human readable error message my UNIVERSAL_OutArgs contains a error string:
/* Output parameters */
#define SZ_STRING 20
typedef struct IMy_OutArgs {
IUNIVERSAL_OutArgs universalOutArgs;
char cvt_err_string[SZ_STRING];
} IMy_OutArgs;
Whats the best method to format this string on the DSP side (in myUniversal_process)? Is it okay to use sprintf?
C.