Remove all use of stringstream in an attempt to fix
[dcpomatic.git] / src / lib / analyse_audio_job.cc
index 3e771d3f6af6a35c1e7a9e6a45b2be48b1b6b1ea..bfbf33a9d8ffbd510ee95f5aed8b97f54dcad267 100644 (file)
@@ -169,7 +169,7 @@ AnalyseAudioJob::analyse (shared_ptr<const AudioBuffers> b)
                        float s = data[i];
                        float as = fabsf (s);
                        if (as < 10e-7) {
-                               /* locked_stringstream can't serialise and recover inf or -inf, so prevent such
+                               /* We may struggle to serialise and recover inf or -inf, so prevent such
                                   values by replacing with this (140dB down) */
                                s = as = 10e-7;
                        }