summaryrefslogtreecommitdiff
path: root/apps/codecs/demac/libdemac/entropy.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-11-26 18:01:18 +0000
committerJens Arnold <amiconn@rockbox.org>2008-11-26 18:01:18 +0000
commit5b0d74a7d3329ec3fc5818d9185aba7f29291ca7 (patch)
tree1f18fca1c5cb07903752415463f9d3a2d3b04a7c /apps/codecs/demac/libdemac/entropy.h
parentffc6766a4d486990a9f3a64d81a3c3e5ab12f445 (diff)
downloadrockbox-5b0d74a7d3329ec3fc5818d9185aba7f29291ca7.tar.gz
rockbox-5b0d74a7d3329ec3fc5818d9185aba7f29291ca7.zip
Get rid of unused return values, except the one from decode_chunk() which will be used in the dual core split.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19236 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/demac/libdemac/entropy.h')
-rw-r--r--apps/codecs/demac/libdemac/entropy.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/codecs/demac/libdemac/entropy.h b/apps/codecs/demac/libdemac/entropy.h
index dd6736cb15..fac2a44d99 100644
--- a/apps/codecs/demac/libdemac/entropy.h
+++ b/apps/codecs/demac/libdemac/entropy.h
@@ -2,7 +2,7 @@
2 2
3libdemac - A Monkey's Audio decoder 3libdemac - A Monkey's Audio decoder
4 4
5$Id:$ 5$Id$
6 6
7Copyright (C) Dave Chapman 2007 7Copyright (C) Dave Chapman 2007
8 8
@@ -31,10 +31,10 @@ void init_entropy_decoder(struct ape_ctx_t* ape_ctx,
31 unsigned char* inbuffer, int* firstbyte, 31 unsigned char* inbuffer, int* firstbyte,
32 int* bytesconsumed); 32 int* bytesconsumed);
33 33
34int entropy_decode(struct ape_ctx_t* ape_ctx, 34void entropy_decode(struct ape_ctx_t* ape_ctx,
35 unsigned char* inbuffer, int* firstbyte, 35 unsigned char* inbuffer, int* firstbyte,
36 int* bytesconsumed, 36 int* bytesconsumed,
37 int32_t* decoded0, int32_t* decoded1, 37 int32_t* decoded0, int32_t* decoded1,
38 int blockstodecode); 38 int blockstodecode);
39 39
40#endif 40#endif