Displaying 4 results from an estimated 4 matches for "got_a_frame".
2004 Sep 30
1
[don@donarmstrong.com: Bug#274301: libflac4 segfaults on corrupt flac files]
...nnel=1, bps=16, order=3) at stream_decoder.c:1832
subframe = (FLAC__Subframe_Fixed *) 0x805f988
i32 = -31667
u32 = 14
u = 14
#3 0x4021ecd7 in read_subframe_ (decoder=0x805ba58, channel=1, bps=1) at stream_decoder.c:1751
x = 22
wasted_bits = 0
#4 0x4021e190 in read_frame_ (decoder=0x805ba58, got_a_frame=0xbffff360) at stream_decoder.c:1353
bps = 4294966980
channel = 1
i = 4294966980
mid = 1
side = 4608
left = 8
frame_crc = 4608
x = 248
#5 0x4021c6e0 in FLAC__stream_decoder_process_single (decoder=0x805ba58) at stream_decoder.c:596
got_a_frame = 0
#6 0x08053774 in EasyFLAC__process_singl...
2004 Sep 10
3
0.9 problems
...der_read_subframe_fixed_ (decoder=0x1202b9c30,
channel=0, bps=8, order=2) at stream_decoder.c:1158
#2 0x200000eeb34 in stream_decoder_read_subframe_ (decoder=0x1202b9c30,
channel=0, bps=8) at stream_decoder.c:1069
#3 0x200000ed3a4 in stream_decoder_read_frame_ (decoder=0x1202b9c30,
got_a_frame=0x11ffff9e8) at stream_decoder.c:673
#4 0x200000eb810 in FLAC__stream_decoder_process_whole_stream (
decoder=0x1202b9c30) at stream_decoder.c:240
#5 0x200000e5434 in FLAC__file_decoder_process_whole_file (
decoder=0x1202b9990) at file_decoder.c:181
#6 0x1200030cc in decode_wav (infile=0x...
2004 Sep 10
5
0.9 problems
Problems in FLAC 0.9:
- On alpha, flac immediately dumps core for both encoding and
decoding (FreeBSD/alpha).
- The distribution Makefile.in files haven't been generated with
"automake --include-deps". The resulting Makefiles aren't fully
portable; in particular they break with BSD make. In the future,
care should be taken to use "--include-deps".
- What is
2005 Feb 02
0
two small-ish optimizations (death by a thousand cuts)
...*(rchan++) = right >> 1;
+ }
+ break;
+ default:
+ FLAC__ASSERT(0);
+ break;
+ }
+}
+
FLAC__bool allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels)
{
unsigned i;
@@ -1380,8 +1418,6 @@
FLAC__bool read_frame_(FLAC__StreamDecoder *decoder, FLAC__bool *got_a_frame, FLAC__bool do_full_decode)
{
unsigned channel;
- unsigned i;
- FLAC__int32 mid, side, left, right;
FLAC__uint16 frame_crc; /* the one we calculate from the input stream */
FLAC__uint32 x;
@@ -1446,41 +1482,9 @@
if(!FLAC__bitbuffer_read_raw_uint32(decoder->private_->input, &x,...