henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * libjingle |
| 3 | * Copyright 2013, Google Inc. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions are met: |
| 7 | * |
| 8 | * 1. Redistributions of source code must retain the above copyright notice, |
| 9 | * this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * 3. The name of the author may not be used to endorse or promote products |
| 14 | * derived from this software without specific prior written permission. |
| 15 | * |
| 16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 17 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 18 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| 19 | * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 21 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 22 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 24 | * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | */ |
| 27 | |
| 28 | #include "talk/app/webrtc/localaudiosource.h" |
| 29 | |
| 30 | #include <vector> |
| 31 | |
| 32 | #include "talk/media/base/mediaengine.h" |
| 33 | #include "talk/app/webrtc/mediaconstraintsinterface.h" |
| 34 | |
| 35 | using webrtc::MediaConstraintsInterface; |
| 36 | using webrtc::MediaSourceInterface; |
| 37 | |
| 38 | namespace webrtc { |
| 39 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 40 | namespace { |
| 41 | |
| 42 | // Convert constraints to audio options. Return false if constraints are |
| 43 | // invalid. |
| 44 | bool FromConstraints(const MediaConstraintsInterface::Constraints& constraints, |
| 45 | cricket::AudioOptions* options) { |
| 46 | bool success = true; |
| 47 | MediaConstraintsInterface::Constraints::const_iterator iter; |
| 48 | |
| 49 | // This design relies on the fact that all the audio constraints are actually |
| 50 | // "options", i.e. boolean-valued and always satisfiable. If the constraints |
| 51 | // are extended to include non-boolean values or actual format constraints, |
| 52 | // a different algorithm will be required. |
| 53 | for (iter = constraints.begin(); iter != constraints.end(); ++iter) { |
| 54 | bool value = false; |
| 55 | |
| 56 | if (!talk_base::FromString(iter->value, &value)) { |
| 57 | success = false; |
| 58 | continue; |
| 59 | } |
| 60 | |
| 61 | if (iter->key == MediaConstraintsInterface::kEchoCancellation) |
| 62 | options->echo_cancellation.Set(value); |
| 63 | else if (iter->key == |
| 64 | MediaConstraintsInterface::kExperimentalEchoCancellation) |
| 65 | options->experimental_aec.Set(value); |
| 66 | else if (iter->key == MediaConstraintsInterface::kAutoGainControl) |
| 67 | options->auto_gain_control.Set(value); |
| 68 | else if (iter->key == |
| 69 | MediaConstraintsInterface::kExperimentalAutoGainControl) |
| 70 | options->experimental_agc.Set(value); |
| 71 | else if (iter->key == MediaConstraintsInterface::kNoiseSuppression) |
| 72 | options->noise_suppression.Set(value); |
| 73 | else if (iter->key == MediaConstraintsInterface::kHighpassFilter) |
| 74 | options->highpass_filter.Set(value); |
sergeyu@chromium.org | a59696b | 2013-09-13 23:48:58 +0000 | [diff] [blame] | 75 | else if (iter->key == MediaConstraintsInterface::kTypingNoiseDetection) |
| 76 | options->typing_detection.Set(value); |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 77 | else if (iter->key == MediaConstraintsInterface::kAudioMirroring) |
| 78 | options->stereo_swapping.Set(value); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 79 | else |
| 80 | success = false; |
| 81 | } |
| 82 | return success; |
| 83 | } |
| 84 | |
| 85 | } // namespace |
| 86 | |
| 87 | talk_base::scoped_refptr<LocalAudioSource> LocalAudioSource::Create( |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 88 | const PeerConnectionFactoryInterface::Options& options, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 89 | const MediaConstraintsInterface* constraints) { |
| 90 | talk_base::scoped_refptr<LocalAudioSource> source( |
| 91 | new talk_base::RefCountedObject<LocalAudioSource>()); |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 92 | source->Initialize(options, constraints); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 93 | return source; |
| 94 | } |
| 95 | |
| 96 | void LocalAudioSource::Initialize( |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 97 | const PeerConnectionFactoryInterface::Options& options, |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 98 | const MediaConstraintsInterface* constraints) { |
| 99 | if (!constraints) |
| 100 | return; |
| 101 | |
| 102 | // Apply optional constraints first, they will be overwritten by mandatory |
| 103 | // constraints. |
| 104 | FromConstraints(constraints->GetOptional(), &options_); |
| 105 | |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 106 | cricket::AudioOptions audio_options; |
| 107 | if (!FromConstraints(constraints->GetMandatory(), &audio_options)) { |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 108 | source_state_ = kEnded; |
| 109 | return; |
| 110 | } |
wu@webrtc.org | 97077a3 | 2013-10-25 21:18:33 +0000 | [diff] [blame] | 111 | options_.SetAll(audio_options); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 112 | source_state_ = kLive; |
| 113 | } |
| 114 | |
| 115 | } // namespace webrtc |