Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(545)

Side by Side Diff: webrtc/modules/audio_device/audio_device_buffer.cc

Issue 2663383004: Avoid calling PostTask in audio callbacks (Closed)
Patch Set: Final changes Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/modules/audio_device/audio_device_buffer.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 play_channels_(0), 46 play_channels_(0),
47 playing_(false), 47 playing_(false),
48 recording_(false), 48 recording_(false),
49 current_mic_level_(0), 49 current_mic_level_(0),
50 new_mic_level_(0), 50 new_mic_level_(0),
51 typing_status_(false), 51 typing_status_(false),
52 play_delay_ms_(0), 52 play_delay_ms_(0),
53 rec_delay_ms_(0), 53 rec_delay_ms_(0),
54 clock_drift_(0), 54 clock_drift_(0),
55 num_stat_reports_(0), 55 num_stat_reports_(0),
56 rec_callbacks_(0),
57 last_rec_callbacks_(0),
58 play_callbacks_(0),
59 last_play_callbacks_(0),
60 rec_samples_(0),
61 last_rec_samples_(0),
62 play_samples_(0),
63 last_play_samples_(0),
64 max_rec_level_(0),
65 max_play_level_(0),
66 last_timer_task_time_(0), 56 last_timer_task_time_(0),
67 rec_stat_count_(0), 57 rec_stat_count_(0),
68 play_stat_count_(0), 58 play_stat_count_(0),
69 play_start_time_(0), 59 play_start_time_(0),
70 rec_start_time_(0),
71 only_silence_recorded_(true), 60 only_silence_recorded_(true),
72 log_stats_(false) { 61 log_stats_(false) {
73 LOG(INFO) << "AudioDeviceBuffer::ctor"; 62 LOG(INFO) << "AudioDeviceBuffer::ctor";
74 playout_thread_checker_.DetachFromThread(); 63 playout_thread_checker_.DetachFromThread();
75 recording_thread_checker_.DetachFromThread(); 64 recording_thread_checker_.DetachFromThread();
76 } 65 }
77 66
78 AudioDeviceBuffer::~AudioDeviceBuffer() { 67 AudioDeviceBuffer::~AudioDeviceBuffer() {
79 RTC_DCHECK_RUN_ON(&main_thread_checker_); 68 RTC_DCHECK_RUN_ON(&main_thread_checker_);
80 RTC_DCHECK(!playing_); 69 RTC_DCHECK(!playing_);
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 // Returns the largest absolute value in a signed 16-bit vector. 308 // Returns the largest absolute value in a signed 16-bit vector.
320 max_abs = WebRtcSpl_MaxAbsValueW16(rec_buffer_.data(), rec_buffer_.size()); 309 max_abs = WebRtcSpl_MaxAbsValueW16(rec_buffer_.data(), rec_buffer_.size());
321 rec_stat_count_ = 0; 310 rec_stat_count_ = 0;
322 // Set |only_silence_recorded_| to false as soon as at least one detection 311 // Set |only_silence_recorded_| to false as soon as at least one detection
323 // of a non-zero audio packet is found. It can only be restored to true 312 // of a non-zero audio packet is found. It can only be restored to true
324 // again by restarting the call. 313 // again by restarting the call.
325 if (max_abs > 0) { 314 if (max_abs > 0) {
326 only_silence_recorded_ = false; 315 only_silence_recorded_ = false;
327 } 316 }
328 } 317 }
329 // Update some stats but do it on the task queue to ensure that the members 318 // Update recording stats which is used as base for periodic logging of the
330 // are modified and read on the same thread. Note that |max_abs| will be 319 // audio input state.
331 // zero in most calls and then have no effect of the stats. It is only updated 320 UpdateRecStats(max_abs, samples_per_channel);
332 // approximately two times per second and can then change the stats.
333 task_queue_.PostTask([this, max_abs, samples_per_channel] {
334 UpdateRecStats(max_abs, samples_per_channel);
335 });
336 return 0; 321 return 0;
337 } 322 }
338 323
339 int32_t AudioDeviceBuffer::DeliverRecordedData() { 324 int32_t AudioDeviceBuffer::DeliverRecordedData() {
340 RTC_DCHECK_RUN_ON(&recording_thread_checker_); 325 RTC_DCHECK_RUN_ON(&recording_thread_checker_);
341 if (!audio_transport_cb_) { 326 if (!audio_transport_cb_) {
342 LOG(LS_WARNING) << "Invalid audio transport"; 327 LOG(LS_WARNING) << "Invalid audio transport";
343 return 0; 328 return 0;
344 } 329 }
345 const size_t frames = rec_buffer_.size() / rec_channels_; 330 const size_t frames = rec_buffer_.size() / rec_channels_;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 375
391 // Derive a new level value twice per second. 376 // Derive a new level value twice per second.
392 int16_t max_abs = 0; 377 int16_t max_abs = 0;
393 RTC_DCHECK_LT(play_stat_count_, 50); 378 RTC_DCHECK_LT(play_stat_count_, 50);
394 if (++play_stat_count_ >= 50) { 379 if (++play_stat_count_ >= 50) {
395 // Returns the largest absolute value in a signed 16-bit vector. 380 // Returns the largest absolute value in a signed 16-bit vector.
396 max_abs = 381 max_abs =
397 WebRtcSpl_MaxAbsValueW16(play_buffer_.data(), play_buffer_.size()); 382 WebRtcSpl_MaxAbsValueW16(play_buffer_.data(), play_buffer_.size());
398 play_stat_count_ = 0; 383 play_stat_count_ = 0;
399 } 384 }
400 // Update some stats but do it on the task queue to ensure that the members 385 // Update playout stats which is used as base for periodic logging of the
401 // are modified and read on the same thread. Note that |max_abs| will be 386 // audio output state.
402 // zero in most calls and then have no effect of the stats. It is only updated 387 UpdatePlayStats(max_abs, num_samples_out);
403 // approximately two times per second and can then change the stats.
404 task_queue_.PostTask([this, max_abs, num_samples_out] {
405 UpdatePlayStats(max_abs, num_samples_out);
406 });
407 return static_cast<int32_t>(num_samples_out); 388 return static_cast<int32_t>(num_samples_out);
408 } 389 }
409 390
410 int32_t AudioDeviceBuffer::GetPlayoutData(void* audio_buffer) { 391 int32_t AudioDeviceBuffer::GetPlayoutData(void* audio_buffer) {
411 RTC_DCHECK_RUN_ON(&playout_thread_checker_); 392 RTC_DCHECK_RUN_ON(&playout_thread_checker_);
412 RTC_DCHECK_GT(play_buffer_.size(), 0); 393 RTC_DCHECK_GT(play_buffer_.size(), 0);
413 const size_t bytes_per_sample = sizeof(int16_t); 394 const size_t bytes_per_sample = sizeof(int16_t);
414 memcpy(audio_buffer, play_buffer_.data(), 395 memcpy(audio_buffer, play_buffer_.data(),
415 play_buffer_.size() * bytes_per_sample); 396 play_buffer_.size() * bytes_per_sample);
416 // Return samples per channel or number of frames. 397 // Return samples per channel or number of frames.
(...skipping 29 matching lines...) Expand all
446 427
447 // Avoid adding more logs since we are in STOP mode. 428 // Avoid adding more logs since we are in STOP mode.
448 if (!log_stats_) { 429 if (!log_stats_) {
449 return; 430 return;
450 } 431 }
451 432
452 int64_t next_callback_time = now_time + kTimerIntervalInMilliseconds; 433 int64_t next_callback_time = now_time + kTimerIntervalInMilliseconds;
453 int64_t time_since_last = rtc::TimeDiff(now_time, last_timer_task_time_); 434 int64_t time_since_last = rtc::TimeDiff(now_time, last_timer_task_time_);
454 last_timer_task_time_ = now_time; 435 last_timer_task_time_ = now_time;
455 436
437 Stats stats;
438 {
439 rtc::CritScope cs(&lock_);
440 stats = stats_;
441 stats_.max_rec_level = 0;
442 stats_.max_play_level = 0;
443 }
444
456 // Log the latest statistics but skip the first round just after state was 445 // Log the latest statistics but skip the first round just after state was
457 // set to LOG_START. Hence, first printed log will be after ~10 seconds. 446 // set to LOG_START. Hence, first printed log will be after ~10 seconds.
458 if (++num_stat_reports_ > 1 && time_since_last > 0) { 447 if (++num_stat_reports_ > 1 && time_since_last > 0) {
459 uint32_t diff_samples = rec_samples_ - last_rec_samples_; 448 uint32_t diff_samples = stats.rec_samples - last_stats_.rec_samples;
460 float rate = diff_samples / (static_cast<float>(time_since_last) / 1000.0); 449 float rate = diff_samples / (static_cast<float>(time_since_last) / 1000.0);
461 LOG(INFO) << "[REC : " << time_since_last << "msec, " 450 LOG(INFO) << "[REC : " << time_since_last << "msec, "
462 << rec_sample_rate_ / 1000 451 << rec_sample_rate_ / 1000 << "kHz] callbacks: "
463 << "kHz] callbacks: " << rec_callbacks_ - last_rec_callbacks_ 452 << stats.rec_callbacks - last_stats_.rec_callbacks << ", "
464 << ", "
465 << "samples: " << diff_samples << ", " 453 << "samples: " << diff_samples << ", "
466 << "rate: " << static_cast<int>(rate + 0.5) << ", " 454 << "rate: " << static_cast<int>(rate + 0.5) << ", "
467 << "level: " << max_rec_level_; 455 << "level: " << stats.max_rec_level;
468 456
469 diff_samples = play_samples_ - last_play_samples_; 457 diff_samples = stats.play_samples - last_stats_.play_samples;
470 rate = diff_samples / (static_cast<float>(time_since_last) / 1000.0); 458 rate = diff_samples / (static_cast<float>(time_since_last) / 1000.0);
471 LOG(INFO) << "[PLAY: " << time_since_last << "msec, " 459 LOG(INFO) << "[PLAY: " << time_since_last << "msec, "
472 << play_sample_rate_ / 1000 460 << play_sample_rate_ / 1000 << "kHz] callbacks: "
473 << "kHz] callbacks: " << play_callbacks_ - last_play_callbacks_ 461 << stats.play_callbacks - last_stats_.play_callbacks << ", "
474 << ", "
475 << "samples: " << diff_samples << ", " 462 << "samples: " << diff_samples << ", "
476 << "rate: " << static_cast<int>(rate + 0.5) << ", " 463 << "rate: " << static_cast<int>(rate + 0.5) << ", "
477 << "level: " << max_play_level_; 464 << "level: " << stats.max_play_level;
465 last_stats_ = stats;
478 } 466 }
479 467
480 last_rec_callbacks_ = rec_callbacks_;
481 last_play_callbacks_ = play_callbacks_;
482 last_rec_samples_ = rec_samples_;
483 last_play_samples_ = play_samples_;
484 max_rec_level_ = 0;
485 max_play_level_ = 0;
486
487 int64_t time_to_wait_ms = next_callback_time - rtc::TimeMillis(); 468 int64_t time_to_wait_ms = next_callback_time - rtc::TimeMillis();
488 RTC_DCHECK_GT(time_to_wait_ms, 0) << "Invalid timer interval"; 469 RTC_DCHECK_GT(time_to_wait_ms, 0) << "Invalid timer interval";
489 470
490 // Keep posting new (delayed) tasks until state is changed to kLogStop. 471 // Keep posting new (delayed) tasks until state is changed to kLogStop.
491 task_queue_.PostDelayedTask(rtc::Bind(&AudioDeviceBuffer::LogStats, this, 472 task_queue_.PostDelayedTask(rtc::Bind(&AudioDeviceBuffer::LogStats, this,
492 AudioDeviceBuffer::LOG_ACTIVE), 473 AudioDeviceBuffer::LOG_ACTIVE),
493 time_to_wait_ms); 474 time_to_wait_ms);
494 } 475 }
495 476
496 void AudioDeviceBuffer::ResetRecStats() { 477 void AudioDeviceBuffer::ResetRecStats() {
497 RTC_DCHECK_RUN_ON(&task_queue_); 478 RTC_DCHECK_RUN_ON(&task_queue_);
498 rec_callbacks_ = 0; 479 last_stats_.ResetRecStats();
499 last_rec_callbacks_ = 0; 480 rtc::CritScope cs(&lock_);
500 rec_samples_ = 0; 481 stats_.ResetRecStats();
501 last_rec_samples_ = 0;
502 max_rec_level_ = 0;
503 } 482 }
504 483
505 void AudioDeviceBuffer::ResetPlayStats() { 484 void AudioDeviceBuffer::ResetPlayStats() {
506 RTC_DCHECK_RUN_ON(&task_queue_); 485 RTC_DCHECK_RUN_ON(&task_queue_);
507 play_callbacks_ = 0; 486 last_stats_.ResetPlayStats();
508 last_play_callbacks_ = 0; 487 rtc::CritScope cs(&lock_);
509 play_samples_ = 0; 488 stats_.ResetPlayStats();
510 last_play_samples_ = 0;
511 max_play_level_ = 0;
512 } 489 }
513 490
514 void AudioDeviceBuffer::UpdateRecStats(int16_t max_abs, 491 void AudioDeviceBuffer::UpdateRecStats(int16_t max_abs,
515 size_t samples_per_channel) { 492 size_t samples_per_channel) {
516 RTC_DCHECK_RUN_ON(&task_queue_); 493 RTC_DCHECK_RUN_ON(&recording_thread_checker_);
517 ++rec_callbacks_; 494 rtc::CritScope cs(&lock_);
518 rec_samples_ += samples_per_channel; 495 ++stats_.rec_callbacks;
519 if (max_abs > max_rec_level_) { 496 stats_.rec_samples += samples_per_channel;
520 max_rec_level_ = max_abs; 497 if (max_abs > stats_.max_rec_level) {
498 stats_.max_rec_level = max_abs;
521 } 499 }
522 } 500 }
523 501
524 void AudioDeviceBuffer::UpdatePlayStats(int16_t max_abs, 502 void AudioDeviceBuffer::UpdatePlayStats(int16_t max_abs,
525 size_t samples_per_channel) { 503 size_t samples_per_channel) {
526 RTC_DCHECK_RUN_ON(&task_queue_); 504 RTC_DCHECK_RUN_ON(&playout_thread_checker_);
527 ++play_callbacks_; 505 rtc::CritScope cs(&lock_);
528 play_samples_ += samples_per_channel; 506 ++stats_.play_callbacks;
529 if (max_abs > max_play_level_) { 507 stats_.play_samples += samples_per_channel;
530 max_play_level_ = max_abs; 508 if (max_abs > stats_.max_play_level) {
509 stats_.max_play_level = max_abs;
531 } 510 }
532 } 511 }
533 512
534 } // namespace webrtc 513 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_device/audio_device_buffer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698