WVR_StopLipExp

WVR_EXPORT void WVR_StopLipExp()

Use this function to stop the lip expression that was started.

Use this API to stop lip expression that you already started, and release related lip expression resources. This API must be called by the main thread.

Version
API Level 9

How to use

Sample function:

#include <wvr/wvr_lip.h>

if (WVR_StartLipExp() == WVR_Success) {
    //WVR_GetLipExpData
    WVR_StopLipExp();
} else {
    // start lip expression failed!
}