Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:raw_bits

48 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)
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[i]))