diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2009-03-04 18:15:06 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2009-03-04 18:15:06 +0000 |
| commit | 4f87abf90af67d23582156343ef7dbd66cd18aa8 (patch) | |
| tree | 68109cb9147d7767f64e2ee5de150f609fea82fa /apps/codecs/libmusepack | |
| parent | 23e28f2b0c871912f9f23993e754db3637b92f0e (diff) | |
| download | rockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.zip rockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.tar.gz rockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.tar.bz2 rockbox-4f87abf90af67d23582156343ef7dbd66cd18aa8.tar.xz | |
Cosmetic fix: remove duplicate semicolons
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20198 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libmusepack')
| -rw-r--r-- | apps/codecs/libmusepack/synth_filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libmusepack/synth_filter.c b/apps/codecs/libmusepack/synth_filter.c index fb956fb..d8196eb 100644 --- a/apps/codecs/libmusepack/synth_filter.c +++ b/apps/codecs/libmusepack/synth_filter.c @@ -234,7 +234,7 @@ mpc_calculate_new_V ( const MPC_SAMPLE_FORMAT * Sample, MPC_SAMPLE_FORMAT * V ) B[ 4] = A[ 4] + A[11]; B[ 5] = A[ 5] + A[10]; B[ 6] = A[ 6] + A[ 9]; - B[ 7] = A[ 7] + A[ 8];; + B[ 7] = A[ 7] + A[ 8]; B[ 8] = MPC_MULTIPLY_V((A[ 0] - A[15]), INVCOS02); B[ 9] = MPC_MULTIPLY_V((A[ 1] - A[14]), INVCOS06); B[10] = MPC_MULTIPLY_V((A[ 2] - A[13]), INVCOS10); |