1
0
Fork 0
forked from len0rd/rockbox

Add capability to parse AAC files in M4A.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7705 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2005-10-31 20:50:32 +00:00
parent da1949b109
commit 407be69b8c
2 changed files with 180 additions and 59 deletions

View file

@ -102,7 +102,14 @@ uint8_t stream_read_uint8(stream_t *stream)
void stream_skip(stream_t *stream, size_t skip)
{
(void)stream;
stream->ci->advance_buffer(skip);
#if 1
char buf;
while (skip > 0) {
stream->ci->read_filebuf(&buf,1);
skip--;
}
#endif
//stream->ci->advance_buffer(skip);
}
int stream_eof(stream_t *stream)