HomeSort by relevance Sort by last modified time
    Searched refs:estimated_bandwidth (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/net/quic/
quic_connection_stats.cc 34 estimated_bandwidth(0),
70 << ", estimated bandwidth: " << s.estimated_bandwidth
quic_connection_stats.h 56 uint64 estimated_bandwidth; // In bytes per second. member in struct:net::QuicConnectionStats
quic_stream_factory.cc 913 network_stats.bandwidth_estimate = stats.estimated_bandwidth;
quic_connection.cc     [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
vie_channel_manager.h 90 uint32_t* estimated_bandwidth) const;
92 uint32_t* estimated_bandwidth) const;
vie_rtp_rtcp_impl.h 118 unsigned int* estimated_bandwidth) const;
121 unsigned int* estimated_bandwidth) const;
vie_channel_manager.cc 400 int channel_id, uint32_t* estimated_bandwidth) const {
406 group->GetBitrateController()->AvailableBandwidth(estimated_bandwidth);
411 int channel_id, uint32_t* estimated_bandwidth) const {
419 &ssrcs, estimated_bandwidth) || ssrcs.empty()) {
420 *estimated_bandwidth = 0;
vie_rtp_rtcp_impl.cc 789 unsigned int* estimated_bandwidth) const {
791 video_channel, estimated_bandwidth)) {
799 unsigned int* estimated_bandwidth) const {
801 video_channel, estimated_bandwidth)) {
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_generic_codec.h 334 // -estimated_bandwidth: estimated bandwidth in bits/sec
340 int32_t SetEstimatedBandwidth(int32_t estimated_bandwidth);
674 virtual int32_t SetEstimatedBandwidthSafe(int32_t estimated_bandwidth);
    [all...]
acm_isac.h 107 int32_t SetEstimatedBandwidthSafe(int32_t estimated_bandwidth) OVERRIDE;
acm_isac.cc 110 int32_t ACMISAC::SetEstimatedBandwidthSafe(int32_t /* estimated_bandwidth */) {
553 int32_t ACMISAC::SetEstimatedBandwidthSafe(int32_t estimated_bandwidth) {
565 if (estimated_bandwidth == kIsacRatesWb[i]) {
568 } else if (estimated_bandwidth
572 } else if (estimated_bandwidth < kIsacRatesWb[i]) {
581 if (estimated_bandwidth <= kIsacRatesSwb[i]) {
acm_generic_codec.cc 589 int32_t ACMGenericCodec::SetEstimatedBandwidth(int32_t estimated_bandwidth) {
591 return SetEstimatedBandwidthSafe(estimated_bandwidth);
595 int32_t /*estimated_bandwidth*/) {
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/include/
vie_rtp_rtcp.h 412 unsigned int* estimated_bandwidth) const = 0;
415 // video, including overhead, in bits/s. |estimated_bandwidth| is 0 if there
419 unsigned int* estimated_bandwidth) const = 0;
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_rtp_rtcp.cc 339 unsigned int estimated_bandwidth = 0; local
342 &estimated_bandwidth));
343 EXPECT_GT(estimated_bandwidth, 0u);
348 &estimated_bandwidth));
349 EXPECT_GT(estimated_bandwidth, 0u);
357 &estimated_bandwidth),
359 EXPECT_EQ(estimated_bandwidth, 0u);
384 estimated_bandwidth = 0;
386 &estimated_bandwidth));
388 EXPECT_EQ(0u, estimated_bandwidth);
    [all...]

Completed in 4304 milliseconds