if (config.statistics_requested) {
if ((config.output->delay)) {
if (config.no_sync == 0) {
- inform("sync error in milliseconds, "
+ inform("| sync error in milliseconds, "
"net correction in ppm, "
"corrections in ppm, "
"total packets, "
"min buffer occupancy, "
"max buffer occupancy");
} else {
- inform("sync error in milliseconds, "
+ inform("| sync error in milliseconds, "
"total packets, "
"missing packets, "
"late packets, "
"max buffer occupancy");
}
} else {
- inform("sync error in milliseconds, "
+ inform("| sync error in milliseconds, "
"total packets, "
"missing packets, "
"late packets, "
if ((config.output->delay)) {
if (config.no_sync == 0) {
inform(
- " %10.1f," /* Sync error in milliseconds */
+ "|%*.1f," /* Sync error in milliseconds */
"%*.1f," /* net correction in ppm */
"%*.1f," /* corrections in ppm */
"%*d," /* total packets */
"%*lli," /* min DAC queue size */
"%*d," /* min buffer occupancy */
"%*d", /* max buffer occupancy */
- //9, /* should be 10, but there's an explicit space at the start to ensure
- // alignment */
+ 10,
1000 * moving_average_sync_error / config.output_rate,
10, moving_average_correction * 1000000 / (352 * conn->output_sample_ratio),
10, moving_average_insertions_plus_deletions * 1000000 /
conn->too_late_packets, 7, conn->resend_requests, 7, minimum_dac_queue_size,
5, minimum_buffer_occupancy, 5, maximum_buffer_occupancy);
} else {
- inform(" %10.1f," /* Sync error in milliseconds */
+ inform("|%*.1f," /* Sync error in milliseconds */
"%*d," /* total packets */
"%*llu," /* missing packets */
"%*llu," /* late packets */
"%*lli," /* min DAC queue size */
"%*d," /* min buffer occupancy */
"%*d", /* max buffer occupancy */
- // 9, /* should be 10, but there's an explicit space at the start to ensure
- // alignment */
+ 10,
1000 * moving_average_sync_error / config.output_rate,
12, play_number, 7, conn->missing_packets, 7, conn->late_packets, 7,
conn->too_late_packets, 7, conn->resend_requests, 7,
maximum_buffer_occupancy);
}
} else {
- inform(" %10.1f," /* Sync error in milliseconds */
+ inform("|%*.1f," /* Sync error in milliseconds */
"%*d," /* total packets */
"%*llu," /* missing packets */
"%*llu," /* late packets */
"%*llu," /* resend requests */
"%*d," /* min buffer occupancy */
"%*d", /* max buffer occupancy */
- // 9, /* should be 10, but there's an explicit space at the start to ensure
- // alignment */
+ 10,
1000 * moving_average_sync_error / config.output_rate,
12, play_number, 7, conn->missing_packets, 7, conn->late_packets, 7,
conn->too_late_packets, 7, conn->resend_requests, 5,