search for: flac__bit

Displaying 2 results from an estimated 2 matches for "flac__bit".

2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...iers 'setmode', --- src/libFLAC/bitbuffer.c-dist 2005-05-25 16:07:23.000000000 +0200 +++ src/libFLAC/bitbuffer.c 2005-05-25 16:07:27.000000000 +0200 @@ -317,7 +317,7 @@ static FLAC__bool bitbuffer_read_from_cl * ***********************************************************************/ -FLAC__BitBuffer *FLAC__bitbuffer_new() +FLAC__BitBuffer *FLAC__bitbuffer_new(void) { FLAC__BitBuffer *bb = (FLAC__BitBuffer*)calloc(1, sizeof(FLAC__BitBuffer)); --- src/libFLAC/metadata_object.c-dist 2005-05-25 16:07:23.000000000 +0200 +++ src/libFLAC/metadata_object.c 2005-05-25 16:07:27.000000000 +020...
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...der.c +++ b/src/libFLAC/bitreader.c @@ -117,10 +117,6 @@ static const unsigned char byte_to_unary_table[] = { #define FLAC__U64L(x) x##LLU #endif -#ifndef FLaC__INLINE -#define FLaC__INLINE -#endif - /* WATCHOUT: assembly routines rely on the order in which these fields are declared */ struct FLAC__BitReader { /* any partially-consumed word at the head will stay right-justified as bits are consumed from the left */ @@ -138,7 +134,7 @@ struct FLAC__BitReader { FLAC__CPUInfo cpu_info; }; -static FLaC__INLINE void crc16_update_word_(FLAC__BitReader *br, uint32_t word) +static inline void crc1...