Home | History | Annotate | Download | only in webrtc

Lines Matching refs:constraints

37 // Constraints declared as static members in mediastreaminterface.h
38 // Specified by draft-alvestrand-constraints-resolution-00b
48 // Audio constraints.
88 // Below constraints should be used during PeerConnection construction.
124 bool MediaConstraintsInterface::Constraints::FindFirst(
126 for (Constraints::const_iterator iter = begin(); iter != end(); ++iter) {
136 // |key| and return its value as |value|. |constraints| can be null.
138 // among the mandatory constraints.
142 // Note: Because this uses FindFirst, repeated optional constraints whose
145 bool FindConstraint(const MediaConstraintsInterface* constraints,
149 if (!constraints) {
152 if (constraints->GetMandatory().FindFirst(key, &string_value)) {
157 if (constraints->GetOptional().FindFirst(key, &string_value)) {