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

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: Created 6 years, 7 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..706ed4f038c058db0456f35fd41a592e8d7f7653
--- /dev/null
+++ b/content/renderer/media/media_stream_constraints_util.h
@@ -0,0 +1,73 @@
+// 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>
+
+#include "content/common/content_export.h"
+
+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 mandatory or optional
+// constraints.
+bool CONTENT_EXPORT GetConstraintValueAsBoolean(
+ 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 mandatory or Optional
+// constraints.
+bool CONTENT_EXPORT GetConstraintValueAsInteger(
+ 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 mandatory or Optional
+// constraints.
+bool CONTENT_EXPORT GetConstraintValueAsString(
+ const blink::WebMediaConstraints& constraints,
+ const std::string& key,
+ std::string* value);
+
+// Method to get boolean value of constraint with |key| from the
+// mandatory constraints.
+bool CONTENT_EXPORT GetMandatoryConstraintValueAsBoolean(
+ const blink::WebMediaConstraints& constraints,
+ const std::string& name,
+ bool* value);
+
+// Method to get int value of constraint with |key| from the
+// mandatory constraints.
+bool CONTENT_EXPORT GetMandatoryConstraintValueAsInteger(
+ const blink::WebMediaConstraints& constraints,
+ const std::string& name,
+ int* value);
+
+// Method to get bool value of constraint with |key| from the
+// optional constraints.
+bool CONTENT_EXPORT GetOptionalConstraintValueAsBoolean(
+ const blink::WebMediaConstraints& constraints,
+ const std::string& name,
+ bool* value);
+
+// Method to get int value of constraint with |key| from the
+// optional constraints.
+bool CONTENT_EXPORT GetOptionalConstraintValueAsInteger(
+ 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