Displaying 3 results from an estimated 3 matches for "lihe".
Did you mean:
life
2004 Sep 10
2
Error initializing flac stream decoder.
Thanks for that email. The one lihe change I made is this :
from #define FLAC__MAX_RICE_PARTITION_ORDER (15u)
to #define FLAC__MAX_RICE_PARTITION_ORDER (6u)
and that seemed to make decoder_new() happy, but it's promptly crashing
after making a call to the read callback (below), then to the meta
callback. The meta callback d...
2004 Sep 10
1
Error initializing flac stream decoder.
...unsigned order;
unsigned parameters[1 << 6];
unsigned raw_bits[1 << 6];
} FLAC__EntropyCodingMethod_PartitionedRice;
Any other thoughts?
Thanks,
Reza
Josh Coalson wrote:
> --- Reza Naima <reza@reza.net> wrote:
>
>>Thanks for that email. The one lihe change I made is this :
>>
>>from #define FLAC__MAX_RICE_PARTITION_ORDER (15u)
>>to #define FLAC__MAX_RICE_PARTITION_ORDER (6u)
>>
>>and that seemed to make decoder_new() happy, but it's promptly
>>crashing
>>...
>
>
> Don't change the...
2004 Sep 10
2
Error initializing flac stream decoder.
I've cross-compiled flac for the armv4l processor (rio receiver), and
i'm trying to start up a decode thread :
#include <FLAC/stream_decoder.h>
....
FLAC__StreamDecoder *flac = NULL;
flac = FLAC__stream_decoder_new();
if (flac == NULL) {
printf("[DECODE] Unable to initalize flac object\n");