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

Unified Diff: media/audio/audio_io.h

Issue 1487983002: Forward the number of skipped frames by the OS in audio playout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Writing skipped frames to shared memory. Created 5 years 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: media/audio/audio_io.h
diff --git a/media/audio/audio_io.h b/media/audio/audio_io.h
index 56392154e3229a062a77fd8b1d9ba12090558bca..45af3d29db960015e27dd8b5bf0598687077a47e 100644
--- a/media/audio/audio_io.h
+++ b/media/audio/audio_io.h
@@ -61,7 +61,10 @@ class MEDIA_EXPORT AudioOutputStream {
// Provide more data by fully filling |dest|. The source will return
// the number of frames it filled. |total_bytes_delay| contains current
// number of bytes of delay buffered by the AudioOutputStream.
- virtual int OnMoreData(AudioBus* dest, uint32 total_bytes_delay) = 0;
+ // |frames_skipped| contains the number of frames skipped by the consumer.
+ virtual int OnMoreData(AudioBus* dest,
+ uint32_t total_bytes_delay,
+ uint32_t frames_skipped) = 0;
// There was an error while playing a buffer. Audio source cannot be
// destroyed yet. No direct action needed by the AudioStream, but it is

Powered by Google App Engine
This is Rietveld 408576698