summaryrefslogtreecommitdiff
path: root/apps/codecs/libalac/stream.h
diff options
context:
space:
mode:
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