Member variable 'wakeup_start_time' and 'wakeup_end_time' store time data.
And this time data use milliseconds as a unit.
By specification of std::chrono::milliseconds, it needs at least 45bits memory
to store milliseconds data.
This patch changes data type from 'long' to 'long long' relative with time.
Change-Id: I948715bfb03d579cee78998faecac2ecdc6beeb4
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
const char *wakeup_engine;
float wakeup_confidence_score;
- long wakeup_start_time;
- long wakeup_end_time;
+ long long wakeup_start_time;
+ long long wakeup_end_time;
bool wakeup_time_valid;
const void *extra_data;