search for: stream_decoder_read_metadata_

Displaying 4 results from an estimated 4 matches for "stream_decoder_read_metadata_".

2004 Sep 10
3
1.0 source candidate
...ld get you > enough to narrow it down. OK, here's the stack trace: (gdb) bt #0 FLAC__bitbuffer_read_raw_uint32 (bb=0x20000000008c8048, val=0x80000fffffffa498, bits=24, read_callback=0x20000000003b1008, client_data=0x60000000002beb20) at bitbuffer.c:1107 #1 0x2000000000123dc0 in stream_decoder_read_metadata_ ( decoder=0x60000000002beb20) at stream_decoder.c:633 #2 0x2000000000123300 in FLAC__stream_decoder_process_metadata ( decoder=0x60000000002beb20) at stream_decoder.c:427 #3 0x4000000000010320 in write_callback (encoder=0x60000000002b8290, buffer=0x60000000002f9df0 "fLaC",...
2004 Sep 10
0
1.0 source candidate
...; > OK, here's the stack trace: > > (gdb) bt > #0 FLAC__bitbuffer_read_raw_uint32 (bb=0x20000000008c8048, > val=0x80000fffffffa498, bits=24, > read_callback=0x20000000003b1008, > client_data=0x60000000002beb20) at bitbuffer.c:1107 > #1 0x2000000000123dc0 in stream_decoder_read_metadata_ ( > decoder=0x60000000002beb20) at stream_decoder.c:633 > #2 0x2000000000123300 in FLAC__stream_decoder_process_metadata ( > decoder=0x60000000002beb20) at stream_decoder.c:427 > #3 0x4000000000010320 in write_callback (encoder=0x60000000002b8290, > > buffer=0x60000...
2004 Sep 10
2
1.0 source candidate
On Fri, Jul 20, 2001 at 10:51:11PM -0400, Matt Zimmerman wrote: > This version seems to work at least partially on ia64. I am able to encode my > usual test WAV file now, but I still get a segfault during the self-tests. Interestingly enough, when I recompiled with --enable-debug to get a stack trace, it worked. Any ideas how to track down the problem? -- - mdz
2004 Sep 10
2
Developing SoundFont FLAC compressor using libFLAC
...which I would like to in the future). Unfortunately the decoder has given me the most trouble (also related to metadata). It appears that all the variations of decoders (stream, seekable-stream and file) don't handle application metadata. Looking at the code it seems it is just skipped over (stream_decoder_read_metadata_). In my case I could probably just use the file decoder, except it is impossible to get the application metadata or even a file descriptor. My proposal for libFLAC is to provide a couple functions, something like these: /* * Saves a metadata header to a buffer which is suitable for * writing...