Searched refs:FLAC__MAX_BLOCK_SIZE (Results 1 – 10 of 10) sorted by relevance
/external/flac/src/flac/ |
D | decode.c | 1114 …FLAC__int8 s8buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int32)]; /* WATCHOU… in write_callback() 1115 FLAC__uint8 u8buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int32)]; in write_callback() 1116 FLAC__int16 s16buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int16)]; in write_callback() 1117 FLAC__uint16 u16buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS * sizeof(FLAC__int16)]; in write_callback() 1118 FLAC__int32 s32buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS]; in write_callback() 1119 FLAC__uint32 u32buffer [FLAC__MAX_BLOCK_SIZE * FLAC__MAX_CHANNELS]; in write_callback()
|
D | analyze.c | 41 pair_t buckets[FLAC__MAX_BLOCK_SIZE];
|
D | main.c | 1067 if((i < (int)FLAC__MIN_BLOCK_SIZE || i > (int)FLAC__MAX_BLOCK_SIZE)) in parse_option() 1068 …%c) '%d', must be >= %u and <= %u\n", short_option, i, FLAC__MIN_BLOCK_SIZE, FLAC__MAX_BLOCK_SIZE); in parse_option()
|
/external/flac/src/metaflac/ |
D | options.c | 417 …nt32.value < FLAC__MIN_BLOCK_SIZE || op->argument.streaminfo_uint32.value > FLAC__MAX_BLOCK_SIZE) { in parse_option() 418 … "ERROR (--%s): value must be >= %u and <= %u\n", opt, FLAC__MIN_BLOCK_SIZE, FLAC__MAX_BLOCK_SIZE); in parse_option() 426 …nt32.value < FLAC__MIN_BLOCK_SIZE || op->argument.streaminfo_uint32.value > FLAC__MAX_BLOCK_SIZE) { in parse_option() 427 … "ERROR (--%s): value must be >= %u and <= %u\n", opt, FLAC__MIN_BLOCK_SIZE, FLAC__MAX_BLOCK_SIZE); in parse_option()
|
/external/flac/src/libFLAC/ |
D | stream_encoder_framing.c | 253 FLAC__ASSERT(header->blocksize > 0 && header->blocksize <= FLAC__MAX_BLOCK_SIZE); in FLAC__frame_add_header() 255 FLAC__ASSERT(FLAC__MAX_BLOCK_SIZE <= 65535u); in FLAC__frame_add_header()
|
D | fixed.c | 72 FLAC__ASSERT(n <= FLAC__MAX_BLOCK_SIZE); in local__compute_rbps_integerized() 151 FLAC__ASSERT(n <= FLAC__MAX_BLOCK_SIZE); in local__compute_rbps_wide_integerized()
|
D | stream_encoder.c | 695 …tected_->blocksize < FLAC__MIN_BLOCK_SIZE || encoder->protected_->blocksize > FLAC__MAX_BLOCK_SIZE) in init_stream_internal_() 899 FLAC__ASSERT(FLAC__MAX_BLOCK_SIZE <= 65535); in init_stream_internal_()
|
D | stream_decoder.c | 3505 static const FLAC__uint64 LINEAR_SEARCH_WITHIN_SAMPLES = FLAC__MAX_BLOCK_SIZE * 2; in seek_to_absolute_sample_ogg_()
|
/external/flac/include/FLAC/ |
D | format.h | 99 #define FLAC__MAX_BLOCK_SIZE (65535u) macro
|
/external/flac/src/libFLAC++/ |
D | metadata.cpp | 299 FLAC__ASSERT(value <= FLAC__MAX_BLOCK_SIZE); in set_min_blocksize() 307 FLAC__ASSERT(value <= FLAC__MAX_BLOCK_SIZE); in set_max_blocksize()
|