Lines Matching refs:phOnset
138 FDK_SACENC_ERROR fdk_sacenc_onsetDetect_Open(HANDLE_ONSET_DETECT *phOnset, in fdk_sacenc_onsetDetect_Open() argument
143 if (NULL == phOnset) { in fdk_sacenc_onsetDetect_Open()
158 *phOnset = hOnset; in fdk_sacenc_onsetDetect_Open()
213 FDK_SACENC_ERROR fdk_sacenc_onsetDetect_Close(HANDLE_ONSET_DETECT *phOnset) { in fdk_sacenc_onsetDetect_Close() argument
216 if ((NULL != phOnset) && (NULL != *phOnset)) { in fdk_sacenc_onsetDetect_Close()
217 if (NULL != (*phOnset)->pEnergyHist__FDK) { in fdk_sacenc_onsetDetect_Close()
218 FDKfree((*phOnset)->pEnergyHist__FDK); in fdk_sacenc_onsetDetect_Close()
220 (*phOnset)->pEnergyHist__FDK = NULL; in fdk_sacenc_onsetDetect_Close()
222 if (NULL != (*phOnset)->pEnergyHistScale) { in fdk_sacenc_onsetDetect_Close()
223 FDKfree((*phOnset)->pEnergyHistScale); in fdk_sacenc_onsetDetect_Close()
225 (*phOnset)->pEnergyHistScale = NULL; in fdk_sacenc_onsetDetect_Close()
226 FDKfree(*phOnset); in fdk_sacenc_onsetDetect_Close()
227 *phOnset = NULL; in fdk_sacenc_onsetDetect_Close()