diff options
| author | Dave Hooper <dave@beermex.com> | 2010-02-17 00:49:53 +0000 |
|---|---|---|
| committer | Dave Hooper <dave@beermex.com> | 2010-02-17 00:49:53 +0000 |
| commit | 42774d3128b91d5a37344cb40d56d3c4d147e5f2 (patch) | |
| tree | bf336b407992ec9a5e454556f3351e3f8a0d10de /apps/codecs/libtremor/codec_internal.h | |
| parent | 62257ebc38bc0a3095b25dd0f58c4c8215edf602 (diff) | |
| download | rockbox-42774d3128b91d5a37344cb40d56d3c4d147e5f2.zip rockbox-42774d3128b91d5a37344cb40d56d3c4d147e5f2.tar.gz rockbox-42774d3128b91d5a37344cb40d56d3c4d147e5f2.tar.bz2 rockbox-42774d3128b91d5a37344cb40d56d3c4d147e5f2.tar.xz | |
Merge from branches/mdctexp - faster ifft+imdct in codec lib
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24712 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libtremor/codec_internal.h')
| -rw-r--r-- | apps/codecs/libtremor/codec_internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/libtremor/codec_internal.h b/apps/codecs/libtremor/codec_internal.h index 3ca7f54..3cbd7cd 100644 --- a/apps/codecs/libtremor/codec_internal.h +++ b/apps/codecs/libtremor/codec_internal.h @@ -60,7 +60,8 @@ typedef struct codec_setup_info { /* Vorbis supports only short and long blocks, but allows the encoder to choose the sizes */ - long blocksizes[2]; + int blocksizes_nbits[2]; + long blocksizes[2]; /* = 1<<nbits */ /* modes are the primary means of supporting on-the-fly different blocksizes, different channel mappings (LR or M/A), |