HomeSort by relevance Sort by last modified time
    Searched refs:delay_ms (Results 51 - 75 of 82) sorted by null

1 23 4

  /hardware/libhardware/include/hardware/
audio_policy.h 330 int delay_ms);
341 int delay_ms);
366 int delay_ms);
  /external/webrtc/webrtc/video/
overuse_frame_detector_unittest.cc 76 int num_frames, int interval_ms, int width, int height, int delay_ms) {
80 clock_->AdvanceTimeMilliseconds(delay_ms);
82 clock_->AdvanceTimeMilliseconds(interval_ms - delay_ms);
send_statistics_proxy.cc 149 int delay_ms = delay_counter_.Avg(kMinRequiredSamples); local
150 if (delay_ms != -1)
152 delay_ms);
vie_channel.h 98 void SetExpectedRenderDelay(int delay_ms);
  /external/webrtc/webrtc/modules/video_render/
video_render_impl.h 113 int32_t delay_ms);
video_render_impl.cc 511 uint32_t stream_id, int32_t delay_ms) {
526 delay_ms);
531 return item->second->SetExpectedRenderDelay(delay_ms);
video_render_internal_impl.cc 734 uint32_t stream_id, int32_t delay_ms) {
749 delay_ms);
754 return item->second->SetExpectedRenderDelay(delay_ms);
  /external/webrtc/talk/app/webrtc/test/
fakeaudiocapturemodule.h 172 int32_t PlayoutDelay(uint16_t* delay_ms) const override;
173 int32_t RecordingDelay(uint16_t* delay_ms) const override;
fakeaudiocapturemodule.cc 514 int32_t FakeAudioCaptureModule::PlayoutDelay(uint16_t* delay_ms) const {
516 *delay_ms = 0;
520 int32_t FakeAudioCaptureModule::RecordingDelay(uint16_t* /*delay_ms*/) const {
  /external/webrtc/webrtc/common_video/
incoming_video_stream.cc 116 int32_t delay_ms) {
122 return render_buffers_->SetRenderDelay(delay_ms);
  /external/webrtc/webrtc/test/
fake_encoder.cc 196 DelayedEncoder::DelayedEncoder(Clock* clock, int delay_ms)
198 delay_ms_(delay_ms) {}
mock_voice_engine.h 303 MOCK_METHOD2(SetMinimumPlayoutDelay, int(int channel, int delay_ms));
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 167 " am stack size-docked-stack-test: <STEP_SIZE> <l|t|r|b> [DELAY_MS]\n" +
177 " am task drag-task-test <TASK_ID> <STEP_SIZE> [DELAY_MS] \n" +
178 " am task size-task-test <TASK_ID> <STEP_SIZE> [DELAY_MS] \n" +
319 " applying the optional [DELAY_MS] between each step.\n" +
345 " <STEP_SIZE> increments around the screen applying the optional [DELAY_MS]\n" +
349 " increments within the screen applying the optional [DELAY_MS] between\n" +
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
process_test.cc 562 int delay_ms = 0; local
737 delay_ms = msg.delay() + extra_delay_ms;
739 delay_ms = override_delay_ms;
742 apm->set_stream_delay_ms(delay_ms));
    [all...]
audio_processing_unittest.cc 372 void ProcessDelayVerificationTest(int delay_ms, int system_delay_ms,
606 void ApmTest::ProcessDelayVerificationTest(int delay_ms, int system_delay_ms,
619 int frame_delay = delay_ms / 10;
681 int expected_median = std::min(std::max(delay_ms - system_delay_ms,
1011 int delay_ms = TruncateToMultipleOf10(kSystemDelayMs + delay_min_ms); local
    [all...]
  /external/webrtc/webrtc/voice_engine/
transmit_mixer.h 184 void ProcessAudio(int delay_ms, int clock_drift, int current_mic_level,
  /external/webrtc/webrtc/modules/audio_coding/neteq/
neteq_impl.h 127 bool SetMinimumDelay(int delay_ms) override;
129 bool SetMaximumDelay(int delay_ms) override;
neteq_impl.cc 258 bool NetEqImpl::SetMinimumDelay(int delay_ms) {
260 if (delay_ms >= 0 && delay_ms < 10000) {
262 return delay_manager_->SetMinimumDelay(delay_ms);
267 bool NetEqImpl::SetMaximumDelay(int delay_ms) {
269 if (delay_ms >= 0 && delay_ms < 10000) {
271 return delay_manager_->SetMaximumDelay(delay_ms);
301 const int delay_ms = local
303 return delay_ms;
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
httpproxy.py 303 down_bandwidth='0', up_bandwidth='0', delay_ms='0'):
315 delay_ms: Propagation delay in milliseconds. '0' means no delay.
343 self.traffic_shaping_delay_ms = int(delay_ms)
  /hardware/libhardware/modules/radio/
radio_hw.c 128 unsigned int delay_ms,
137 ALOGV("%s %d delay_ms %d", __func__, type, delay_ms);
150 ts.tv_sec += delay_ms/1000;
151 ts.tv_nsec += (delay_ms%1000) * 1000000;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_rtcp_impl_unittest.cc 64 void SimulateNetworkDelay(int64_t delay_ms, SimulatedClock* clock) {
66 delay_ms_ = delay_ms;
  /device/htc/flounder/sensor_hub/libsensors/
CwMcuSensor.cpp 847 int delay_ms; local
855 delay_ms = period_ns/NS_PER_MS; // int64_t is being dropped to an int type
932 int n = snprintf(buf, sizeof(buf), "%d %d %d %d\n", what, flags, delay_ms, timeout_ms);
943 ALOGV("CwMcuSensor::batch: fd = %d, sensors_id = %d, flags = %d, delay_ms= %d,"
945 fd , what, flags, delay_ms, timeout_ms, fixed_sysfs_path, err);
    [all...]
  /device/htc/flounder/audio/visualizer/
nv_offload_visualizer.c 800 const int32_t delay_ms = visualizer_get_delta_time_ms_from_updated_time(visu_ctxt); local
801 if (delay_ms > DISCARD_MEASUREMENTS_TIME_MS) {
803 ALOGV("Discarding measurements, last measurement is %dms old", delay_ms);
    [all...]
  /frameworks/av/services/audiopolicy/service/
AudioPolicyService.cpp     [all...]
  /hardware/qcom/audio/visualizer/
offload_visualizer.c 887 const int32_t delay_ms = visualizer_get_delta_time_ms_from_updated_time(visu_ctxt); local
888 if (delay_ms > DISCARD_MEASUREMENTS_TIME_MS) {
890 ALOGV("Discarding measurements, last measurement is %dms old", delay_ms);
    [all...]

Completed in 1554 milliseconds

1 23 4