HomeSort by relevance Sort by last modified time
    Searched defs:packetLossPercent (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/test/
debugUtility.h 52 int packetLossPercent;
simpleKenny.c 107 uint16_t packetLossPercent = 0;
184 packetLossPercent = readParamInt(argc, argv, "-ploss", 0);
247 printf("Packet-loss Percentage... %d\n", packetLossPercent);
455 if((rand() % 100) < packetLossPercent)
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/
kenny.cc 101 int i, errtype, h = 0, k, packetLossPercent = 0;
151 packetLossPercent = 0;
302 packetLossPercent = atoi( argv[i+1] );
303 if( (packetLossPercent < 0) | (packetLossPercent > 100) ) {
307 if( packetLossPercent > 0 ) {
309 packetLossPercent );
720 lostFrame = (rand()%100 < packetLossPercent);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
ReleaseTest-API.cc 50 int i, errtype, VADusage = 0, packetLossPercent = 0;
293 packetLossPercent = atoi( argv[i+1] );
294 if( (packetLossPercent < 0) | (packetLossPercent > 100) )
299 if( packetLossPercent > 0 )
301 printf( "Simulating %d %% of independent packet loss\n", packetLossPercent );
773 lostFrame = ((rand()%100) < packetLossPercent);
    [all...]

Completed in 244 milliseconds