/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/ |
test_iSACfixfloat.c | 62 int bottleneck, /* excluding headers; bits/s */ 73 (((packet_size + HeaderSize) * 8 * FS) / (bottleneck + HeaderRate)); 90 int16_t bottleneck; local 152 printf(" an instantaneous Bottleneck value. If not, it\n"); 153 printf(" will be an adaptive Bottleneck value.\n\n"); 154 printf("bottleneck_value: The value of the bottleneck provided either\n"); 156 printf(" read from a file (e.g. bottleneck.txt)\n\n"); 169 printf("./kenny.exe -I bottleneck.txt -m 1 speechIn.pcm speechOut.pcm\n\n"); 183 printf("\nInstantaneous BottleNeck\n"); 210 printf("\nAdaptive BottleNeck\n") [all...] |
kenny.cc | 44 /* Struct for bottleneck model */ 54 int bottleneck, /* excluding headers; bits/s */ 66 ((packet_size + HeaderSize) * 8 * FS) / (bottleneck + HeaderRate)); 105 int16_t bottleneck; local 169 printf(" an instantaneous Bottleneck value. If not, it\n"); 170 printf(" will be an adaptive Bottleneck value.\n\n"); 171 printf("bottleneck_value :the value of the bottleneck provided either\n"); 173 printf(" read from a file (e.g. bottleneck.txt)\n\n"); 225 printf("./kenny.exe -I bottleneck.txt speechIn.pcm speechOut.pcm\n\n"); 241 printf("\nInstantaneous BottleNeck\n") [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/SwitchingSampRate/ |
SwitchingSampRate.cc | 62 int bottleneck[MAX_NUM_CLIENTS]; local 118 bottleneck[clientCntr] = (clientCntr)? bnSWB:bnWB; 122 bottleneck[clientCntr] = (clientCntr)? minBn:maxBn; 125 printf("Bottleneck....................... %0.3f kbits/sec \n", 126 bottleneck[clientCntr] / 1000.0); 176 bottleneck[clientCntr], 30) < 0) 178 printf("Could not setup bottleneck and frame-size for client %d\n", 314 bottleneck[senderIdx] / 1000.0, 338 // After ~20 sec change the bottleneck. 344 // int newBottleneck = bottleneck[senderIdx] [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ |
ReleaseTest-API.cc | 49 int32_t bottleneck = 0; local 127 printf(" an instantaneous Bottleneck value. If not, it\n"); 128 printf(" will be an adaptive Bottleneck value.\n"); 130 printf("[-B num] : the value of the bottleneck provided either\n"); 132 printf(" read from a file (e.g. bottleneck.txt)\n"); 161 printf("[-T rate file] : test trans-coding with target bottleneck\n"); 222 printf("Instantaneous BottleNeck\n"); 226 /* Set (initial) bottleneck value */ 329 /* Get Bottleneck value */ 332 bottleneck = atoi(argv[i]) [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
isac.c | 49 * adaptation, or direct change of the bottleneck in instantaneous mode. 104 * This function updates the bottleneck only if the codec is operating in 105 * channel-adaptive mode. Furthermore, as the update of bottleneck might 111 /* Read the bottleneck from bandwidth estimator for the 117 int32_t bottleneck = local 122 && (bottleneck > 37000) 123 && (bottleneck < 41000)) { 124 bottleneck = 37000; 131 (bottleneck > 46000)) { 132 bottleneck = 46000 511 int32_t bottleneck = 0; local 2208 int32_t bottleneck = instISAC->bottleneck; local [all...] |
bandwidth_estimator.h | 45 // Initial Bottleneck Estimate, in bits/sec, for 146 const double BottleNeck, /* bottle neck rate; excl headers (bps) */ 147 const double DelayBuildUp, /* max delay from bottleneck buffering (ms) */ 158 const double BottleNeck); /* bottle neck rate; excl headers (bps) */
|
encode.c | 44 Rate allocation tables of lower and upper-band bottleneck for 49 The overall bottleneck of the coder is between 38 kbps and 45 kbps. We have 55 bottleneck of 31 kbps for lower-band and 27 kbps for upper-band. Given an 56 overall bottleneck of the codec, we use linear interpolation to get 61 The overall bottleneck of the coder is between 50 kbps and 56 kbps. We have 66 of 53.6 kbps corresponts to a bottleneck of 32 kbps for lower-band and 30 67 kbps for upper-band. Given an overall bottleneck of the codec, we use linear 90 * - inRateBitPerSec : a total bottleneck in bits/sec. 93 * - rateLBBitPerSec : a bottleneck allocated to the lower-band 95 * - rateUBBitPerSec : a bottleneck allocated to the upper-ban [all...] |
bandwidth_estimator.c | 804 const double BottleNeck, /* bottle neck rate; excl headers (bps) */ 805 const double DelayBuildUp, /* max delay from bottleneck buffering (ms) */ 841 /* max bps derived from BottleNeck and DelayBuildUp values */ 843 (double)(BURST_LEN * FrameSamples)) * BottleNeck; 850 State->StillBuffered) / (double)FrameSamples) * BottleNeck; 851 if (MinRate < 1.04 * BottleNeck) 853 MinRate = 1.04 * BottleNeck; 871 if (StreamSize * 8.0 * FS / FrameSamples > 1.01 * BottleNeck) { 906 TransmissionTime = StreamSize * 8.0 * 1000.0 / BottleNeck; /* ms */ 925 const double BottleNeck) /* bottle neck rate; excl headers (bps) * [all...] |
structs.h | 329 double bottleneck; member in struct:__anon27767 369 double bottleneck; member in struct:__anon27768 459 // overall bottleneck of the codec 460 int32_t bottleneck; member in struct:__anon27775
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/util/ |
utility.c | 139 int bottleneck, /* excluding headers; bits/s */ 157 // (bottleneck + HeaderRate) 159 / (double)(bottleneck + headerRate) + 0.5);
|
utility.h | 103 int bottleneck, /* excluding headers; bits/s */
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/include/ |
isac.h | 273 * This function sets the initial values of bottleneck and frame-size if 278 * bottleneck. Then iSAC will not automatically change the frame-size. 283 * - rateBPS : initial value of bottleneck in bits/second 285 * For default bottleneck set rateBPS = 0 356 * This function outputs the target bottleneck of the codec. In 357 * channel-adaptive mode, the target bottleneck is specified through in-band 360 * bottleneck is provided to the encoder by calling xxx_control(...). If 362 * value for bottleneck at 16 kHz encoder sampling rate is 32000 bits/sec, 364 * Note that the output is the iSAC internal operating bottleneck which might 371 * - *bottleneck : bottleneck in bits/se [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ |
simpleKenny.c | 65 int32_t bottleneck = 39; local 126 printf("%s infile outfile -bn bottleneck [options]\n\n", argv[0]); 129 printf("-bn bottleneck.. the value of the bottleneck in bit/sec, e.g.\n"); 155 /* Get Bottleneck value */ 156 bottleneck = readParamInt(argc, argv, "-bn", 50000); 157 fprintf(stderr, "\nfixed bottleneck rate of %d bits/s\n\n", bottleneck); 229 printf("Bottleneck............... %d bits/sec\n", bottleneck); [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
bandwidth_estimator.h | 113 const int16_t BottleNeck, /* bottle neck rate; excl headers (bps) */ 122 const int16_t BottleNeck); /* bottle neck rate; excl headers (bps) */
|
bandwidth_estimator.c | 846 const int16_t BottleNeck, /* bottle neck rate; excl headers (bps) */ 868 /* max bps derived from BottleNeck and DelayBuildUp values */ 871 BottleNeck; 877 State->StillBuffered) * inv_Q12) >> 3)) * BottleNeck; 882 MinRate = (512 - ((den * inv_Q12) >> 3)) * BottleNeck; 884 //if (MinRate < 1.04 * BottleNeck) 885 // MinRate = 1.04 * BottleNeck; 887 if (MinRate < WEBRTC_SPL_MUL(532, BottleNeck)) { 888 MinRate += WEBRTC_SPL_MUL(22, BottleNeck); 910 if ((StreamSize * (int32_t)FS8) / FrameSamples > (517 * BottleNeck) >> 9) [all...] |
encode.c | 108 ISACenc_obj->BottleNeck = WebRtcIsacfix_GetUplinkBandwidth(bw_estimatordata); 112 ISACenc_obj->new_framelength = WebRtcIsacfix_GetNewFrameLength(ISACenc_obj->BottleNeck, 116 // multiply the bottleneck by 0.88 before computing SNR, 0.88 is tuned by experimenting on TIMIT 119 (int16_t)(ISACenc_obj->BottleNeck * 901 >> 10), 296 // of 120 (32kbps bottleneck), number of frames needed a rate-reduction was 58403 415 ISACenc_obj->new_framelength = WebRtcIsacfix_GetNewFrameLength(ISACenc_obj->BottleNeck, 430 ISACenc_obj->current_framesamples, ISACenc_obj->BottleNeck, ISACenc_obj->MaxDelay); 486 ISACenc_obj->current_framesamples, ISACenc_obj->BottleNeck);
|
/prebuilts/go/darwin-x86/test/bench/go1/ |
revcomp_test.go | 61 // This loop is the bottleneck.
|
/prebuilts/go/linux-x86/test/bench/go1/ |
revcomp_test.go | 61 // This loop is the bottleneck.
|
/development/ndk/platforms/android-4/samples/san-angeles/src/com/example/SanAngeles/ |
DemoActivity.java | 33 * - on a real device, the GPU bus is the real bottleneck
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer.cc | 86 // We should optimize this further if this turns out to be a bottleneck later.
|
/external/google-breakpad/src/common/mac/ |
macho_id.h | 91 // Bottleneck for update routines
|
/external/iproute2/man/man8/ |
tc-fq_codel.8 | 57 It should be set on the order of the worst-case RTT through the bottleneck to
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_syncobj.c | 38 * performance bottleneck, though.
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
PushObserver.java | 25 * quickly dispatch callbacks to avoid creating a bottleneck.
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
bwe_test.h | 155 // Bottleneck queue type: Drop tail.
|