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

Unified Diff: trunk/src/media/audio/win/audio_low_latency_output_win.cc

Issue 487543002: Revert 290359 "Remove AudioBuffersState class." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: trunk/src/media/audio/win/audio_low_latency_output_win.cc
===================================================================
--- trunk/src/media/audio/win/audio_low_latency_output_win.cc (revision 290374)
+++ trunk/src/media/audio/win/audio_low_latency_output_win.cc (working copy)
@@ -498,9 +498,13 @@
// Read a data packet from the registered client source and
// deliver a delay estimate in the same callback to the client.
+ // A time stamp is also stored in the AudioBuffersState. This
+ // time stamp can be used at the client side to compensate for
+ // the delay between the usage of the delay value and the time
+ // of generation.
int frames_filled = source_->OnMoreData(
- audio_bus_.get(), audio_delay_bytes);
+ audio_bus_.get(), AudioBuffersState(0, audio_delay_bytes));
uint32 num_filled_bytes = frames_filled * format_.Format.nBlockAlign;
DCHECK_LE(num_filled_bytes, packet_size_bytes_);

Powered by Google App Engine
This is Rietveld 408576698