• Home
  • Raw
  • Download

Lines Matching refs:FLAC__uint64

105 … seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t…
107 …k_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t…
110 …derSeekStatus file_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_o…
111 …derTellStatus file_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_…
112 …engthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,…
145 FLAC__uint64 samples_decoded;
166FLAC__uint64 first_frame_offset; /* hint to the seek routine of where in the stream the first audi…
167 FLAC__uint64 target_sample;
855 FLAC_API FLAC__uint64 FLAC__stream_decoder_get_total_samples(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_total_samples()
897 …LAC__stream_decoder_get_decode_position(const FLAC__StreamDecoder *decoder, FLAC__uint64 *position) in FLAC__stream_decoder_get_decode_position()
1133 FLAC_API FLAC__bool FLAC__stream_decoder_seek_absolute(FLAC__StreamDecoder *decoder, FLAC__uint64 s… in FLAC__stream_decoder_seek_absolute()
1135 FLAC__uint64 length; in FLAC__stream_decoder_seek_absolute()
1643 FLAC__uint64 xx; in read_metadata_seektable_()
2166 FLAC__uint64 xx; in read_frame_header_()
2444 …vate_->frame.header.number.sample_number = (FLAC__uint64)decoder->private_->fixed_block_size * (FL… in read_frame_header_()
2447 …header.number.sample_number = (FLAC__uint64)decoder->private_->stream_info.data.stream_info.min_bl… in read_frame_header_()
2459 …e_->frame.header.number.sample_number = (FLAC__uint64)decoder->private_->frame.header.blocksize * … in read_frame_header_()
2937 FLAC__uint64 this_frame_sample = frame->header.number.sample_number; in write_audio_frame_to_client_()
2938 FLAC__uint64 next_frame_sample = this_frame_sample + (FLAC__uint64)frame->header.blocksize; in write_audio_frame_to_client_()
2939 FLAC__uint64 target_sample = decoder->private_->target_sample; in write_audio_frame_to_client_()
2958 decoder->private_->last_frame.header.number.sample_number += (FLAC__uint64)delta; in write_audio_frame_to_client_()
2994 … seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t… in seek_to_absolute_sample_()
2996FLAC__uint64 first_frame_offset = decoder->private_->first_frame_offset, lower_bound, upper_bound,… in seek_to_absolute_sample_()
3001 const FLAC__uint64 total_samples = FLAC__stream_decoder_get_total_samples(decoder); in seek_to_absolute_sample_()
3053 FLAC__uint64 new_lower_bound = lower_bound; in seek_to_absolute_sample_()
3054 FLAC__uint64 new_upper_bound = upper_bound; in seek_to_absolute_sample_()
3055 FLAC__uint64 new_lower_bound_sample = lower_bound_sample; in seek_to_absolute_sample_()
3056 FLAC__uint64 new_upper_bound_sample = upper_bound_sample; in seek_to_absolute_sample_()
3123 FLAC__uint64 sample_range_16 = (upper_bound_sample - lower_bound_sample) >> 16; in seek_to_absolute_sample_()
3132 …if(decoder->private_->seek_callback(decoder, (FLAC__uint64)pos, decoder->private_->client_data) !=… in seek_to_absolute_sample_()
3208 …k_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 t… in seek_to_absolute_sample_ogg_()
3210 FLAC__uint64 left_pos = 0, right_pos = stream_length; in seek_to_absolute_sample_ogg_()
3211 FLAC__uint64 left_sample = 0, right_sample = FLAC__stream_decoder_get_total_samples(decoder); in seek_to_absolute_sample_ogg_()
3212 FLAC__uint64 this_frame_sample = (FLAC__uint64)0 - 1; in seek_to_absolute_sample_ogg_()
3213 FLAC__uint64 pos = 0; /* only initialized to avoid compiler warning */ in seek_to_absolute_sample_ogg_()
3227 static const FLAC__uint64 LINEAR_SEARCH_WITHIN_SAMPLES = FLAC__MAX_BLOCK_SIZE * 2; in seek_to_absolute_sample_ogg_()
3233 right_sample = (FLAC__uint64)(-1); in seek_to_absolute_sample_ogg_()
3245 …pos = (FLAC__uint64)((double)(target_sample - left_sample) / (double)(right_sample - left_sample) … in seek_to_absolute_sample_ogg_()
3261 …if(decoder->private_->seek_callback((FLAC__StreamDecoder*)decoder, (FLAC__uint64)pos, decoder->pri… in seek_to_absolute_sample_ogg_()
3357 FLAC__StreamDecoderSeekStatus file_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 in file_seek_callback_()
3369 FLAC__StreamDecoderTellStatus file_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 in file_tell_callback_()
3379 *absolute_byte_offset = (FLAC__uint64)pos; in file_tell_callback_()
3384 …engthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,… in file_length_callback_()
3394 *stream_length = (FLAC__uint64)filestats.st_size; in file_length_callback_()