Home
last modified time | relevance | path

Searched refs:raw_bits (Results 1 – 5 of 5) sorted by relevance

/external/flac/libFLAC/
Dformat.c554 object->raw_bits = 0; in FLAC__format_entropy_coding_method_partitioned_rice_contents_init()
564 if(0 != object->raw_bits) in FLAC__format_entropy_coding_method_partitioned_rice_contents_clear()
565 free(object->raw_bits); in FLAC__format_entropy_coding_method_partitioned_rice_contents_clear()
573 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()
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()
Dstream_encoder_framing.c44 …igned predictor_order, const unsigned rice_parameters[], const unsigned raw_bits[], const unsigned…
400 subframe->entropy_coding_method.data.partitioned_rice.contents->raw_bits, in FLAC__subframe_add_fixed()
446 subframe->entropy_coding_method.data.partitioned_rice.contents->raw_bits, in FLAC__subframe_add_lpc()
493 …igned predictor_order, const unsigned rice_parameters[], const unsigned raw_bits[], const unsigned… in add_residual_partitioned_rice_() argument
501 if(raw_bits[0] == 0) { in add_residual_partitioned_rice_()
511 …if(!FLAC__bitwriter_write_raw_uint32(bw, raw_bits[0], FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE… in add_residual_partitioned_rice_()
514 if(!FLAC__bitwriter_write_raw_int32(bw, residual[i], raw_bits[0])) in add_residual_partitioned_rice_()
529 if(raw_bits[i] == 0) { in add_residual_partitioned_rice_()
538 …if(!FLAC__bitwriter_write_raw_uint32(bw, raw_bits[i], FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE… in add_residual_partitioned_rice_()
541 if(!FLAC__bitwriter_write_raw_int32(bw, residual[j], raw_bits[i])) in add_residual_partitioned_rice_()
Dstream_encoder.c3940 …memcpy(prc->raw_bits, private_->partitioned_rice_contents_extra[best_parameters_index].raw_bits, s… in find_best_partition_order_()
4137 unsigned *parameters, *raw_bits; local
4149 raw_bits = partitioned_rice_contents->raw_bits;
4189 raw_bits[0] = raw_bits_per_partition[0];
4194 raw_bits[0] = 0;
4292 raw_bits[partition] = raw_bits_per_partition[partition];
4297 raw_bits[partition] = 0;
Dstream_decoder.c2774 partitioned_rice_contents->raw_bits[partition] = 0; in read_residual_partitioned_rice_()
2783 partitioned_rice_contents->raw_bits[partition] = rice_parameter; in read_residual_partitioned_rice_()
/external/flac/include/FLAC/
Dformat.h219 unsigned *raw_bits; member