Lines Matching refs:FLAC__uint64
134 … seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t…
136 …k_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t…
139 …derSeekStatus file_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_o…
140 …derTellStatus file_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_…
141 …engthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,…
179 FLAC__uint64 samples_decoded;
202 …FLAC__uint64 first_frame_offset; /* hint to the seek routine of where in the stream the first audi…
203 FLAC__uint64 target_sample;
895 FLAC_API FLAC__uint64 FLAC__stream_decoder_get_total_samples(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_total_samples()
937 …LAC__stream_decoder_get_decode_position(const FLAC__StreamDecoder *decoder, FLAC__uint64 *position) in FLAC__stream_decoder_get_decode_position()
1173 FLAC_API FLAC__bool FLAC__stream_decoder_seek_absolute(FLAC__StreamDecoder *decoder, FLAC__uint64 s… in FLAC__stream_decoder_seek_absolute()
1175 FLAC__uint64 length; in FLAC__stream_decoder_seek_absolute()
1677 FLAC__uint64 xx; in read_metadata_seektable_()
2149 FLAC__uint64 xx; in read_frame_header_()
2427 …vate_->frame.header.number.sample_number = (FLAC__uint64)decoder->private_->fixed_block_size * (FL… in read_frame_header_()
2430 …header.number.sample_number = (FLAC__uint64)decoder->private_->stream_info.data.stream_info.min_bl… in read_frame_header_()
2442 …e_->frame.header.number.sample_number = (FLAC__uint64)decoder->private_->frame.header.blocksize * … in read_frame_header_()
2921 FLAC__uint64 this_frame_sample = frame->header.number.sample_number; in write_audio_frame_to_client_()
2922 FLAC__uint64 next_frame_sample = this_frame_sample + (FLAC__uint64)frame->header.blocksize; in write_audio_frame_to_client_()
2923 FLAC__uint64 target_sample = decoder->private_->target_sample; in write_audio_frame_to_client_()
2942 decoder->private_->last_frame.header.number.sample_number += (FLAC__uint64)delta; in write_audio_frame_to_client_()
2980 … seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t… in seek_to_absolute_sample_()
2982 …FLAC__uint64 first_frame_offset = decoder->private_->first_frame_offset, lower_bound, upper_bound,… in seek_to_absolute_sample_()
2987 const FLAC__uint64 total_samples = FLAC__stream_decoder_get_total_samples(decoder); in seek_to_absolute_sample_()
3039 FLAC__uint64 new_lower_bound = lower_bound; in seek_to_absolute_sample_()
3040 FLAC__uint64 new_upper_bound = upper_bound; in seek_to_absolute_sample_()
3041 FLAC__uint64 new_lower_bound_sample = lower_bound_sample; in seek_to_absolute_sample_()
3042 FLAC__uint64 new_upper_bound_sample = upper_bound_sample; in seek_to_absolute_sample_()
3120 …if(decoder->private_->seek_callback(decoder, (FLAC__uint64)pos, decoder->private_->client_data) !=… in seek_to_absolute_sample_()
3195 …k_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t… in seek_to_absolute_sample_ogg_()
3197 FLAC__uint64 left_pos = 0, right_pos = stream_length; in seek_to_absolute_sample_ogg_()
3198 FLAC__uint64 left_sample = 0, right_sample = FLAC__stream_decoder_get_total_samples(decoder); in seek_to_absolute_sample_ogg_()
3199 FLAC__uint64 this_frame_sample = (FLAC__uint64)0 - 1; in seek_to_absolute_sample_ogg_()
3200 FLAC__uint64 pos = 0; /* only initialized to avoid compiler warning */ in seek_to_absolute_sample_ogg_()
3214 static const FLAC__uint64 LINEAR_SEARCH_WITHIN_SAMPLES = FLAC__MAX_BLOCK_SIZE * 2; in seek_to_absolute_sample_ogg_()
3220 right_sample = (FLAC__uint64)(-1); in seek_to_absolute_sample_ogg_()
3234 …pos = (FLAC__uint64)((FLAC__double)(FLAC__int64)(target_sample - left_sample) / (FLAC__double)(FLA… in seek_to_absolute_sample_ogg_()
3236 …pos = (FLAC__uint64)((FLAC__double)(target_sample - left_sample) / (FLAC__double)(right_sample - l… in seek_to_absolute_sample_ogg_()
3253 …if(decoder->private_->seek_callback((FLAC__StreamDecoder*)decoder, (FLAC__uint64)pos, decoder->pri… in seek_to_absolute_sample_ogg_()
3348 FLAC__StreamDecoderSeekStatus file_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 … in file_seek_callback_()
3360 FLAC__StreamDecoderTellStatus file_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 … in file_tell_callback_()
3370 *absolute_byte_offset = (FLAC__uint64)pos; in file_tell_callback_()
3375 …engthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,… in file_length_callback_()
3385 *stream_length = (FLAC__uint64)filestats.st_size; in file_length_callback_()