search for: seekable_stream

Displaying 3 results from an estimated 3 matches for "seekable_stream".

2006 Mar 19
0
Patch -- Decode Position for libFLAC++ file and seekable_stream decoder
...blocksize(decoder_); } + bool File::get_decode_position(FLAC__uint64 *position) const + { + FLAC__ASSERT(is_valid()); + return (bool)::FLAC__file_decoder_get_decode_position(decoder_, position); + } + File::State File::init() { FLAC__ASSERT(0 != decoder_); Index: src/libFLAC++/seekable_stream_decoder.cpp =================================================================== RCS file: /cvsroot/flac/flac/src/libFLAC++/seekable_stream_decoder.cpp,v retrieving revision 1.9 diff -u -r1.9 seekable_stream_decoder.cpp --- src/libFLAC++/seekable_stream_decoder.cpp 25 Jan 2005 04:18:35 -0000 1.9 +++...
2004 Sep 10
2
process_single
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [To: flac-dev@lists.sourceforge.net] Has anyone successfully decoded a FLAC by a series of process_single's (I'm using the seekable_stream interface)? Whenever the process_single make a read callback, then next time I call process single, the decoder losses sync. I'm trying to determine if it is a problem in my code, or a problem in libFLAC. I'd usually guess it would be my code, but the code at my end is pretty simple, and...
2004 Sep 10
0
process_single
--- Russell O'Connor <roconnor@Math.Berkeley.EDU> wrote: > Has anyone successfully decoded a FLAC by a series of > process_single's > (I'm using the seekable_stream interface)? > > Whenever the process_single make a read callback, then next time I > call > process single, the decoder losses sync. > > I'm trying to determine if it is a problem in my code, or a problem > in > libFLAC. > > I'd usually guess it would be my...