Lines Matching refs:rewind
67 /* Calculate number of history bytes needed for the rewind */
75 /* Initialize some variables, cut off full seconds from the rewind */
98 /* Check how the rewind fits into multiples of the matching period. */
191 " --rewind=unsigned Number of output samples to rewind\n"
195 "by rewind samples and the rewound part is processed again. Then output is compared to\n"
227 unsigned samples, frequency, rewind;
245 {"rewind", 1, NULL, ARG_REWIND},
268 rewind = 2500;
309 rewind = (unsigned) atoi(optarg);
327 samples, pa_resample_method_to_string(method), a.rate, b.rate, rewind);
356 if (rewind > out_chunk.length / pa_frame_size(&b)) {
357 pa_log_warn("Specified number of frames to rewind (%u) larger than number of output frames (%lu), aborting.", rewind, out_chunk.length / pa_frame_size(&b));
375 in_rewind_size = pa_resampler_request(resampler, rewind * pa_frame_size(&b));
376 out_rewind_size = rewind * pa_frame_size(&b);
377 pa_log_debug("Have to rewind %lu input frames", in_rewind_size / in_frame_size);
380 /* Now rewind the resampler */
395 pa_log_warn("Resampler did not return output data for rewind");
400 /* Get delay after rewind */