Update a comment

This commit is contained in:
Chris Robinson
2014-12-24 01:17:55 -08:00
parent ad11a90720
commit c71d8c0fc5
+2 -2
View File
@@ -374,8 +374,8 @@ static ALCboolean ALCjackPlayback_reset(ALCjackPlayback *self)
/* Ignore the requested buffer metrics and just keep one JACK-sized buffer
* ready for when requested. Note that even though the ringbuffer will have
* 2 periods worth of space, only half of it will be filled at a given time
* because there's one byte less of it that's writeable, and we only write
* in update-sized chunks. */
* because there's one element less of it that's writeable, and we only
* write in update-sized chunks. */
device->Frequency = jack_get_sample_rate(self->Client);
if(ConfigValueUInt("jack", "buffer-size", &bufsize))
device->UpdateSize = maxu(jack_get_buffer_size(self->Client), NextPowerOf2(bufsize));