Poratudio playback: missing newline

This commit is contained in:
Martin Pulec
2015-06-29 15:07:42 +02:00
parent 90dd0153b5
commit 80c6054719

View File

@@ -418,7 +418,7 @@ void portaudio_put_frame(void *state, struct audio_frame *buffer)
ring_buffer_write(s->data, buffer->data, samples_count * buffer->bps * out_channels);
if (ring_get_current_size(s->data) > buffer->bps * out_channels * buffer->sample_rate * BUFFER_LEN_SEC / 2) {
fprintf(stderr, MODULE_NAME "Warning: more than 0.5 sec in playout buffer!");
fprintf(stderr, MODULE_NAME "Warning: more than 0.5 sec in playout buffer!\n");
}
}