summaryrefslogtreecommitdiff
path: root/common_types.h
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-03 12:02:11 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-03 12:02:11 +0000
commit52b2ee5489898b667e38dbee2d40202597f1fc0c (patch)
treee0907f658f49892e38b2183343cdfc96c084c9e4 /common_types.h
parent3a3a787b5179ebd38c49628195327d563dbe6eb3 (diff)
downloadwebrtc-52b2ee5489898b667e38dbee2d40202597f1fc0c.tar.gz
Revert 3934 "Revert 3933 "Remove traces of deprecated WebRtc_Wor..."
> Revert 3933 "Remove traces of deprecated WebRtc_Word types." > > > Remove traces of deprecated WebRtc_Word types. > > > > BUG=314 > > R=tommi@webrtc.org > > > > Review URL: https://webrtc-codereview.appspot.com/1385004 > > TBR=pbos@webrtc.org > > Review URL: https://webrtc-codereview.appspot.com/1386004 TBR=pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1397004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@3948 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'common_types.h')
-rw-r--r--common_types.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/common_types.h b/common_types.h
index fd0d1d97..5001da29 100644
--- a/common_types.h
+++ b/common_types.h
@@ -266,23 +266,23 @@ enum VadModes // degree of bandwidth reduction
struct NetworkStatistics // NETEQ statistics
{
// current jitter buffer size in ms
- WebRtc_UWord16 currentBufferSize;
+ uint16_t currentBufferSize;
// preferred (optimal) buffer size in ms
- WebRtc_UWord16 preferredBufferSize;
+ uint16_t preferredBufferSize;
// adding extra delay due to "peaky jitter"
bool jitterPeaksFound;
// loss rate (network + late) in percent (in Q14)
- WebRtc_UWord16 currentPacketLossRate;
+ uint16_t currentPacketLossRate;
// late loss rate in percent (in Q14)
- WebRtc_UWord16 currentDiscardRate;
+ uint16_t currentDiscardRate;
// fraction (of original stream) of synthesized speech inserted through
// expansion (in Q14)
- WebRtc_UWord16 currentExpandRate;
+ uint16_t currentExpandRate;
// fraction of synthesized speech inserted through pre-emptive expansion
// (in Q14)
- WebRtc_UWord16 currentPreemptiveRate;
+ uint16_t currentPreemptiveRate;
// fraction of data removed through acceleration (in Q14)
- WebRtc_UWord16 currentAccelerateRate;
+ uint16_t currentAccelerateRate;
// clock-drift in parts-per-million (negative or positive)
int32_t clockDriftPPM;
// average packet waiting time in the jitter buffer (ms)