We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43252e0 commit 37c775aCopy full SHA for 37c775a
common/resample/resamplerinfo.h
@@ -36,6 +36,12 @@ struct ResamplerInfo {
36
37
/*
38
* Points to a function that can be used to create an instance of the resampler.
39
+ *
40
+ * @param inRate The input sampling rate.
41
+ * @param outRate The desired output sampling rate.
42
+ * @param periodSize The maximum number of input samples to resample at a time/The
43
+ * maximal inlen passed to Resampler::resample.
44
+ * @return Pointer to the created instance on the free store.
45
*/
46
Resampler * (*create)(long inRate, long outRate, std::size_t periodSize);
47
0 commit comments