Lines Matching refs:FLAC__uint64

111 … seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t…
113 …k_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t…
116 …derSeekStatus file_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_o…
117 …derTellStatus file_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_…
118 …engthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,…
153 FLAC__uint64 samples_decoded;
174FLAC__uint64 first_frame_offset; /* hint to the seek routine of where in the stream the first audi…
175 FLAC__uint64 target_sample;
869 FLAC_API FLAC__uint64 FLAC__stream_decoder_get_total_samples(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_total_samples()
911 …LAC__stream_decoder_get_decode_position(const FLAC__StreamDecoder *decoder, FLAC__uint64 *position) in FLAC__stream_decoder_get_decode_position()
1145 FLAC_API FLAC__bool FLAC__stream_decoder_seek_absolute(FLAC__StreamDecoder *decoder, FLAC__uint64 s… in FLAC__stream_decoder_seek_absolute()
1147 FLAC__uint64 length; in FLAC__stream_decoder_seek_absolute()
1658 FLAC__uint64 xx; in read_metadata_seektable_()
2170 FLAC__uint64 xx; in read_frame_header_()
2448 …vate_->frame.header.number.sample_number = (FLAC__uint64)decoder->private_->fixed_block_size * (FL… in read_frame_header_()
2451 …header.number.sample_number = (FLAC__uint64)decoder->private_->stream_info.data.stream_info.min_bl… in read_frame_header_()
2463 …e_->frame.header.number.sample_number = (FLAC__uint64)decoder->private_->frame.header.blocksize * … in read_frame_header_()
2938 FLAC__uint64 this_frame_sample = frame->header.number.sample_number; in write_audio_frame_to_client_()
2939 FLAC__uint64 next_frame_sample = this_frame_sample + (FLAC__uint64)frame->header.blocksize; in write_audio_frame_to_client_()
2940 FLAC__uint64 target_sample = decoder->private_->target_sample; in write_audio_frame_to_client_()
2959 decoder->private_->last_frame.header.number.sample_number += (FLAC__uint64)delta; in write_audio_frame_to_client_()
2995 … seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t… in seek_to_absolute_sample_()
2997FLAC__uint64 first_frame_offset = decoder->private_->first_frame_offset, lower_bound, upper_bound,… in seek_to_absolute_sample_()
3002 const FLAC__uint64 total_samples = FLAC__stream_decoder_get_total_samples(decoder); in seek_to_absolute_sample_()
3054 FLAC__uint64 new_lower_bound = lower_bound; in seek_to_absolute_sample_()
3055 FLAC__uint64 new_upper_bound = upper_bound; in seek_to_absolute_sample_()
3056 FLAC__uint64 new_lower_bound_sample = lower_bound_sample; in seek_to_absolute_sample_()
3057 FLAC__uint64 new_upper_bound_sample = upper_bound_sample; in seek_to_absolute_sample_()
3130 …if(decoder->private_->seek_callback(decoder, (FLAC__uint64)pos, decoder->private_->client_data) !=… in seek_to_absolute_sample_()
3205 …k_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t… in seek_to_absolute_sample_ogg_()
3207 FLAC__uint64 left_pos = 0, right_pos = stream_length; in seek_to_absolute_sample_ogg_()
3208 FLAC__uint64 left_sample = 0, right_sample = FLAC__stream_decoder_get_total_samples(decoder); in seek_to_absolute_sample_ogg_()
3209 FLAC__uint64 this_frame_sample = (FLAC__uint64)0 - 1; in seek_to_absolute_sample_ogg_()
3210 FLAC__uint64 pos = 0; /* only initialized to avoid compiler warning */ in seek_to_absolute_sample_ogg_()
3224 static const FLAC__uint64 LINEAR_SEARCH_WITHIN_SAMPLES = FLAC__MAX_BLOCK_SIZE * 2; in seek_to_absolute_sample_ogg_()
3230 right_sample = (FLAC__uint64)(-1); in seek_to_absolute_sample_ogg_()
3242 …pos = (FLAC__uint64)((FLAC__double)(target_sample - left_sample) / (FLAC__double)(right_sample - l… in seek_to_absolute_sample_ogg_()
3258 …if(decoder->private_->seek_callback((FLAC__StreamDecoder*)decoder, (FLAC__uint64)pos, decoder->pri… in seek_to_absolute_sample_ogg_()
3353 FLAC__StreamDecoderSeekStatus file_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 in file_seek_callback_()
3365 FLAC__StreamDecoderTellStatus file_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 in file_tell_callback_()
3375 *absolute_byte_offset = (FLAC__uint64)pos; in file_tell_callback_()
3380 …engthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,… in file_length_callback_()
3390 *stream_length = (FLAC__uint64)filestats.st_size; in file_length_callback_()