summaryrefslogtreecommitdiff
path: root/apps/codecs/liba52/a52_internal.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-02-16 12:48:24 +0000
committerDave Chapman <dave@dchapman.com>2005-02-16 12:48:24 +0000
commit9cba5b64dc32ebcddaa72a7d4ce7440df6fc2e7b (patch)
tree8e0a3818fc9d09f712f0113a08a0863478f10ede /apps/codecs/liba52/a52_internal.h
parent562627c213f73b21ae2c70ad728b5ec131028b80 (diff)
downloadrockbox-9cba5b64dc32ebcddaa72a7d4ce7440df6fc2e7b.tar.gz
rockbox-9cba5b64dc32ebcddaa72a7d4ce7440df6fc2e7b.zip
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/liba52/a52_internal.h b/apps/codecs/liba52/a52_internal.h
index a158227699..32b1160903 100644
--- a/apps/codecs/liba52/a52_internal.h
+++ b/apps/codecs/liba52/a52_internal.h
@@ -155,6 +155,6 @@ typedef int16_t quantizer_t;
155 155
156#define MUL_C(a,b) MUL_L (a, LEVEL (b)) 156#define MUL_C(a,b) MUL_L (a, LEVEL (b))
157#define DIV(a,b) ((((int64_t)LEVEL (a)) << 26) / (b)) 157#define DIV(a,b) ((((int64_t)LEVEL (a)) << 26) / (b))
158#define BIAS(x) (x) 158#define BIAS(x) ((x) + (bias*0))
159 159
160#endif 160#endif