Skip to content

Commit

Permalink
Oops, rename table
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed May 26, 2012
1 parent 09e11b2 commit c7e5570
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/mdct.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function MDCT(length) {
break;

case 256:
this.sincos = MDCT_TABLE_128;
this.sincos = MDCT_TABLE_256;
break;

case 1920:
Expand Down
8 changes: 4 additions & 4 deletions src/mdct_tables.js
Original file line number Diff line number Diff line change
Expand Up @@ -511,9 +511,9 @@ const MDCT_TABLE_2048 = [
[0.000275633598775, 0.031248784394264],
[0.000179762382174, 0.031249482963498],
[0.000083889473581, 0.031249887400697]
];
const MDCT_TABLE_128 = [
];

const MDCT_TABLE_256 = [
[0.088387931675923, 0.000271171628935],
[0.088354655998507, 0.002440238387037],
[0.088268158780110, 0.004607835236780],
Expand Down Expand Up @@ -578,7 +578,7 @@ const MDCT_TABLE_128 = [
[0.006231782743558, 0.088168389368510],
[0.004066145255116, 0.088294770302461],
[0.001898058472816, 0.088367965768336]
];
];

const MDCT_TABLE_1920 = [
[0.032274858518097, 0.000013202404176],
Expand Down

0 comments on commit c7e5570

Please sign in to comment.