| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 static const char kMaxWidth[]; // maxWidth | 67 static const char kMaxWidth[]; // maxWidth |
| 68 static const char kMinWidth[]; // minWidth | 68 static const char kMinWidth[]; // minWidth |
| 69 static const char kMaxHeight[]; // maxHeight | 69 static const char kMaxHeight[]; // maxHeight |
| 70 static const char kMinHeight[]; // minHeight | 70 static const char kMinHeight[]; // minHeight |
| 71 static const char kMaxFrameRate[]; // maxFrameRate | 71 static const char kMaxFrameRate[]; // maxFrameRate |
| 72 static const char kMinFrameRate[]; // minFrameRate | 72 static const char kMinFrameRate[]; // minFrameRate |
| 73 | 73 |
| 74 // Constraint keys used by a local audio source. | 74 // Constraint keys used by a local audio source. |
| 75 // These keys are google specific. | 75 // These keys are google specific. |
| 76 static const char kEchoCancellation[]; // googEchoCancellation | 76 static const char kEchoCancellation[]; // googEchoCancellation |
| 77 // TODO(henrik.lundin) Remove kExperimentalEchoCancellation. |
| 78 // https://code.google.com/p/webrtc/issues/detail?id=4696 |
| 77 static const char kExperimentalEchoCancellation[]; // googEchoCancellation2 | 79 static const char kExperimentalEchoCancellation[]; // googEchoCancellation2 |
| 80 static const char kExtendedFilterEchoCancellation[]; // googEchoCancellation2 |
| 78 static const char kDAEchoCancellation[]; // googDAEchoCancellation | 81 static const char kDAEchoCancellation[]; // googDAEchoCancellation |
| 79 static const char kAutoGainControl[]; // googAutoGainControl | 82 static const char kAutoGainControl[]; // googAutoGainControl |
| 80 static const char kExperimentalAutoGainControl[]; // googAutoGainControl2 | 83 static const char kExperimentalAutoGainControl[]; // googAutoGainControl2 |
| 81 static const char kNoiseSuppression[]; // googNoiseSuppression | 84 static const char kNoiseSuppression[]; // googNoiseSuppression |
| 82 static const char kExperimentalNoiseSuppression[]; // googNoiseSuppression2 | 85 static const char kExperimentalNoiseSuppression[]; // googNoiseSuppression2 |
| 83 static const char kHighpassFilter[]; // googHighpassFilter | 86 static const char kHighpassFilter[]; // googHighpassFilter |
| 84 static const char kTypingNoiseDetection[]; // googTypingNoiseDetection | 87 static const char kTypingNoiseDetection[]; // googTypingNoiseDetection |
| 85 static const char kAudioMirroring[]; // googAudioMirroring | 88 static const char kAudioMirroring[]; // googAudioMirroring |
| 86 static const char kAecDump[]; // audioDebugRecording | 89 static const char kAecDump[]; // audioDebugRecording |
| 87 | 90 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 virtual ~MediaConstraintsInterface() {} | 146 virtual ~MediaConstraintsInterface() {} |
| 144 }; | 147 }; |
| 145 | 148 |
| 146 bool FindConstraint(const MediaConstraintsInterface* constraints, | 149 bool FindConstraint(const MediaConstraintsInterface* constraints, |
| 147 const std::string& key, bool* value, | 150 const std::string& key, bool* value, |
| 148 size_t* mandatory_constraints); | 151 size_t* mandatory_constraints); |
| 149 | 152 |
| 150 } // namespace webrtc | 153 } // namespace webrtc |
| 151 | 154 |
| 152 #endif // TALK_APP_WEBRTC_MEDIACONSTRAINTSINTERFACE_H_ | 155 #endif // TALK_APP_WEBRTC_MEDIACONSTRAINTSINTERFACE_H_ |
| OLD | NEW |