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

Unified Diff: webrtc/modules/audio_processing/render_queues_verifier.h

Issue 1772553002: Removed the ProcessingComponent class (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@RemoveComponentFromAGC_CL
Patch Set: Removed the ProcessingComponent class Created 4 years, 9 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 | « webrtc/modules/audio_processing/processing_component.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/render_queues_verifier.h
diff --git a/webrtc/modules/audio_processing/render_queues_verifier.h b/webrtc/modules/audio_processing/render_queues_verifier.h
new file mode 100644
index 0000000000000000000000000000000000000000..3796d84154a69a1d0f5da8c75a59ee23e8c2b8b1
--- /dev/null
+++ b/webrtc/modules/audio_processing/render_queues_verifier.h
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#ifndef WEBRTC_MODULES_AUDIO_PROCESSING_RENDER_QUEUES_VERIFIER_H_
the sun 2016/03/07 15:00:52 Rename this file render_queue_item_verifier (as pe
peah-webrtc 2016/03/08 08:03:11 Done.
+#define WEBRTC_MODULES_AUDIO_PROCESSING_RENDER_QUEUES_VERIFIER_H_
+
+#include <vector>
+
+namespace webrtc {
+
+// Functor to use when supplying a verifier function for the queue item
+// verifcation.
+template <typename T>
+class RenderQueueItemVerifier {
+ public:
+ explicit RenderQueueItemVerifier(size_t minimum_capacity)
+ : minimum_capacity_(minimum_capacity) {}
+
+ bool operator()(const std::vector<T>& v) const {
+ return v.capacity() >= minimum_capacity_;
+ }
+
+ private:
+ size_t minimum_capacity_;
+};
+
+} // namespace webrtc
+
+#endif // WEBRTC_MODULES_AUDIO_PROCESSING_RENDER_QUEUES_VERIFIER_H__
« no previous file with comments | « webrtc/modules/audio_processing/processing_component.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698