diff options
author | Dave Chapman <dave@dchapman.com> | 2005-02-16 20:13:12 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-02-16 20:13:12 +0000 |
commit | f729fce058d863b6df15ea4ca22e033820b783a0 (patch) | |
tree | 2ef91e47b8631b8e4ad6d6a765b15a294b4adde3 /apps/codecs/libFLAC/include | |
parent | 23b3a45acd70239479158afa1c994f0fd32793cd (diff) |
Fix some compiler warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5986 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libFLAC/include')
-rw-r--r-- | apps/codecs/libFLAC/include/FLAC/seekable_stream_decoder.h | 2 | ||||
-rw-r--r-- | apps/codecs/libFLAC/include/FLAC/stream_decoder.h | 2 | ||||
-rw-r--r-- | apps/codecs/libFLAC/include/private/bitbuffer.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/codecs/libFLAC/include/FLAC/seekable_stream_decoder.h b/apps/codecs/libFLAC/include/FLAC/seekable_stream_decoder.h index dee5a89cef..68a791b3a2 100644 --- a/apps/codecs/libFLAC/include/FLAC/seekable_stream_decoder.h +++ b/apps/codecs/libFLAC/include/FLAC/seekable_stream_decoder.h @@ -392,7 +392,7 @@ typedef void (*FLAC__SeekableStreamDecoderErrorCallback)(const FLAC__SeekableStr * \retval FLAC__SeekableStreamDecoder* * \c NULL if there was an error allocating memory, else the new instance. */ -FLAC_API FLAC__SeekableStreamDecoder *FLAC__seekable_stream_decoder_new(); +FLAC_API FLAC__SeekableStreamDecoder *FLAC__seekable_stream_decoder_new(void); /** Free a decoder instance. Deletes the object pointed to by \a decoder. * diff --git a/apps/codecs/libFLAC/include/FLAC/stream_decoder.h b/apps/codecs/libFLAC/include/FLAC/stream_decoder.h index 6cd59d42a9..99a3bb36ec 100644 --- a/apps/codecs/libFLAC/include/FLAC/stream_decoder.h +++ b/apps/codecs/libFLAC/include/FLAC/stream_decoder.h @@ -396,7 +396,7 @@ typedef void (*FLAC__StreamDecoderErrorCallback)(const FLAC__StreamDecoder *deco * \retval FLAC__StreamDecoder* * \c NULL if there was an error allocating memory, else the new instance. */ -FLAC_API FLAC__StreamDecoder *FLAC__stream_decoder_new(); +FLAC_API FLAC__StreamDecoder *FLAC__stream_decoder_new(void); /** Free a decoder instance. Deletes the object pointed to by \a decoder. * diff --git a/apps/codecs/libFLAC/include/private/bitbuffer.h b/apps/codecs/libFLAC/include/private/bitbuffer.h index c505fcfd47..886f97349f 100644 --- a/apps/codecs/libFLAC/include/private/bitbuffer.h +++ b/apps/codecs/libFLAC/include/private/bitbuffer.h @@ -56,7 +56,7 @@ typedef struct FLAC__BitBuffer FLAC__BitBuffer; /* * construction, deletion, initialization, cloning functions */ -FLAC__BitBuffer *FLAC__bitbuffer_new(); +FLAC__BitBuffer *FLAC__bitbuffer_new(void); void FLAC__bitbuffer_delete(FLAC__BitBuffer *bb); FLAC__bool FLAC__bitbuffer_init(FLAC__BitBuffer *bb); FLAC__bool FLAC__bitbuffer_init_from(FLAC__BitBuffer *bb, const FLAC__byte buffer[], unsigned bytes); @@ -142,7 +142,7 @@ FLAC__bool FLAC__bitbuffer_read_raw_int64(FLAC__BitBuffer *bb, FLAC__int64 *val, FLAC__bool FLAC__bitbuffer_read_raw_uint32_little_endian(FLAC__BitBuffer *bb, FLAC__uint32 *val, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data); /*only for bits=32*/ FLAC__bool FLAC__bitbuffer_skip_bits_no_crc(FLAC__BitBuffer *bb, unsigned bits, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data); /* WATCHOUT: does not CRC the skipped data! */ /*@@@@ add to unit tests */ FLAC__bool FLAC__bitbuffer_read_byte_block_aligned_no_crc(FLAC__BitBuffer *bb, FLAC__byte *val, unsigned nvals, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data); /* val may be 0 to skip bytes instead of reading them */ /* WATCHOUT: does not CRC the read data! */ -FLAC__bool FLAC__bitbuffer_read_unary_unsigned(FLAC__BitBuffer *bb, unsigned *val, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data); +FLAC__bool FLAC__bitbuffer_read_unary_unsigned(FLAC__BitBuffer *bb, FLAC__uint32 *val, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data); #ifdef FLAC__SYMMETRIC_RICE FLAC__bool FLAC__bitbuffer_read_symmetric_rice_signed(FLAC__BitBuffer *bb, int *val, unsigned parameter, FLAC__bool (*read_callback)(FLAC__byte buffer[], unsigned *bytes, void *client_data), void *client_data); #endif |