/external/flac/libFLAC/include/private/ |
bitmath.h | 38 unsigned FLAC__bitmath_ilog2_wide(FLAC__uint64 v);
|
ogg_helper.h | 40 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data); 41 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data);
|
memory.h | 50 FLAC__bool FLAC__memory_alloc_aligned_uint64_array(unsigned elements, FLAC__uint64 **unaligned_pointer, FLAC__uint64 **aligned_pointer);
|
ogg_encoder_aspect.h | 50 FLAC__uint64 samples_written;
|
bitreader.h | 76 FLAC__bool FLAC__bitreader_read_raw_uint64(FLAC__BitReader *br, FLAC__uint64 *val, unsigned bits); 96 FLAC__bool FLAC__bitreader_read_utf8_uint64(FLAC__BitReader *br, FLAC__uint64 *val, FLAC__byte *raw, unsigned *rawlen);
|
bitwriter.h | 84 FLAC__bool FLAC__bitwriter_write_raw_uint64(FLAC__BitWriter *bw, FLAC__uint64 val, unsigned bits); 100 FLAC__bool FLAC__bitwriter_write_utf8_uint64(FLAC__BitWriter *bw, FLAC__uint64 val);
|
/external/flac/include/FLAC/ |
ordinals.h | 48 typedef unsigned __int64 FLAC__uint64; 55 typedef unsigned long long FLAC__uint64; 62 typedef uint64_t FLAC__uint64;
|
format.h | 433 FLAC__uint64 sample_number; 532 FLAC__uint64 total_samples; 572 FLAC__uint64 sample_number; 575 FLAC__uint64 stream_offset; 594 extern FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER; 645 FLAC__uint64 offset; 664 FLAC__uint64 offset; 707 FLAC__uint64 lead_in; [all...] |
stream_encoder.h | 567 * FLAC__StreamEncoderSeekStatus seek_cb(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data) 590 typedef FLAC__StreamEncoderSeekStatus (*FLAC__StreamEncoderSeekCallback)(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data); 609 * FLAC__StreamEncoderTellStatus tell_cb(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data) 618 * *absolute_byte_offset = (FLAC__uint64)pos; 635 typedef FLAC__StreamEncoderTellStatus (*FLAC__StreamEncoderTellCallback)(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data); 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); [all...] |
stream_decoder.h | 528 * FLAC__StreamDecoderSeekStatus seek_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data) 551 typedef FLAC__StreamDecoderSeekStatus (*FLAC__StreamDecoderSeekCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data); 563 * FLAC__StreamDecoderTellStatus tell_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data) 572 * *absolute_byte_offset = (FLAC__uint64)pos; 589 typedef FLAC__StreamDecoderTellStatus (*FLAC__StreamDecoderTellCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data); 600 * FLAC__StreamDecoderLengthStatus length_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data) 610 * *stream_length = (FLAC__uint64)filestats.st_size; 627 typedef FLAC__StreamDecoderLengthStatus (*FLAC__StreamDecoderLengthCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data); [all...] |
metadata.h | [all...] |
/external/flac/libFLAC/ |
memory.c | 54 *aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32))); 62 else if(sizeof(void*) == sizeof(FLAC__uint64)) 63 *aligned_address = (void*)(((FLAC__uint64)x + 31) & (FLAC__uint64)(-((FLAC__int64)32))); 132 FLAC__bool FLAC__memory_alloc_aligned_uint64_array(unsigned elements, FLAC__uint64 **unaligned_pointer, FLAC__uint64 **aligned_pointer) 134 FLAC__uint64 *pu; /* unaligned pointer */ 136 FLAC__uint64 *pa; /* aligned pointer */ 148 pu = (FLAC__uint64*)FLAC__memory_alloc_aligned(sizeof(*pu) * elements, &u.pv) [all...] |
bitmath.c | 70 unsigned FLAC__bitmath_ilog2_wide(FLAC__uint64 v)
|
stream_decoder.c | 134 static FLAC__bool seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 target_sample); 136 static FLAC__bool seek_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 target_sample); 139 static FLAC__StreamDecoderSeekStatus file_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data); 140 static FLAC__StreamDecoderTellStatus file_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data); 141 static FLAC__StreamDecoderLengthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data); 179 FLAC__uint64 samples_decoded; 202 FLAC__uint64 first_frame_offset; /* hint to the seek routine of where in the stream the first audio frame starts */ 203 FLAC__uint64 target_sample [all...] |
ogg_helper.c | 94 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data) 178 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data)
|
stream_encoder.c | 196 FLAC__uint64 abs_residual_partition_sums[], 216 FLAC__uint64 abs_residual_partition_sums[], 245 FLAC__uint64 abs_residual_partition_sums[], 261 FLAC__uint64 abs_residual_partition_sums[], 282 const FLAC__uint64 abs_residual_partition_sums[], 320 static FLAC__StreamEncoderSeekStatus file_seek_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data); 321 static FLAC__StreamEncoderTellStatus file_tell_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data); 358 FLAC__uint64 *abs_residual_partition_sums; /* workspace where the sum of abs(candidate residual) for each partition is stored */ 399 FLAC__uint64 bytes_written; 400 FLAC__uint64 samples_written [all...] |
float.c | 229 static const FLAC__uint64 log2_lookup_wide[] = {
|
fixed.c | 143 static FLAC__fixedpoint local__compute_rbps_wide_integerized(FLAC__uint64 err, FLAC__uint32 n) 296 FLAC__uint64 total_error_0 = 0, total_error_1 = 0, total_error_2 = 0, total_error_3 = 0, total_error_4 = 0;
|
format.c | 89 FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER = FLAC__U64L(0xffffffffffffffff); 245 FLAC__uint64 prev_sample_number = 0;
|
metadata_iterators.c | 84 static void pack_uint64_(FLAC__uint64 val, FLAC__byte *b, unsigned bytes); 87 static FLAC__uint64 unpack_uint64_(FLAC__byte *b, unsigned bytes); 288 FLAC__uint64 max_area_seen = 0; 289 FLAC__uint64 max_depth_seen = 0; 306 FLAC__uint64 area = (FLAC__uint64)obj->data.picture.width * (FLAC__uint64)obj->data.picture.height; [all...] |
metadata_object.c | [all...] |
bitreader.c | 525 FLAC__bool FLAC__bitreader_read_raw_uint64(FLAC__BitReader *br, FLAC__uint64 *val, unsigned bits) [all...] |
bitwriter.c | 388 FLaC__INLINE FLAC__bool FLAC__bitwriter_write_raw_uint64(FLAC__BitWriter *bw, FLAC__uint64 val, unsigned bits) 827 FLAC__bool FLAC__bitwriter_write_utf8_uint64(FLAC__BitWriter *bw, FLAC__uint64 val)
|
/external/flac/libFLAC/include/protected/ |
stream_encoder.h | 101 FLAC__uint64 total_samples_estimate; 104 FLAC__uint64 streaminfo_offset, seektable_offset, audio_offset;
|
/frameworks/av/media/libstagefright/ |
FLACExtractor.cpp | 99 FLAC__uint64 getTotalSamples() const { 109 MediaBuffer *readBuffer(FLAC__uint64 sample) { 148 MediaBuffer *readBuffer(bool doSeek, FLAC__uint64 sample); 158 FLAC__uint64 absolute_byte_offset); 160 FLAC__uint64 *absolute_byte_offset); 162 FLAC__uint64 *stream_length); 176 FLAC__uint64 absolute_byte_offset, 180 FLAC__uint64 *absolute_byte_offset, 184 FLAC__uint64 *stream_length, 219 FLAC__uint64 absolute_byte_offset, void *client_data [all...] |