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

Unified Diff: content/renderer/media/media_stream_constraints_util.h

Issue 227743004: Added a kEchoCancellation constraint to turn off the audio processing. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: addressed Per's comments. Created 6 years, 8 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: content/renderer/media/media_stream_constraints_util.h
diff --git a/content/renderer/media/media_stream_constraints_util.h b/content/renderer/media/media_stream_constraints_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..ff762a4ad4886fb008eacf49698977d0d13847c8
--- /dev/null
+++ b/content/renderer/media/media_stream_constraints_util.h
@@ -0,0 +1,52 @@
+// Copyright 2014 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 CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CONSTRAINTS_UTIL_H_
+#define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CONSTRAINTS_UTIL_H_
+
+#include <string>
+
+namespace blink {
+class WebMediaConstraints;
+class WebString;
+}
+
+namespace content {
+
+// Method to get boolean value of constraint with |key| from constraints.
+// Returns true if the constraint is specified in either manatory or optinal
+// constraints.
+bool GetConstraintValue(const blink::WebMediaConstraints& constraints,
+ const std::string& key,
+ bool* value);
+
+// Method to get int value of constraint with |key| from constraints.
+// Returns true if the constraint is specified in either manatory or optinal
+// constraints.
+bool GetConstraintValue(const blink::WebMediaConstraints& constraints,
+ const std::string& key,
+ int* value);
+
+// Method to get std::string value of constraint with |key| from constraints.
+// Returns true if the constraint is specified in either manatory or optinal
tommi (sloooow) - chröme 2014/04/17 10:56:41 fix all "optinal" to "optional" and all "manatory"
no longer working on chromium 2014/04/23 14:59:06 Done.
+// constraints.
+bool GetConstraintValue(const blink::WebMediaConstraints& constraints,
+ const std::string& key,
+ std::string* value);
+
+// Method to get int value of constraint with |key| from the
+// manatory constraints.
+bool GetMandatoryConstraintValue(const blink::WebMediaConstraints& constraints,
+ const std::string& name,
+ int* value);
+
+// Method to get int value of constraint with |key| from the
+// optional constraints.
+bool GetOptionalConstraintValue(const blink::WebMediaConstraints& constraints,
+ const std::string& name,
+ int* value);
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CONSTRAINTS_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698