Lines Matching defs:copy
16 You should have received a copy of the GNU Lesser General Public License
170 pa_log_info("Forcing resampler 'copy', because of fixed, identical sample rates.");
182 pa_log_info("Resampler 'copy' cannot change sampling rate, reverting to resampler 'auto'.");
809 "copy",
1419 * new memblock if necessary and optionally preserve 'copy' data bytes */
1420 static void fit_buf(pa_resampler *r, pa_memchunk *buf, size_t len, size_t *size, size_t copy) {
1427 if (copy > 0) {
1430 pa_assert(copy <= len);
1431 memcpy(dst, src, copy);
1713 /*** copy (noop) implementation ***/