Searched defs:raw_bits (Results 1 - 3 of 3) sorted by relevance

/external/flac/libFLAC/
H A Dstream_encoder_framing.c48 static FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned rice_parameters[], const unsigned raw_bits[], const unsigned partition_order, const FLAC__bool is_extended);
404 subframe->entropy_coding_method.data.partitioned_rice.contents->raw_bits,
450 subframe->entropy_coding_method.data.partitioned_rice.contents->raw_bits,
497 FLAC__bool add_residual_partitioned_rice_(FLAC__BitWriter *bw, const FLAC__int32 residual[], const unsigned residual_samples, const unsigned predictor_order, const unsigned rice_parameters[], const unsigned raw_bits[], const unsigned partition_order, const FLAC__bool is_extended) argument
505 if(raw_bits[0] == 0) {
515 if(!FLAC__bitwriter_write_raw_uint32(bw, raw_bits[0], FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN))
518 if(!FLAC__bitwriter_write_raw_int32(bw, residual[i], raw_bits[0]))
533 if(raw_bits[i] == 0) {
542 if(!FLAC__bitwriter_write_raw_uint32(bw, raw_bits[i], FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN))
545 if(!FLAC__bitwriter_write_raw_int32(bw, residual[j], raw_bits[
[all...]
H A Dstream_encoder.c3751 /* save best parameters and raw_bits */
3755 memcpy(prc->raw_bits, private_->partitioned_rice_contents_extra[best_parameters_index].raw_bits, sizeof(unsigned)*(1<<(best_partition_order)));
3972 unsigned *parameters, *raw_bits; local
3984 raw_bits = partitioned_rice_contents->raw_bits;
4024 raw_bits[0] = raw_bits_per_partition[0];
4029 raw_bits[0] = 0;
4100 raw_bits[partition] = raw_bits_per_partition[partition];
4105 raw_bits[partitio
[all...]
/external/flac/include/FLAC/
H A Dformat.h218 unsigned *raw_bits; member in struct:__anon21458
224 /**< The capacity of the \a parameters and \a raw_bits arrays

Completed in 411 milliseconds