Преглед изворни кода

don't buffer more than required

Gil Pedersen пре 12 година
родитељ
комит
fdbbde3f8c
1 измењених фајлова са 1 додато и 3 уклоњено
  1. 1 3
      lib/tssmooth.js

+ 1 - 3
lib/tssmooth.js

@@ -106,9 +106,7 @@ function TsSmooth(options) {
     return pcrtime;
   }
 
-  Transform.call(this);
-//  Transform.call(this, {bufferSize:5*this.packetSize, highWaterMark:5*this.packetSize});
-//  Transform.call(this, {bufferSize:188*7, highWaterMark:64*1024});
+  Transform.call(this, {highWaterMark:this.packetSize});
 }
 util.inherits(TsSmooth, Transform);