Merge master.
[dcpomatic.git] / src / lib / analyse_audio_job.cc
index 347cc0a0fb362f95b55686ad3fb76744e746ff8f..60b10e7b6e05ba69dc418894fa10b4ca8ef7781e 100644 (file)
@@ -87,7 +87,7 @@ AnalyseAudioJob::analyse (shared_ptr<const AudioBuffers> b)
                for (int j = 0; j < b->channels(); ++j) {
                        float s = b->data(j)[i];
                        if (fabsf (s) < 10e-7) {
-                               /* stringstream can't serialise and recover inf or -inf, so prevent such
+                               /* SafeStringStream can't serialise and recover inf or -inf, so prevent such
                                   values by replacing with this (140dB down) */
                                s = 10e-7;
                        }