HomeSort by relevance Sort by last modified time
    Searched refs:kbps (Results 1 - 25 of 29) sorted by null

1 2

  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
remb.cc 26 RembBweSender::RembBweSender(int kbps, BitrateObserver* observer, Clock* clock)
31 assert(kbps >= kMinBitrateKbps);
32 assert(kbps <= kMaxBitrateKbps);
33 bitrate_controller_->SetStartBitrate(1000 * kbps);
send_side.cc 23 FullBweSender::FullBweSender(int kbps, BitrateObserver* observer, Clock* clock)
32 assert(kbps >= kMinBitrateKbps);
33 assert(kbps <= kMaxBitrateKbps);
34 bitrate_controller_->SetStartBitrate(1000 * kbps);
remb.h 31 RembBweSender(int kbps, BitrateObserver* observer, Clock* clock);
send_side.h 25 FullBweSender(int kbps, BitrateObserver* observer, Clock* clock);
nada.h 65 NadaBweSender(int kbps, BitrateObserver* observer, Clock* clock);
nada.cc 155 NadaBweSender::NadaBweSender(int kbps, BitrateObserver* observer, Clock* clock)
156 : BweSender(kbps), // Referred as "Reference Rate" = R_n.,
  /frameworks/av/media/libstagefright/
HTTPBase.cpp 92 status_t HTTPBase::getEstimatedBandwidthKbps(int32_t *kbps) {
94 *kbps = mPrevEstimatedBandWidthKbps;
NuCachedSource2.cpp 251 status_t NuCachedSource2::getEstimatedBandwidthKbps(int32_t *kbps) {
254 return source->getEstimatedBandwidthKbps(kbps);
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe.cc 86 int kbps,
91 return new RembBweSender(kbps, observer, clock);
93 return new FullBweSender(kbps, observer, clock);
95 return new NadaBweSender(kbps, observer, clock);
bwe_test_framework.h 336 void set_capacity_kbps(uint32_t kbps);
395 uint32_t kbps,
434 uint32_t kbps,
449 uint32_t kbps,
bwe_test_framework.cc 269 kbps_stats_.Log("kbps");
493 void ChokeFilter::set_capacity_kbps(uint32_t kbps) {
495 BWE_TEST_LOGGING_LOG1("BitrateChoke", "%d kbps", kbps);
496 capacity_kbps_ = kbps;
675 uint32_t kbps,
681 bits_per_second_(1000 * kbps),
756 uint32_t kbps,
759 : VideoSource(flow_id, fps, kbps, ssrc, first_frame_offset_ms) {
769 uint32_t kbps,
    [all...]
bwe.h 187 int kbps,
  /frameworks/av/media/libstagefright/include/
HTTPBase.h 48 virtual status_t getEstimatedBandwidthKbps(int32_t *kbps);
NuCachedSource2.h 64 status_t getEstimatedBandwidthKbps(int32_t *kbps);
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
MediaCodecVideoEncoder.java 273 boolean initEncode(VideoCodecType type, int width, int height, int kbps, int fps,
277 ". @ " + kbps + " kbps. Fps: " + fps + ". Encode from texture : " + useSurface);
313 format.setInteger(MediaFormat.KEY_BIT_RATE, 1000 * kbps);
452 private boolean setRates(int kbps, int frameRateIgnored) {
456 Logging.v(TAG, "setRates: " + kbps + " kbps. Fps: " + frameRateIgnored);
459 params.putInt(MediaCodec.PARAMETER_KEY_VIDEO_BITRATE, 1000 * kbps);
  /tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
EmmcPerformanceTest.java 208 Double kbps = null; local
211 kbps = runDdIteration(command, simpleperfMetricsMap);
214 kbps = runRandomIteration(command, simpleperfMetricsMap);
218 if (kbps != null) {
219 CLog.i("Result for %s, iteration %d: %f KBps", testKey, i + 1, kbps);
220 stats.add(kbps);
245 * @return The speed of the test in KBps or null if there was an error running or parsing the
276 * @return The speed of the test in KBps or null if there was an error running or parsing the
334 * Convert bytes / sec reported by the dd tests into KBps
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
screenshare_layers_unittest.cc 35 void ConfigureBitrateForLayer(int kbps, uint8_t layer_id) {
36 layers_->ConfigureBitrate(kbps, layer_id);
119 // Send 10 frames at a low bitrate (50 kbps)
130 // Send 10 frames at a high bitrate (200 kbps)
  /external/webrtc/talk/app/webrtc/java/jni/
androidmediaencoder_jni.cc 130 int32_t InitEncodeOnCodecThread(int width, int height, int kbps, int fps,
199 int last_set_bitrate_kbps_; // Last-requested bitrate in kbps.
457 int width, int height, int kbps, int fps, bool use_surface) {
464 width << " x " << height << ". Bitrate: " << kbps <<
465 " kbps. Fps: " << fps;
466 if (kbps == 0) {
467 kbps = last_set_bitrate_kbps_;
475 last_set_bitrate_kbps_ = kbps;
506 j_video_codec_enum, width, height, kbps, fps,
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 117 double kbps; local
596 kbps = (double)FS / (double)cur_framesmpls * 8.0 * stream_len / 1000.0;
598 fprintf(fy, "Frame %i = %0.14f\n", framecnt, kbps);
  /external/webrtc/tools/matlab/
rtpAnalyze.m 126 fprintf('Sent average bitrate: %i kbps\n', ...
129 fprintf('Received average bitrate: %i kbps\n', ...
157 ylabel('Send bitrate [kbps]');
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
ReleaseTest-API.cc 78 double kbps; local
269 printf("Maximum Rate in kbps: %d\n", payloadRate);
889 kbps = ((double)sampFreqKHz * 1000.) / ((double)cur_framesmpls) * 8.0 *
892 fprintf(fy, "Frame %i = %0.14f\n", framecnt, kbps);
902 printf("Transcoding average bit-rate = %0.3f kbps\n",
917 printf("Maximum payload size 30ms Frames %" PRIuS " bytes (%0.3f kbps)\n",
921 printf("Maximum payload size 60ms Frames %" PRIuS " bytes (%0.3f kbps)\n",
927 fprintf(stderr, " %0.1f kbps",
930 fprintf(stderr, " plmax-30ms %" PRIuS " bytes (%0.0f kbps)",
934 fprintf(stderr, " plmax-60ms %" PRIuS " bytes (%0.0f kbps)",
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
tls_test.go 902 for _, kbps := range []int{200, 500, 1000, 2000, 5000} {
903 name := fmt.Sprintf("%sPacket/%dkbps", mode, kbps)
905 latency(b, kbps*1000, mode == "Max")
  /prebuilts/go/linux-x86/src/crypto/tls/
tls_test.go 902 for _, kbps := range []int{200, 500, 1000, 2000, 5000} {
903 name := fmt.Sprintf("%sPacket/%dkbps", mode, kbps)
905 latency(b, kbps*1000, mode == "Max")
  /frameworks/av/media/libmediaplayer2/nuplayer2/
GenericSource2.cpp 528 int32_t kbps = 0; local
532 err = mCachedSource->getEstimatedBandwidthKbps(&kbps);
538 notify->setInt32("bandwidth", kbps);
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 568 int32_t kbps = 0; local
572 err = mCachedSource->getEstimatedBandwidthKbps(&kbps);
578 notify->setInt32("bandwidth", kbps);
    [all...]

Completed in 667 milliseconds

1 2