Home
last modified time | relevance | path

Searched refs:FLAC__uint64 (Results 1 – 25 of 77) sorted by relevance

1234

/external/flac/src/flac/
Diffscan.c40 static FLAC__uint64 unpack64le_(const FLAC__byte *b) in unpack64le_()
42FLAC__uint64)b[0] + ((FLAC__uint64)b[1]<<8) + ((FLAC__uint64)b[2]<<16) + ((FLAC__uint64)b[3]<<24) … in unpack64le_()
Dencode.c70 FLAC__uint64 samples_left_to_process;
88FLAC__uint64 total_samples_to_encode; /* (i.e. "wide samples" aka "sample frames") WATCHOUT: may b…
89FLAC__uint64 unencoded_size; /* an estimate of the input size, only used in the progress indicator…
90 FLAC__uint64 bytes_written;
91 FLAC__uint64 samples_written;
100 FLAC__uint64 data_bytes;
144 …ion *spec, const char *inbasefilename, uint32_t sample_rate, FLAC__uint64 skip, FLAC__uint64 total…
147 …r_progress_callback(const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 s…
149 …Status flac_decoder_seek_callback(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_o…
150 …Status flac_decoder_tell_callback(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_…
[all …]
Ddecode.c64 FLAC__uint64 samples_processed;
77 FLAC__uint64 total_samples;
84 FLAC__uint64 decode_position;
107 …ion *spec, const char *inbasefilename, uint32_t sample_rate, FLAC__uint64 skip, FLAC__uint64 total…
108 static FLAC__bool write_iff_headers(FILE *f, DecoderSession *decoder_session, FLAC__uint64 samples);
110 static FLAC__bool write_aiff_form_comm_chunk(FILE *f, FLAC__uint64 samples, uint32_t bps, uint32_t …
113 static FLAC__bool write_little_endian_uint64(FILE *f, FLAC__uint64 val);
419 const FLAC__uint64 skip = (FLAC__uint64)d->skip_specification->value.samples; in DecoderSession_process()
443 const FLAC__uint64 data_size = d->total_samples * d->channels * ((d->bps+7)/8); in DecoderSession_process()
528 …ion *spec, const char *inbasefilename, uint32_t sample_rate, FLAC__uint64 skip, FLAC__uint64 total… in canonicalize_until_specification()
[all …]
Dforeign_metadata.c51 static FLAC__uint64 unpack64le_(const FLAC__byte *b) in unpack64le_()
53FLAC__uint64)b[0] + ((FLAC__uint64)b[1]<<8) + ((FLAC__uint64)b[2]<<16) + ((FLAC__uint64)b[3]<<24) … in unpack64le_()
355 FLAC__uint64 size; in read_from_wave64_()
369 size = (size+7) & (~((FLAC__uint64)7)); in read_from_wave64_()
/external/flac/include/FLAC++/
Dencoder.h147 …virtual bool set_total_samples_estimate(FLAC__uint64 value); ///< See FLAC__stream_encoder_set_…
154 …virtual void get_verify_decoder_error_stats(FLAC__uint64 *absolute_sample, uint32_t *frame_number,…
171 …virtual FLAC__uint64 get_total_samples_estimate() const; ///< See FLAC__stream_encoder_get_total…
188 virtual ::FLAC__StreamEncoderSeekStatus seek_callback(FLAC__uint64 absolute_byte_offset);
191 virtual ::FLAC__StreamEncoderTellStatus tell_callback(FLAC__uint64 *absolute_byte_offset);
204 …mEncoderSeekStatus seek_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_o…
205 …mEncoderTellStatus tell_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_…
248 …virtual void progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t …
253 …rogress_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 s…
Ddecoder.h137 …virtual FLAC__uint64 get_total_samples() const; ///< See FLAC__stream_decoder_ge…
143 …virtual bool get_decode_position(FLAC__uint64 *position) const; ///< See FLAC__stream_decoder_ge…
158 virtual bool seek_absolute(FLAC__uint64 sample); ///< See FLAC__stream_decoder_seek_absolute()
164 virtual ::FLAC__StreamDecoderSeekStatus seek_callback(FLAC__uint64 absolute_byte_offset);
167 virtual ::FLAC__StreamDecoderTellStatus tell_callback(FLAC__uint64 *absolute_byte_offset);
170 virtual ::FLAC__StreamDecoderLengthStatus length_callback(FLAC__uint64 *stream_length);
191 …ecoderSeekStatus seek_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_o…
192 …ecoderTellStatus tell_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_…
193 …erLengthStatus length_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,…
/external/exoplayer/tree/extensions/flac/src/main/jni/include/
Dflac_parser.h57 FLAC__uint64 getTotalSamples() const { return mStreamInfo.total_samples; } in getTotalSamples()
173 FLAC__StreamDecoderSeekStatus seekCallback(FLAC__uint64 absolute_byte_offset);
175 FLAC__uint64 *absolute_byte_offset);
176 FLAC__StreamDecoderLengthStatus lengthCallback(FLAC__uint64 *stream_length);
188 const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset,
191 const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset,
194 const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,
/external/flac/src/metaflac/
Doperations_shorthand_seektable.c38 FLAC__uint64 total_samples = 0; in do_shorthand_operation__add_seekpoints()
101 FLAC__uint64 samples_written;
102 FLAC__uint64 audio_offset, last_offset;
117 const FLAC__uint64 frame_first_sample = cd->samples_written; in write_callback_()
118 const FLAC__uint64 frame_last_sample = frame_first_sample + (FLAC__uint64)blocksize - 1; in write_callback_()
119 FLAC__uint64 test_sample; in write_callback_()
/external/flac/src/libFLAC++/
Dstream_encoder.cpp186 bool Stream::set_total_samples_estimate(FLAC__uint64 value) in set_total_samples_estimate()
235 …void Stream::get_verify_decoder_error_stats(FLAC__uint64 *absolute_sample, uint32_t *frame_number,… in get_verify_decoder_error_stats()
337 FLAC__uint64 Stream::get_total_samples_estimate() const in get_total_samples_estimate()
379 ::FLAC__StreamEncoderSeekStatus Stream::seek_callback(FLAC__uint64 absolute_byte_offset) in seek_callback()
385 ::FLAC__StreamEncoderTellStatus Stream::tell_callback(FLAC__uint64 *absolute_byte_offset) in tell_callback()
414 …ekStatus Stream::seek_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_o… in seek_callback_()
423 …llStatus Stream::tell_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_… in tell_callback_()
501 …void File::progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t fr… in progress_callback()
506 …rogress_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 s… in progress_callback_()
Dstream_decoder.cpp131 FLAC__uint64 Stream::get_total_samples() const in get_total_samples()
167 bool Stream::get_decode_position(FLAC__uint64 *position) const in get_decode_position()
227 bool Stream::seek_absolute(FLAC__uint64 sample) in seek_absolute()
233 ::FLAC__StreamDecoderSeekStatus Stream::seek_callback(FLAC__uint64 absolute_byte_offset) in seek_callback()
239 ::FLAC__StreamDecoderTellStatus Stream::tell_callback(FLAC__uint64 *absolute_byte_offset) in tell_callback()
245 ::FLAC__StreamDecoderLengthStatus Stream::length_callback(FLAC__uint64 *stream_length) in length_callback()
270 …ekStatus Stream::seek_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_o… in seek_callback_()
279 …llStatus Stream::tell_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_… in tell_callback_()
288 …Status Stream::length_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,… in length_callback_()
/external/flac/src/libFLAC/include/private/
Dstream_encoder.h51 …compute_partition_info_sums_intrin_sse2(const FLAC__int32 residual[], FLAC__uint64 abs_residual_pa…
56 …ompute_partition_info_sums_intrin_ssse3(const FLAC__int32 residual[], FLAC__uint64 abs_residual_pa…
61 …compute_partition_info_sums_intrin_avx2(const FLAC__int32 residual[], FLAC__uint64 abs_residual_pa…
Dbitmath.h95 static inline uint32_t FLAC__clz_soft_uint64(FLAC__uint64 word) in FLAC__clz_soft_uint64()
101 static inline uint32_t FLAC__clz_uint64(FLAC__uint64 v) in FLAC__clz_uint64()
126 static inline uint32_t FLAC__clz2_uint64(FLAC__uint64 v) in FLAC__clz2_uint64()
172 static inline uint32_t FLAC__bitmath_ilog2_wide(FLAC__uint64 v) in FLAC__bitmath_ilog2_wide()
Dogg_helper.h41 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *p…
42 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *p…
/external/flac/include/FLAC/
Dformat.h434 FLAC__uint64 sample_number;
535 FLAC__uint64 total_samples;
575 FLAC__uint64 sample_number;
578 FLAC__uint64 stream_offset;
597 extern FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
648 FLAC__uint64 offset;
667 FLAC__uint64 offset;
710 FLAC__uint64 lead_in;
Dstream_encoder.h591 …*FLAC__StreamEncoderSeekCallback)(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_o…
636 …*FLAC__StreamEncoderTellCallback)(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_…
678 …erProgressCallback)(const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 s…
1120 … FLAC__stream_encoder_set_total_samples_estimate(FLAC__StreamEncoder *encoder, FLAC__uint64 value);
1257 …er_get_verify_decoder_error_stats(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_sampl…
1430 FLAC_API FLAC__uint64 FLAC__stream_encoder_get_total_samples_estimate(const FLAC__StreamEncoder *en…
Dstream_decoder.h552 …*FLAC__StreamDecoderSeekCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_o…
590 …*FLAC__StreamDecoderTellCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_…
628 …LAC__StreamDecoderLengthCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length,…
926 FLAC_API FLAC__uint64 FLAC__stream_decoder_get_total_samples(const FLAC__StreamDecoder *decoder);
1007 …AC__stream_decoder_get_decode_position(const FLAC__StreamDecoder *decoder, FLAC__uint64 *position);
1551 FLAC_API FLAC__bool FLAC__stream_decoder_seek_absolute(FLAC__StreamDecoder *decoder, FLAC__uint64 s…
Dordinals.h49 typedef unsigned __int64 FLAC__uint64; typedef
65 typedef uint64_t FLAC__uint64; typedef
/external/flac/src/test_libFLAC++/
Dencoders.cpp111 ::FLAC__StreamEncoderSeekStatus seek_callback(FLAC__uint64 absolute_byte_offset);
112 ::FLAC__StreamEncoderTellStatus tell_callback(FLAC__uint64 *absolute_byte_offset);
144 ::FLAC__StreamEncoderSeekStatus StreamEncoder::seek_callback(FLAC__uint64 absolute_byte_offset) in seek_callback()
154 ::FLAC__StreamEncoderTellStatus StreamEncoder::tell_callback(FLAC__uint64 *absolute_byte_offset) in tell_callback()
162 *absolute_byte_offset = (FLAC__uint64)pos; in tell_callback()
180 …void progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_w…
183 void FileEncoder::progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint3… in progress_callback()
372 FLAC__uint64 absolute_sample; in test_stream_encoder()
/external/flac/src/share/grabbag/
Dseektable.c30 …_to_template(const char *spec, FLAC__bool only_explicit_placeholders, FLAC__uint64 total_samples_t… in grabbag__seektable_convert_specification_to_template()
91 …(total_samples_to_encode == 0 || (FLAC__uint64)n < total_samples_to_encode) /* number is not >= th… in grabbag__seektable_convert_specification_to_template()
93 … if(!FLAC__metadata_object_seektable_template_append_point(seektable_template, (FLAC__uint64)n)) in grabbag__seektable_convert_specification_to_template()
Dcuesheet.c243 …__StreamMetadata *cuesheet, uint32_t sample_rate, FLAC__bool is_cdda, FLAC__uint64 lead_out_offset) in local__cuesheet_parse_()
247 FLAC__uint64 forced_leadout_track_offset = 0; in local__cuesheet_parse_()
376 …if(is_cdda && track->num_indices > 0 && (FLAC__uint64)xx <= track->indices[track->num_indices-1].o… in local__cuesheet_parse_()
382 track->offset = (FLAC__uint64)xx; in local__cuesheet_parse_()
385 if((FLAC__uint64)xx <= prev->offset + prev->indices[prev->num_indices-1].offset) { in local__cuesheet_parse_()
394 track->indices[track->num_indices-1].offset = (FLAC__uint64)xx - track->offset; in local__cuesheet_parse_()
508 cs->lead_in = (FLAC__uint64)xx; in local__cuesheet_parse_()
537 forced_leadout_track_offset = (FLAC__uint64)offset; in local__cuesheet_parse_()
590 …, uint32_t *last_line_read, uint32_t sample_rate, FLAC__bool is_cdda, FLAC__uint64 lead_out_offset) in grabbag__cuesheet_parse()
/external/flac/examples/cpp/encode/file/
Dmain.cpp46 …virtual void progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t …
173 void OurEncoder::progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32… in progress_callback()
/external/flac/src/libFLAC/
Dmemory.c121 …__memory_alloc_aligned_uint64_array(size_t elements, FLAC__uint64 **unaligned_pointer, FLAC__uint6… in FLAC__memory_alloc_aligned_uint64_array()
123 FLAC__uint64 *pu; /* unaligned pointer */ in FLAC__memory_alloc_aligned_uint64_array()
125 FLAC__uint64 *pa; /* aligned pointer */ in FLAC__memory_alloc_aligned_uint64_array()
Dstream_decoder.c105 … 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()
[all …]
/external/flac/examples/c/encode/file/
Dmain.c39 …d progress_callback(const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 s…
166 void progress_callback(const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 in progress_callback()
/external/flac/src/test_grabbag/cuesheet/
Dmain.c32 …eet(const char *infilename, uint32_t sample_rate, FLAC__bool is_cdda, FLAC__uint64 lead_out_offset) in do_cuesheet()
118 FLAC__uint64 lead_out_offset; in main()
133 lead_out_offset = (FLAC__uint64)strtoul(argv[2], 0, 10); in main()

1234