Evidence from Chris suggests that imported OGG files can clip, so check for that.
[ardour.git] / libs / ardour / sndfileimportable.cc
index 758e8955c2b82e3187fc4ff029061d911ee6d188..99697b888f6918dc613e39afd874c778e1ac4f45 100644 (file)
@@ -86,5 +86,5 @@ SndFileImportableSource::clamped_at_unity () const
 {
        int const sub = sf_info.format & SF_FORMAT_SUBMASK;
        /* XXX: this may not be the full list of formats that are unclamped */
-       return (sub != SF_FORMAT_FLOAT && sub != SF_FORMAT_DOUBLE);
+       return (sub != SF_FORMAT_FLOAT && sub != SF_FORMAT_DOUBLE && sub != SF_FORMAT_OGG);
 }