Explorar o código

temporarily disable use_error_threshold

David Rose %!s(int64=22) %!d(string=hai) anos
pai
achega
3c3fbf8446
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      panda/src/mathutil/fftCompressor.cxx

+ 4 - 0
panda/src/mathutil/fftCompressor.cxx

@@ -274,6 +274,9 @@ write_reals(Datagram &datagram, const float *array, int length) {
   // First, check the compressability.
   bool reject_compression = false;
 
+  // This logic needs a closer examination.  Not sure it's useful
+  // as-is.
+  /*
   if (_use_error_threshold) {
     // Don't encode the data if it moves too erratically.
     float error = get_compressability(array, length);
@@ -283,6 +286,7 @@ write_reals(Datagram &datagram, const float *array, int length) {
       reject_compression = true;
     }
   }
+  */
 
   datagram.add_bool(reject_compression);
   if (reject_compression) {