From a7a2baa97f8ee7c4d1b751d66f095120b9f62778 Mon Sep 17 00:00:00 2001 From: Andree Buschmann Date: Sat, 10 May 2008 15:15:10 +0000 Subject: Some changes for musepack: Disable SV4-SV6 support (I guess I am the only one who oned such). Remove tabs, perform some minor code beautification and add ICONST_ATTR to some requantization constants. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17438 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libmusepack/reader.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'apps/codecs/libmusepack/reader.h') diff --git a/apps/codecs/libmusepack/reader.h b/apps/codecs/libmusepack/reader.h index 83ef589..397319b 100644 --- a/apps/codecs/libmusepack/reader.h +++ b/apps/codecs/libmusepack/reader.h @@ -44,19 +44,19 @@ /// a functional reader. typedef struct mpc_reader_t { /// Reads size bytes of data into buffer at ptr. - mpc_int32_t (*read)(void *t, void *ptr, mpc_int32_t size); + mpc_int32_t (*read)(void *t, void *ptr, mpc_int32_t size); /// Seeks to byte position offset. - mpc_bool_t (*seek)(void *t, mpc_int32_t offset); + mpc_bool_t (*seek)(void *t, mpc_int32_t offset); /// Returns the current byte offset in the stream. - mpc_int32_t (*tell)(void *t); + mpc_int32_t (*tell)(void *t); /// Returns the total length of the source stream, in bytes. - mpc_int32_t (*get_size)(void *t); + mpc_int32_t (*get_size)(void *t); /// True if the stream is a seekable stream. - mpc_bool_t (*canseek)(void *t); + mpc_bool_t (*canseek)(void *t); /// Field that can be used to identify a particular instance of /// reader or carry along data associated with that reader. @@ -65,7 +65,7 @@ typedef struct mpc_reader_t { } mpc_reader; /* No standard STDIO based reader in Rockbox typedef struct mpc_reader_file_t { - mpc_reader reader; + mpc_reader reader; FILE *file; long file_size; -- cgit v1.1