Change introduced in 10d4de9#diff-fbde706694dbead2c023e9f5ba579b5d724a4a35c8831f03df023c9f0ee183c8R2620-R2623 are causing the microsecond part of the timestamp to be ignored.
(TimeFreq.QuadPart) / 1000000 will return zero if TimeFreq is less than 1000000 and inaccurate number if TimeFreq is not multiple of 1000000 (integer division), causing the whole microsecond part to be miscalculated.
As the original code indicates, the division should be the last operation, otherwise the delta time precision will be messed up.
This causes the entire pcap_sendqueue_transmit to miscalculate the delta time and breaking it completely in sync mode.