Move src/ -> webrtc/
TBR=niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/915006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2963 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
40
webrtc/modules/audio_coding/neteq/neteq_statistics.h
Normal file
40
webrtc/modules/audio_coding/neteq/neteq_statistics.h
Normal file
@ -0,0 +1,40 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Definitions of statistics data structures for MCU and DSP sides.
|
||||
*/
|
||||
|
||||
#include "typedefs.h"
|
||||
|
||||
#ifndef NETEQ_STATISTICS_H
|
||||
#define NETEQ_STATISTICS_H
|
||||
|
||||
/*
|
||||
* Statistics struct on DSP side
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
|
||||
/* variables for in-call statistics; queried through WebRtcNetEQ_GetNetworkStatistics */
|
||||
WebRtc_UWord32 expandLength; /* number of samples produced through expand */
|
||||
WebRtc_UWord32 preemptiveLength; /* number of samples produced through pre-emptive
|
||||
expand */
|
||||
WebRtc_UWord32 accelerateLength; /* number of samples removed through accelerate */
|
||||
|
||||
/* variables for post-call statistics; queried through WebRtcNetEQ_GetJitterStatistics */
|
||||
WebRtc_UWord32 expandedVoiceSamples; /* number of voice samples produced through expand */
|
||||
WebRtc_UWord32 expandedNoiseSamples; /* number of noise (background) samples produced
|
||||
through expand */
|
||||
|
||||
} DSPStats_t;
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user