119 lines
3.3 KiB
C
119 lines
3.3 KiB
C
|
/*
|
||
|
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
||
|
*
|
||
|
* Use of this source code is governed by a BSD-style license
|
||
|
* that can be found in the LICENSE file in the root of the source
|
||
|
* tree. An additional intellectual property rights grant can be found
|
||
|
* in the file PATENTS. All contributing project authors may
|
||
|
* be found in the AUTHORS file in the root of the source tree.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Reset MCU side data.
|
||
|
*/
|
||
|
|
||
|
#include "mcu.h"
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "automode.h"
|
||
|
|
||
|
int WebRtcNetEQ_McuReset(MCUInst_t *inst)
|
||
|
{
|
||
|
|
||
|
#ifdef NETEQ_ATEVENT_DECODE
|
||
|
int ok;
|
||
|
#endif
|
||
|
|
||
|
/* MCU/DSP Communication layer */
|
||
|
inst->pw16_readAddress = NULL;
|
||
|
inst->pw16_writeAddress = NULL;
|
||
|
inst->main_inst = NULL;
|
||
|
inst->one_desc = 0;
|
||
|
inst->BufferStat_inst.Automode_inst.extraDelayMs = 0;
|
||
|
inst->NetEqPlayoutMode = kPlayoutOn;
|
||
|
|
||
|
WebRtcNetEQ_DbReset(&inst->codec_DB_inst);
|
||
|
memset(&inst->PayloadSplit_inst, 0, sizeof(SplitInfo_t));
|
||
|
|
||
|
/* Clear the Packet buffer and the pointer to memory storage */
|
||
|
WebRtcNetEQ_PacketBufferFlush(&inst->PacketBuffer_inst);
|
||
|
inst->PacketBuffer_inst.memorySizeW16 = 0;
|
||
|
inst->PacketBuffer_inst.maxInsertPositions = 0;
|
||
|
|
||
|
/* Clear the decision and delay history */
|
||
|
memset(&inst->BufferStat_inst, 0, sizeof(BufstatsInst_t));
|
||
|
#ifdef NETEQ_ATEVENT_DECODE
|
||
|
ok = WebRtcNetEQ_DtmfDecoderInit(&inst->DTMF_inst, 8000, 560);
|
||
|
if (ok != 0)
|
||
|
{
|
||
|
return ok;
|
||
|
}
|
||
|
#endif
|
||
|
inst->NoOfExpandCalls = 0;
|
||
|
inst->current_Codec = -1;
|
||
|
inst->current_Payload = -1;
|
||
|
|
||
|
inst->millisecondsPerCall = 10;
|
||
|
inst->timestampsPerCall = inst->millisecondsPerCall * 8;
|
||
|
inst->fs = 8000;
|
||
|
inst->first_packet = 1;
|
||
|
|
||
|
WebRtcNetEQ_ResetMcuInCallStats(inst);
|
||
|
|
||
|
WebRtcNetEQ_ResetMcuJitterStat(inst);
|
||
|
|
||
|
WebRtcNetEQ_ResetAutomode(&(inst->BufferStat_inst.Automode_inst),
|
||
|
inst->PacketBuffer_inst.maxInsertPositions);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Reset MCU-side statistics variables for the in-call statistics.
|
||
|
*/
|
||
|
|
||
|
int WebRtcNetEQ_ResetMcuInCallStats(MCUInst_t *inst)
|
||
|
{
|
||
|
inst->lostTS = 0;
|
||
|
inst->lastReportTS = 0;
|
||
|
inst->PacketBuffer_inst.discardedPackets = 0;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Reset all MCU-side statistics variables for the post-call statistics.
|
||
|
*/
|
||
|
|
||
|
int WebRtcNetEQ_ResetMcuJitterStat(MCUInst_t *inst)
|
||
|
{
|
||
|
inst->statInst.jbAvgCount = 0;
|
||
|
inst->statInst.jbAvgSizeQ16 = 0;
|
||
|
inst->statInst.jbMaxSize = 0;
|
||
|
inst->statInst.jbMinSize = 0xFFFFFFFF;
|
||
|
inst->statInst.avgPacketCount = 0;
|
||
|
inst->statInst.avgPacketDelayMs = 0;
|
||
|
inst->statInst.minPacketDelayMs = 0xFFFFFFFF;
|
||
|
inst->statInst.maxPacketDelayMs = 0;
|
||
|
inst->statInst.jbChangeCount = 0;
|
||
|
inst->statInst.generatedSilentMs = 0;
|
||
|
inst->statInst.countExpandMoreThan120ms = 0;
|
||
|
inst->statInst.countExpandMoreThan250ms = 0;
|
||
|
inst->statInst.countExpandMoreThan500ms = 0;
|
||
|
inst->statInst.countExpandMoreThan2000ms = 0;
|
||
|
inst->statInst.longestExpandDurationMs = 0;
|
||
|
inst->statInst.accelerateMs = 0;
|
||
|
|
||
|
inst->PacketBuffer_inst.totalDiscardedPackets = 0;
|
||
|
inst->PacketBuffer_inst.totalFlushedPackets = 0;
|
||
|
|
||
|
inst->BufferStat_inst.Automode_inst.countIAT500ms = 0;
|
||
|
inst->BufferStat_inst.Automode_inst.countIAT1000ms = 0;
|
||
|
inst->BufferStat_inst.Automode_inst.countIAT2000ms = 0;
|
||
|
inst->BufferStat_inst.Automode_inst.longestIATms = 0;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|