mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 17:43:21 +02:00
rename StdDev to StDev, patch its leak
This commit is contained in:
parent
4fd22914c0
commit
2ca673175a
7 changed files with 14 additions and 13 deletions
|
@ -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"
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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();
|
|
@ -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
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue