]> git.mxchange.org Git - flightgear.git/blobdiff - src/Sound/fg_sound.hxx
Fix a bug in transit sound termination and adjust the minimum time we
[flightgear.git] / src / Sound / fg_sound.hxx
index fb871d2cbfaeb9fdf15130ce6f6a890b495810cb..ce66e13a3dbdd985c3f9c41313e4a0f0ca8b0e80 100644 (file)
@@ -33,6 +33,9 @@
 
 #include "soundmgr.hxx"
 
+static const double MAX_TRANSIT_TIME = 0.1;    // 10 ms.
+
+
 /**
  * Class for handling one sound event.
  *
@@ -56,7 +59,6 @@ protected:
   enum { ONCE=0, LOOPED, IN_TRANSIT };
   enum { LEVEL=0, INVERTED, FLIPFLOP };
 
-
   // Sound properties
   typedef struct {
         SGPropertyNode * prop;
@@ -81,9 +83,10 @@ private:
   string _name;
   int _mode;
   double _prev_value;
-  double _random;
   double _dt_play;
   double _dt_stop;
+  double _stopping;    // time after the sound should have stopped.
+                       // This is usefull for lost packets in in-trasit mode.
 
   vector<_snd_prop> _volume;
   vector<_snd_prop> _pitch;