summaryrefslogtreecommitdiff
path: root/apps/codecs/libalac/stream.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-09-22 20:46:58 +0000
committerDave Chapman <dave@dchapman.com>2005-09-22 20:46:58 +0000
commitdebbe9747eb6eecfd79aab648212b55220922eb6 (patch)
treedfd131c1505b32e5b8201bce212ea49fc3b3574d /apps/codecs/libalac/stream.h
parent567718d8372564028ca85c8f5892c86659f14d4c (diff)
downloadrockbox-debbe9747eb6eecfd79aab648212b55220922eb6.tar.gz
rockbox-debbe9747eb6eecfd79aab648212b55220922eb6.zip
First Rockbox version of ALAC decoder - porting to work in Rockbox environment and some simple (but significant) optimisations
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7544 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libalac/stream.h')
-rw-r--r--apps/codecs/libalac/stream.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/apps/codecs/libalac/stream.h b/apps/codecs/libalac/stream.h
index 31f93d9059..95be0b56d0 100644
--- a/apps/codecs/libalac/stream.h
+++ b/apps/codecs/libalac/stream.h
@@ -3,9 +3,11 @@
3 3
4/* stream.h */ 4/* stream.h */
5 5
6#include <stdint.h> 6#include <inttypes.h>
7 7
8typedef struct stream_tTAG stream_t; 8typedef struct {
9 int eof;
10} stream_t;
9 11
10void stream_read(stream_t *stream, size_t len, void *buf); 12void stream_read(stream_t *stream, size_t len, void *buf);
11 13
@@ -22,9 +24,4 @@ void stream_skip(stream_t *stream, size_t skip);
22 24
23int stream_eof(stream_t *stream); 25int stream_eof(stream_t *stream);
24 26
25stream_t *stream_create_file(FILE *file,
26 int bigendian);
27void stream_destroy(stream_t *stream);
28
29#endif /* STREAM_H */ 27#endif /* STREAM_H */
30