Searched refs:total_frames_estimate (Results 1 - 2 of 2) sorted by relevance

/external/flac/include/FLAC/
H A Dstream_encoder.h661 * writing a frame. The \c total_frames_estimate argument to the
672 * \param total_frames_estimate The estimate of the total number of
677 typedef void (*FLAC__StreamEncoderProgressCallback)(const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, unsigned frames_written, unsigned total_frames_estimate, void *client_data);
/external/flac/libFLAC/
H A Dstream_encoder.c402 unsigned total_frames_estimate; member in struct:FLAC__StreamEncoderPrivate
1240 encoder->private_->total_frames_estimate = (unsigned)((FLAC__stream_encoder_get_total_samples_estimate(encoder) + blocksize - 1) / blocksize);
4332 encoder->private_->progress_callback(encoder, encoder->private_->bytes_written+bytes, encoder->private_->samples_written+samples, encoder->private_->frames_written+(samples?1:0), encoder->private_->total_frames_estimate, encoder->private_->client_data);

Completed in 238 milliseconds