diff options
| author | Dave Chapman <dave@dchapman.com> | 2005-02-16 12:48:24 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2005-02-16 12:48:24 +0000 |
| commit | 9cba5b64dc32ebcddaa72a7d4ce7440df6fc2e7b (patch) | |
| tree | 8e0a3818fc9d09f712f0113a08a0863478f10ede /apps/codecs/liba52/a52_internal.h | |
| parent | 562627c213f73b21ae2c70ad728b5ec131028b80 (diff) | |
| download | rockbox-9cba5b64dc32ebcddaa72a7d4ce7440df6fc2e7b.zip rockbox-9cba5b64dc32ebcddaa72a7d4ce7440df6fc2e7b.tar.gz rockbox-9cba5b64dc32ebcddaa72a7d4ce7440df6fc2e7b.tar.bz2 rockbox-9cba5b64dc32ebcddaa72a7d4ce7440df6fc2e7b.tar.xz | |
Trivial changes to avoid compiler warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5975 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/liba52/a52_internal.h')
| -rw-r--r-- | apps/codecs/liba52/a52_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/liba52/a52_internal.h b/apps/codecs/liba52/a52_internal.h index a158227..32b1160 100644 --- a/apps/codecs/liba52/a52_internal.h +++ b/apps/codecs/liba52/a52_internal.h @@ -155,6 +155,6 @@ typedef int16_t quantizer_t; #define MUL_C(a,b) MUL_L (a, LEVEL (b)) #define DIV(a,b) ((((int64_t)LEVEL (a)) << 26) / (b)) -#define BIAS(x) (x) +#define BIAS(x) ((x) + (bias*0)) #endif |