Lines Matching defs:amount
668 /* This function runs amount bytes of data from the history queue through the
672 size_t pa_resampler_prepare(pa_resampler *r, pa_memblockq *history_queue, size_t amount) {
678 if (!history_queue || amount == 0)
681 /* Rewind the LFE filter by the amount of history data. */
682 history_bytes = pa_resampler_result(r, amount);
686 pa_memblockq_rewind(history_queue, amount);
688 to_run = amount;
724 size_t pa_resampler_rewind(pa_resampler *r, size_t out_bytes, pa_memblockq *history_queue, size_t amount) {
742 if (history_queue && amount > 0)
743 return pa_resampler_prepare(r, history_queue, amount);