@@ -267,7 +267,7 @@ void FLAC__bitwriter_release_buffer(FLAC__BitWriter *bw)
267267 (void )bw ;
268268}
269269
270- static INLINE FLAC__bool FLAC__bitwriter_write_zeroes (FLAC__BitWriter * bw , unsigned bits )
270+ FLAC__bool FLAC__bitwriter_write_zeroes (FLAC__BitWriter * bw , unsigned bits )
271271{
272272 unsigned n ;
273273
@@ -305,7 +305,7 @@ static INLINE FLAC__bool FLAC__bitwriter_write_zeroes(FLAC__BitWriter *bw, unsig
305305 return true;
306306}
307307
308- static INLINE FLAC__bool FLAC__bitwriter_write_raw_uint32 (FLAC__BitWriter * bw , FLAC__uint32 val , unsigned bits )
308+ FLAC__bool FLAC__bitwriter_write_raw_uint32 (FLAC__BitWriter * bw , FLAC__uint32 val , unsigned bits )
309309{
310310 register unsigned left ;
311311
@@ -344,7 +344,7 @@ static INLINE FLAC__bool FLAC__bitwriter_write_raw_uint32(FLAC__BitWriter *bw, F
344344 return true;
345345}
346346
347- static INLINE FLAC__bool FLAC__bitwriter_write_raw_int32 (FLAC__BitWriter * bw , FLAC__int32 val , unsigned bits )
347+ FLAC__bool FLAC__bitwriter_write_raw_int32 (FLAC__BitWriter * bw , FLAC__int32 val , unsigned bits )
348348{
349349 /* zero-out unused bits */
350350 if (bits < 32 )
@@ -353,7 +353,7 @@ static INLINE FLAC__bool FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FL
353353 return FLAC__bitwriter_write_raw_uint32 (bw , (FLAC__uint32 )val , bits );
354354}
355355
356- static INLINE FLAC__bool FLAC__bitwriter_write_raw_uint64 (FLAC__BitWriter * bw , FLAC__uint64 val , unsigned bits )
356+ FLAC__bool FLAC__bitwriter_write_raw_uint64 (FLAC__BitWriter * bw , FLAC__uint64 val , unsigned bits )
357357{
358358 /* this could be a little faster but it's not used for much */
359359 if (bits > 32 ) {
@@ -365,7 +365,7 @@ static INLINE FLAC__bool FLAC__bitwriter_write_raw_uint64(FLAC__BitWriter *bw, F
365365 return FLAC__bitwriter_write_raw_uint32 (bw , (FLAC__uint32 )val , bits );
366366}
367367
368- static INLINE FLAC__bool FLAC__bitwriter_write_raw_uint32_little_endian (FLAC__BitWriter * bw , FLAC__uint32 val )
368+ FLAC__bool FLAC__bitwriter_write_raw_uint32_little_endian (FLAC__BitWriter * bw , FLAC__uint32 val )
369369{
370370 /* this doesn't need to be that fast as currently it is only used for vorbis comments */
371371
@@ -381,7 +381,7 @@ static INLINE FLAC__bool FLAC__bitwriter_write_raw_uint32_little_endian(FLAC__Bi
381381 return true;
382382}
383383
384- static INLINE FLAC__bool FLAC__bitwriter_write_byte_block (FLAC__BitWriter * bw , const FLAC__byte vals [], unsigned nvals )
384+ FLAC__bool FLAC__bitwriter_write_byte_block (FLAC__BitWriter * bw , const FLAC__byte vals [], unsigned nvals )
385385{
386386 unsigned i ;
387387
0 commit comments