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

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c 849 int32_t MinRate = 0;
859 MinRate = INIT_RATE;
861 MinRate = 0;
870 MinRate = (512 + SAMPLES_PER_MSEC * ((DelayBuildUp * inv_Q12) >> 3)) *
876 MinRate = (512 + SAMPLES_PER_MSEC * (((DelayBuildUp -
879 /* MinRate will be negative here */
880 MinRate = 0;
882 MinRate = (512 - ((den * inv_Q12) >> 3)) * BottleNeck;
884 //if (MinRate < 1.04 * BottleNeck)
885 // MinRate = 1.04 * BottleNeck
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
bandwidth_estimator.c 809 double MinRate = 0.0;
822 MinRate = INIT_RATE_WB;
826 MinRate = INIT_RATE_SWB;
831 MinRate = 0;
842 MinRate = (1.0 + (FS/1000) * DelayBuildUp /
849 MinRate = (1.0 + (FS/1000) * (DelayBuildUp -
851 if (MinRate < 1.04 * BottleNeck)
853 MinRate = 1.04 * BottleNeck;
862 MinBytes = (int) (MinRate * FrameSamples / (8.0 * FS));

Completed in 50 milliseconds