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 36 estimated_bandwidth(0),
75 << ", estimated bandwidth: " << s.estimated_bandwidth
quic_connection_stats.h 57 uint64 estimated_bandwidth; // In bytes per second. member in struct:net::QuicConnectionStats
quic_stream_factory.cc     [all...]
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 121 unsigned int* estimated_bandwidth) const;
124 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 798 unsigned int* estimated_bandwidth) const {
800 video_channel, estimated_bandwidth)) {
808 unsigned int* estimated_bandwidth) const {
810 video_channel, estimated_bandwidth)) {
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_isac.h 113 int32_t SetEstimatedBandwidthSafe(int32_t estimated_bandwidth) OVERRIDE;
acm_generic_codec.h 314 // -estimated_bandwidth: estimated bandwidth in bits/sec
320 int32_t SetEstimatedBandwidth(int32_t estimated_bandwidth);
676 virtual int32_t SetEstimatedBandwidthSafe(int32_t estimated_bandwidth);
    [all...]
acm_isac.cc 108 int32_t ACMISAC::SetEstimatedBandwidthSafe(int32_t /* estimated_bandwidth */) {
545 int32_t ACMISAC::SetEstimatedBandwidthSafe(int32_t estimated_bandwidth) {
557 if (estimated_bandwidth == kIsacRatesWb[i]) {
560 } else if (estimated_bandwidth
564 } else if (estimated_bandwidth < kIsacRatesWb[i]) {
573 if (estimated_bandwidth <= kIsacRatesSwb[i]) {
acm_generic_codec.cc 585 int32_t ACMGenericCodec::SetEstimatedBandwidth(int32_t estimated_bandwidth) {
587 return SetEstimatedBandwidthSafe(estimated_bandwidth);
591 int32_t /*estimated_bandwidth*/) {
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/include/
vie_rtp_rtcp.h 428 unsigned int* estimated_bandwidth) const = 0;
431 // video, including overhead, in bits/s. |estimated_bandwidth| is 0 if there
435 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 653 milliseconds