rename StdDev to StDev, patch its leak

This commit is contained in:
Stephen Birarda 2014-11-07 17:15:54 -08:00
parent 4fd22914c0
commit 2ca673175a
7 changed files with 14 additions and 13 deletions

View file

@ -48,7 +48,7 @@
#include <OctreeConstants.h>
#include <PacketHeaders.h>
#include <SharedUtil.h>
#include <StdDev.h>
#include <StDev.h>
#include <UUID.h>
#include "AudioRingBuffer.h"

View file

@ -35,7 +35,7 @@
#include <NodeList.h>
#include <PacketHeaders.h>
#include <SharedUtil.h>
#include <StdDev.h>
#include <StDev.h>
#include <UUID.h>
#include <glm/glm.hpp>

View file

@ -40,12 +40,12 @@
#include <QByteArray>
#include <AbstractAudioInterface.h>
#include <StdDev.h>
#include <StDev.h>
#include "MixedProcessedAudioStream.h"
#include "AudioEffectOptions.h"
#include <AudioRingBuffer.h>
#include <StdDev.h>
#include <StDev.h>
extern "C" {
#include <gverb.h>

View file

@ -18,7 +18,7 @@
#include "SequenceNumberStats.h"
#include "AudioStreamStats.h"
#include "PacketHeaders.h"
#include "StdDev.h"
#include "StDev.h"
#include "TimeWeightedAvg.h"
// This adds some number of frames to the desired jitter buffer frames target we use when we're dropping frames.

View file

@ -1,5 +1,5 @@
//
// StdDev.cpp
// StDev.cpp
// libraries/shared/src
//
// Created by Philip Rosedale on 3/12/13.
@ -11,10 +11,11 @@
#include <limits>
#include <cmath>
#include "StdDev.h"
#include <string>
#include "StDev.h"
StDev::StDev() :
_data(),
_sampleCount(0)
{
reset();

View file

@ -1,5 +1,5 @@
//
// StdDev.h
// StDev.h
// libraries/shared/src
//
// Created by Philip Rosedale on 3/12/13.
@ -9,8 +9,8 @@
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
#ifndef hifi_StdDev_h
#define hifi_StdDev_h
#ifndef hifi_StDev_h
#define hifi_StDev_h
const int NUM_SAMPLES = 1000;
@ -27,4 +27,4 @@ private:
int _sampleCount;
};
#endif // hifi_StdDev_h
#endif // hifi_StDev_h

View file

@ -20,7 +20,7 @@
#include <SequenceNumberStats.h>
#include <SharedUtil.h> // for usecTimestampNow
#include <SimpleMovingAverage.h>
#include <StdDev.h>
#include <StDev.h>
const quint64 MSEC_TO_USEC = 1000;
const quint64 LARGE_STATS_TIME = 500; // we don't expect stats calculation to take more than this many usecs