OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:max_partition_order
(Results
1 - 3
of
3
) sorted by null
/external/flac/libFLAC/include/private/
format.h
42
FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(FLAC__EntropyCodingMethod_PartitionedRiceContents *object, unsigned
max_partition_order
);
/external/flac/libFLAC/
format.c
577
FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(FLAC__EntropyCodingMethod_PartitionedRiceContents *object, unsigned
max_partition_order
)
583
if(object->capacity_by_order <
max_partition_order
) {
584
if(0 == (object->parameters = (unsigned*)realloc(object->parameters, sizeof(unsigned)*(1 <<
max_partition_order
))))
586
if(0 == (object->raw_bits = (unsigned*)realloc(object->raw_bits, sizeof(unsigned)*(1 <<
max_partition_order
))))
588
memset(object->raw_bits, 0, sizeof(unsigned)*(1 <<
max_partition_order
));
589
object->capacity_by_order =
max_partition_order
;
stream_encoder.c
165
unsigned
max_partition_order
,
204
unsigned
max_partition_order
,
226
unsigned
max_partition_order
,
252
unsigned
max_partition_order
,
265
unsigned
max_partition_order
,
275
unsigned
max_partition_order
2932
unsigned channel, min_partition_order = encoder->protected_->min_residual_partition_order,
max_partition_order
;
local
[
all
...]
Completed in 399 milliseconds