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

Unified Diff: third_party/WebKit/Source/platform/audio/PushPullFIFO.h

Issue 2549093009: Introduce PushPullFIFO class and remove other FIFOs (Closed)
Patch Set: Renaming and clarification (1) Created 3 years, 11 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: third_party/WebKit/Source/platform/audio/PushPullFIFO.h
diff --git a/third_party/WebKit/Source/platform/audio/PushPullFIFO.h b/third_party/WebKit/Source/platform/audio/PushPullFIFO.h
new file mode 100644
index 0000000000000000000000000000000000000000..33edc358191ebfa5a3fd6564c87ee152afa17dc5
--- /dev/null
+++ b/third_party/WebKit/Source/platform/audio/PushPullFIFO.h
@@ -0,0 +1,47 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PushPullFIFO_h
+#define PushPullFIFO_h
+
+#include "platform/audio/AudioBus.h"
+#include "wtf/Allocator.h"
+#include "wtf/ThreadingPrimitives.h"
+
+namespace blink {
+
+class PushPullFIFO {
+ USING_FAST_MALLOC(PushPullFIFO);
+ WTF_MAKE_NONCOPYABLE(PushPullFIFO);
+
+ public:
+ PushPullFIFO(unsigned numberOfChannels, size_t length);
+ ~PushPullFIFO();
+
+ // Pushing audio data is done by the WebAudio render-backing thread. The
+ // priority of this thread is lower than the actual audio device thread,
+ // thus the thread can be blocked when the audio device thread is pulling
+ // data from the FIFO.
+ void push(const AudioBus* inputBus);
+
+ // Pulling audio data is done by the audio device thread. This process must
+ // be non-blocking to ensure the glitch-less audio playback.
+ void pull(AudioBus* outputBus, size_t framesToPull);
+
+ // Returns the number of valid frames in FIFO.
Raymond Toy 2017/01/09 22:46:02 This comment is probably better placed as a descri
hongchan 2017/01/10 21:15:58 Done.
+ size_t framesInFIFO() const { return m_framesInFIFO; }
o1ka 2017/01/10 10:07:20 This one can be inline.
o1ka 2017/01/10 16:41:39 Ignore this comment, I thought I was in cpp :)
+
+ private:
+ RefPtr<AudioBus> m_fifoDataBus;
+ Mutex m_fifoDataBusLock;
+
+ size_t m_fifoLength;
o1ka 2017/01/10 10:07:20 const?
Raymond Toy 2017/01/10 16:18:15 Also, do all of these really need to be size_t? I
o1ka 2017/01/10 16:41:39 Agree. And as I mentioned somewhere we really need
hongchan 2017/01/10 21:15:58 I'll investigate corner cases in the next patch se
hongchan 2017/01/10 21:15:58 Done.
hongchan 2017/01/10 21:15:58 Are you suggesting we change our convention starti
+ size_t m_framesInFIFO;
Raymond Toy 2017/01/09 22:46:02 I can guess the difference between m_fifoLength an
hongchan 2017/01/10 21:15:58 Done. Yes, that's correct.
+ size_t m_indexRead;
+ size_t m_indexWrite;
+};
+
+} // namespace blink
+
+#endif // PushPullFIFO_h

Powered by Google App Engine
This is Rietveld 408576698