if (wait) {
uint64_t time_to_wait_for_wakeup_fp =
((uint64_t)1 << 32) / conn->input_rate; // this is time period of one frame
- time_to_wait_for_wakeup_fp *= 4 * 352; // four full 352-frame packets
- time_to_wait_for_wakeup_fp /= 3; // four thirds of a packet time
+ time_to_wait_for_wakeup_fp *= 2 * 352; // two full 352-frame packets
+ time_to_wait_for_wakeup_fp /= 3; // two thirds of a packet time
#ifdef COMPILE_FOR_LINUX_AND_FREEBSD_AND_CYGWIN_AND_OPENBSD
uint64_t time_of_wakeup_fp = local_time_now + time_to_wait_for_wakeup_fp;