Displaying 3 results from an estimated 3 matches for "flac__bitbuffer".
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 +0200
@@ -...
2004 Sep 10
3
Altivec, automake
I think I've gotten FLAC__lpc_restore_signal() about as good as I'm going to
get it.
Here's what I have:
-a new file, lpc_asm.s, which has the assembly routines
-changes to cpu.h, cpu.c, and stream_decoder.c to enable them
-changes to configure.in to support the new cpu stuff
-a preliminary Makefile.am
-maybe something else I'm forgetting
Now automake complains that configure.in
2004 Sep 10
2
Altivec, automake
..._len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]);
void (*local_lpc_restore_signal_16bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]);
void *client_data;
FLAC__BitBuffer *input;
FLAC__int32 *output[FLAC__MAX_CHANNELS];
! FLAC__int32 *residual[FLAC__MAX_CHANNELS];
FLAC__EntropyCodingMethod_PartitionedRiceContents partitioned_rice_contents[FLAC__MAX_CHANNELS];
unsigned output_capacity, output_channels;
FLAC__uint32 last_frame_number;
--- 101,111 ----...