pub unsafe extern "C" fn aacDecoder_DecodeFrame(
    self_: HANDLE_AACDECODER,
    pTimeData: *mut INT_PCM,
    timeDataSize: INT,
    flags: UINT
) -> AAC_DECODER_ERROR
Expand description

\brief Decode one audio frame

\param self AAC decoder handle. \param pTimeData Pointer to external output buffer where the decoded PCM samples will be stored into. \param timeDataSize Size of external output buffer. \param flags Bit field with flags for the decoder: \n (flags & AACDEC_CONCEAL) == 1: Do concealment. \n (flags & AACDEC_FLUSH) == 2: Discard input data. Flush filter banks (output delayed audio). \n (flags & AACDEC_INTR) == 4: Input data is discontinuous. Resynchronize any internals as necessary. \n (flags & AACDEC_CLRHIST) == 8: Clear all signal delay lines and history buffers. \return Error code.