]> code.delx.au - pulseaudio/commitdiff
Corrected a bogus comment.
authorTanu Kaskinen <tanuk@iki.fi>
Fri, 24 Aug 2007 07:12:47 +0000 (07:12 +0000)
committerTanu Kaskinen <tanuk@iki.fi>
Fri, 24 Aug 2007 07:12:47 +0000 (07:12 +0000)
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1716 fefdeb5f-60dc-0310-8127-8f9354f1896f

src/modules/module-jack-sink.c

index 09a72e3a671d80be1aa657dc276908a48b9dd7e2..a40ebe290dc1dfa77d28b807146c5f58bbe444ba 100644 (file)
@@ -753,8 +753,7 @@ static void io_event_cb(pa_mainloop_api* m, pa_io_event* e, int fd,
     part2_length = buffer[1].len / sizeof(float);
 
     /* If the amount of free space is not a multiple of the frame size, we have
     part2_length = buffer[1].len / sizeof(float);
 
     /* If the amount of free space is not a multiple of the frame size, we have
-       to adjust the lengths in order to not get confused with which sample is
-       which channel. */
+       to truncate the lengths so that we process only complete frames. */
     if ((rem = (part1_length + part2_length) % u->channels) != 0) {
         if (part2_length >= rem) {
             part2_length -= rem;
     if ((rem = (part1_length + part2_length) % u->channels) != 0) {
         if (part2_length >= rem) {
             part2_length -= rem;