Fix comments in common_types.h

Two of the metrics in NetworkStatistics were desribed as being in
percent, while they are in fact fractions between 0 and 1, scaled
to Q14 domain.

R=tina.legrand@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/30689004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7411 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
henrik.lundin@webrtc.org 2014-10-09 12:58:45 +00:00
parent 3ff788cf73
commit 8768f161cd

View File

@ -337,9 +337,9 @@ struct NetworkStatistics // NETEQ statistics
uint16_t preferredBufferSize; uint16_t preferredBufferSize;
// adding extra delay due to "peaky jitter" // adding extra delay due to "peaky jitter"
bool jitterPeaksFound; bool jitterPeaksFound;
// loss rate (network + late) in percent (in Q14) // Loss rate (network + late); fraction between 0 and 1, scaled to Q14.
uint16_t currentPacketLossRate; uint16_t currentPacketLossRate;
// late loss rate in percent (in Q14) // Late loss rate; fraction between 0 and 1, scaled to Q14.
uint16_t currentDiscardRate; uint16_t currentDiscardRate;
// fraction (of original stream) of synthesized speech inserted through // fraction (of original stream) of synthesized speech inserted through
// expansion (in Q14) // expansion (in Q14)