Skip to content

Commit

Permalink
fix uninterleaving offset error in vorbis_analysis_write()
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Jan 29, 2013
1 parent 759368d commit c58cd80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/binding.cc
Expand Up @@ -176,7 +176,7 @@ void node_vorbis_analysis_write_async (uv_work_t *req) {
/* uninterleave samples */
for (i = 0; i < samples; i++) {
for (j = 0; j < channels; j++) {
output[j][i] = input[samples * channels + j];
output[j][i] = input[i * channels + j];
}
}

Expand Down

0 comments on commit c58cd80

Please sign in to comment.