X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=nageru%2Fresampling_queue.h;h=dd55d4c62a85695f6f7b737ec46eb27321f70433;hb=ecaec75dd52d076ba53cafa1fed716ebc0d93da6;hp=f0e2499cbf3300e9b4340430b85bf33f25862006;hpb=eeda8995329601f9f4e35047358400833eeae68e;p=nageru diff --git a/nageru/resampling_queue.h b/nageru/resampling_queue.h index f0e2499..dd55d4c 100644 --- a/nageru/resampling_queue.h +++ b/nageru/resampling_queue.h @@ -49,8 +49,8 @@ class ResamplingQueue { public: - // device_spec is for debugging outputs only. - ResamplingQueue(DeviceSpec device_spec, unsigned freq_in, unsigned freq_out, unsigned num_channels, double expected_delay_seconds); + // debug_description is for diagnostic output only. + ResamplingQueue(const std::string &debug_description, unsigned freq_in, unsigned freq_out, unsigned num_channels, double expected_delay_seconds); // If policy is DO_NOT_ADJUST_RATE, the resampling rate will not be changed. // This is primarily useful if you have an extraordinary situation, such as @@ -69,7 +69,7 @@ private: VResampler vresampler; - DeviceSpec device_spec; + std::string debug_description; unsigned freq_in, freq_out, num_channels; bool first_output = true;