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

Side by Side 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, 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CONSTRAINTS_UTIL_H_
6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CONSTRAINTS_UTIL_H_
7
8 #include <string>
9
10 namespace blink {
11 class WebMediaConstraints;
12 class WebString;
13 }
14
15 namespace content {
16
17 // Method to get boolean value of constraint with key |name| from constraints.
18 // Returns true if the constraint is specified in either manatory or optinal
19 // constraints.
20 bool GetConstraintValue(const blink::WebMediaConstraints& constraints,
21 const std::string& name,
22 bool* value);
23
24 // Method to get int value of constraint with key |name| from constraints.
25 // Returns true if the constraint is specified in either manatory or optinal
26 // constraints.
27 bool GetConstraintValue(const blink::WebMediaConstraints& constraints,
28 const std::string& name,
29 int* value);
30
31 // Method to get int value of constraint with key |name| from the
32 // manatory constraints.
33 bool GetManatoryConstraintValue(const blink::WebMediaConstraints& constraints,
tommi (sloooow) - chröme 2014/04/08 10:49:30 fix typo
no longer working on chromium 2014/04/11 08:56:30 Done.
34 const std::string& name,
35 int* value);
36
37 // Method to get int value of constraint with key |name| from the
38 // optional constraints.
39 bool GetOptionalConstraintValue(const blink::WebMediaConstraints& constraints,
40 const std::string& name,
41 int* value);
42
43 } // namespace content
44
45 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_CONSTRAINTS_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698