Home
last modified time | relevance | path

Searched refs:predictor_order (Results 1 – 6 of 6) sorted by relevance

/external/flac/libFLAC/include/private/
Dstream_encoder.h52 …unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_pa…
57 …unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_pa…
62 …unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_pa…
Dformat.h38 unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order);
40 …size_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order);
/external/flac/libFLAC/
Dformat.c518 unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order) in FLAC__format_get_max_rice_partition_order() argument
524 predictor_order in FLAC__format_get_max_rice_partition_order()
538 …ksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order) in FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order() argument
542 while(max_rice_partition_order > 0 && (blocksize >> max_rice_partition_order) <= predictor_order) in FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order()
546 (max_rice_partition_order == 0 && blocksize >= predictor_order) || in FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order()
547 (max_rice_partition_order > 0 && blocksize >> max_rice_partition_order > predictor_order) in FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order()
Dstream_encoder_framing.c44 …C__int32 residual[], const unsigned residual_samples, const unsigned predictor_order, const unsign…
493 …C__int32 residual[], const unsigned residual_samples, const unsigned predictor_order, const unsign… in add_residual_partitioned_rice_() argument
523 const unsigned default_partition_samples = (residual_samples+predictor_order) >> partition_order; in add_residual_partitioned_rice_()
527 partition_samples -= predictor_order; in add_residual_partitioned_rice_()
Dstream_encoder.c228 unsigned predictor_order,
243 unsigned predictor_order,
253 unsigned predictor_order,
265 const unsigned predictor_order,
350 …4 abs_residual_partition_sums[], unsigned residual_samples, unsigned predictor_order, unsigned min…
3873 unsigned predictor_order, in find_best_partition_order_() argument
3887 const unsigned blocksize = residual_samples + predictor_order; in find_best_partition_order_()
3889 …er_from_blocksize_limited_max_and_predictor_order(max_partition_order, blocksize, predictor_order); in find_best_partition_order_()
3892 …n_info_sums(residual, abs_residual_partition_sums, residual_samples, predictor_order, min_partitio… in find_best_partition_order_()
3895 …on_info_escapes_(residual, raw_bits_per_partition, residual_samples, predictor_order, min_partitio… in find_best_partition_order_()
[all …]
Dstream_decoder.c102 …ad_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_order, unsigned par…
2757 FLAC__bool read_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_order, … in read_residual_partitioned_rice_() argument
2763 ….header.blocksize >> partition_order : decoder->private_->frame.header.blocksize - predictor_order; in read_residual_partitioned_rice_()
2768 …tion_order > 0? partition_samples >= predictor_order : decoder->private_->frame.header.blocksize >… in read_residual_partitioned_rice_()
2782 …= (partition_order == 0 || partition > 0)? partition_samples : partition_samples - predictor_order; in read_residual_partitioned_rice_()
2791 …for(u = (partition_order == 0 || partition > 0)? 0 : predictor_order; u < partition_samples; u++, … in read_residual_partitioned_rice_()