Searched refs:max_partition_order (Results 1 – 5 of 5) sorted by relevance
/external/flac/libFLAC/include/private/ |
D | stream_encoder.h | 52 …, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned b… 57 …, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned b… 62 …, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned b…
|
D | format.h | 43 …sure_size(FLAC__EntropyCodingMethod_PartitionedRiceContents *object, unsigned max_partition_order);
|
/external/flac/libFLAC/ia32/ |
D | stream_encoder_asm.nasm | 51 ; unsigned max_partition_order 63 ;; [esp + 24] unsigned max_partition_order 74 ;; [esp + 48] unsigned max_partition_order 81 mov [esp], eax ; [esp] <- partitions = 1u << max_partition_order; 84 mov [esp + 4], eax ; [esp + 4] <- default_partition_samples = blocksize >> max_partition_order; 87 ; first do max_partition_order 125 sub ecx, byte 1 ; ecx <- partition_order = (int)max_partition_order - 1;
|
/external/flac/libFLAC/ |
D | format.c | 569 …nsure_size(FLAC__EntropyCodingMethod_PartitionedRiceContents *object, unsigned max_partition_order) in FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size() argument 575 if(object->capacity_by_order < max_partition_order) { in FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size() 576 …== (object->parameters = realloc(object->parameters, sizeof(unsigned)*(1 << max_partition_order)))) in FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size() 578 …if(0 == (object->raw_bits = realloc(object->raw_bits, sizeof(unsigned)*(1 << max_partition_order))… in FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size() 580 memset(object->raw_bits, 0, sizeof(unsigned)*(1 << max_partition_order)); in FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size() 581 object->capacity_by_order = max_partition_order; in FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size()
|
D | stream_encoder.c | 145 unsigned max_partition_order, 184 unsigned max_partition_order, 206 unsigned max_partition_order, 232 unsigned max_partition_order, 245 unsigned max_partition_order, 255 unsigned max_partition_order 350 …, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned b… 3117 …nnel, min_partition_order = encoder->protected_->min_residual_partition_order, max_partition_order; in process_subframes_() local 3124 max_partition_order = 0; in process_subframes_() 3127 …max_partition_order = FLAC__format_get_max_rice_partition_order_from_blocksize(encoder->protected_… in process_subframes_() [all …]
|