From debbe9747eb6eecfd79aab648212b55220922eb6 Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Thu, 22 Sep 2005 20:46:58 +0000 Subject: 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 --- apps/codecs/libalac/stream.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'apps/codecs/libalac/stream.h') 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 @@ /* stream.h */ -#include +#include -typedef struct stream_tTAG stream_t; +typedef struct { + int eof; +} stream_t; void stream_read(stream_t *stream, size_t len, void *buf); @@ -22,9 +24,4 @@ void stream_skip(stream_t *stream, size_t skip); int stream_eof(stream_t *stream); -stream_t *stream_create_file(FILE *file, - int bigendian); -void stream_destroy(stream_t *stream); - #endif /* STREAM_H */ - -- cgit v1.2.3