Searched refs:raw_bits (Results 1 – 5 of 5) sorted by relevance
/external/flac/libFLAC/ |
D | format.c | 562 object->raw_bits = 0; in FLAC__format_entropy_coding_method_partitioned_rice_contents_init() 572 if(0 != object->raw_bits) in FLAC__format_entropy_coding_method_partitioned_rice_contents_clear() 573 free(object->raw_bits); in FLAC__format_entropy_coding_method_partitioned_rice_contents_clear() 581 FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits)); in FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size() 586 …if(0 == (object->raw_bits = (unsigned*)realloc(object->raw_bits, sizeof(unsigned)*(1 << max_partit… in FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size() 588 memset(object->raw_bits, 0, sizeof(unsigned)*(1 << max_partition_order)); in FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size()
|
D | stream_encoder_framing.c | 48 …igned predictor_order, const unsigned rice_parameters[], const unsigned raw_bits[], const unsigned… 404 subframe->entropy_coding_method.data.partitioned_rice.contents->raw_bits, in FLAC__subframe_add_fixed() 450 subframe->entropy_coding_method.data.partitioned_rice.contents->raw_bits, in FLAC__subframe_add_lpc() 497 …igned predictor_order, const unsigned rice_parameters[], const unsigned raw_bits[], const unsigned… in add_residual_partitioned_rice_() argument 505 if(raw_bits[0] == 0) { in add_residual_partitioned_rice_() 515 …if(!FLAC__bitwriter_write_raw_uint32(bw, raw_bits[0], FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE… in add_residual_partitioned_rice_() 518 if(!FLAC__bitwriter_write_raw_int32(bw, residual[i], raw_bits[0])) in add_residual_partitioned_rice_() 533 if(raw_bits[i] == 0) { in add_residual_partitioned_rice_() 542 …if(!FLAC__bitwriter_write_raw_uint32(bw, raw_bits[i], FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE… in add_residual_partitioned_rice_() 545 if(!FLAC__bitwriter_write_raw_int32(bw, residual[j], raw_bits[i])) in add_residual_partitioned_rice_()
|
D | stream_encoder.c | 3755 …memcpy(prc->raw_bits, private_->partitioned_rice_contents_extra[best_parameters_index].raw_bits, s… in find_best_partition_order_() 3972 unsigned *parameters, *raw_bits; in set_partitioned_rice_() local 3984 raw_bits = partitioned_rice_contents->raw_bits; in set_partitioned_rice_() 4024 raw_bits[0] = raw_bits_per_partition[0]; in set_partitioned_rice_() 4029 raw_bits[0] = 0; in set_partitioned_rice_() 4100 raw_bits[partition] = raw_bits_per_partition[partition]; in set_partitioned_rice_() 4105 raw_bits[partition] = 0; in set_partitioned_rice_()
|
D | stream_decoder.c | 2757 partitioned_rice_contents->raw_bits[partition] = 0; in read_residual_partitioned_rice_() 2766 partitioned_rice_contents->raw_bits[partition] = rice_parameter; in read_residual_partitioned_rice_()
|
/external/flac/include/FLAC/ |
D | format.h | 218 unsigned *raw_bits; member
|