HomeSort by relevance Sort by last modified time
    Searched full:raw_bits (Results 1 - 5 of 5) sorted by null

  /external/flac/libFLAC/
stream_encoder_framing.c 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])
    [all...]
format.c 562 object->raw_bits = 0;
572 if(0 != object->raw_bits)
573 free(object->raw_bits);
581 FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits));
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));
stream_encoder.c 3972 unsigned *parameters, *raw_bits; local
    [all...]
stream_decoder.c     [all...]
  /external/flac/include/FLAC/
format.h 218 unsigned *raw_bits; member in struct:__anon8069
224 /**< The capacity of the \a parameters and \a raw_bits arrays
    [all...]

Completed in 85 milliseconds