FLAC_DEC_APPLICATIONCB_SET Type

C

typedef struct
{
    DecoderEventHandlerCB flacDecAppReadCB;
    DecoderEventHandlerCB flacDecAppSeekCB;
    DecoderEventHandlerCB flacDecAppTellCB; 
    DecoderEventHandlerCB flacDecAppLengthCB; 
    DecoderEventHandlerCB flacDecAppEoFCB; 
    DecoderEventHandlerCB flacDecAppWriteCB; /* Callbacks with Raw bytes after FLAC decoding */
    DecoderEventHandlerCB flacDecAppMetadataCB;
    DecoderEventHandlerCB flacDecAppErrorCB;
} FLAC_DEC_APPLICATIONCB_SET;

Summary

Application defined callbacks for FLAC Library

Description

These callbacks will be called from FLAC Library upon different events Each of the callbacks is of type below:

typedef void (* DecoderEventHandlerCB)(uint32_t event, void *cb_param, void *ctxt);

Remarks

None