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

Unified Diff: webrtc/common_audio/audio_ring_buffer.h

Issue 1252943007: Split MoveReadPosition into Forward and Backward versions. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Windows again... Created 5 years, 5 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
« no previous file with comments | « no previous file | webrtc/common_audio/audio_ring_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/common_audio/audio_ring_buffer.h
diff --git a/webrtc/common_audio/audio_ring_buffer.h b/webrtc/common_audio/audio_ring_buffer.h
index 85d2531ad2fcc5af749f3906994fef715b711c06..9d0815a818634f30eee3d8e469bc65a511005ace 100644
--- a/webrtc/common_audio/audio_ring_buffer.h
+++ b/webrtc/common_audio/audio_ring_buffer.h
@@ -38,9 +38,12 @@ class AudioRingBuffer final {
size_t ReadFramesAvailable() const;
size_t WriteFramesAvailable() const;
- // Positive values advance the read pointer and negative values withdraw
- // the read pointer (i.e. flush and stuff the buffer respectively.)
- void MoveReadPosition(int frames);
+ // Move the read position. The forward version advances the read pointer
Peter Kasting 2015/07/27 20:23:37 Nit: Per the style guide, all the function comment
Andrew MacDonald 2015/07/28 07:11:06 Good point. Done.
+ // towards the write pointer and the backward verison withdraws the read
+ // pointer away from the write pointer (i.e. flush and stuff the buffer
+ // respectively.)
+ void MoveReadPositionForward(size_t frames);
+ void MoveReadPositionBackward(size_t frames);
private:
// We don't use a ScopedVector because it doesn't support a specialized
« no previous file with comments | « no previous file | webrtc/common_audio/audio_ring_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698