Lines Matching full:samples
31 /* The function that will be called to input samples into the effects chain.
32 * In this example, we get samples to process from a SoX-openned audio file.
43 /* Read up to *osamp samples into obuf; store the actual number read in input_drain()
48 * 0 samples is returned does it indicate that end-of-file has been reached in input_drain()
55 /* The function that will be called to output samples from the effects chain.
56 * In this example, we store the samples in a SoX-opened audio file.
62 /* Write out *isamp samples */ in output_flow()
65 /* len is the number of samples that were actually written out; if this is in output_flow()
74 * 0 samples on to the next effect (as there isn't one!) */ in output_flow()
79 return SOX_SUCCESS; /* All samples output successfully */ in output_flow()
82 /* A `stub' effect handler to handle inputting samples to the effects
92 /* A `stub' effect handler to handle outputting samples from the effects
130 * samples; in this case, we have defined an input handler that inputs in main()
152 * samples; in this case, we have defined an output handler that outputs in main()
158 /* Flow samples through the effects processing chain until EOF is reached */ in main()