blob: 1148d80f7c2c0c3526efab1bcde5c5171cf87ed4 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
2 * libjingle
jlmiller@webrtc.org5f93d0a2015-01-20 21:36:13 +00003 * Copyright 2013 Google Inc.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00004 *
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// This file contains the interface for MediaConstraints, corresponding to
29// the definition at
30// http://www.w3.org/TR/mediacapture-streams/#mediastreamconstraints and also
31// used in WebRTC: http://dev.w3.org/2011/webrtc/editor/webrtc.html#constraints.
32
33#ifndef TALK_APP_WEBRTC_MEDIACONSTRAINTSINTERFACE_H_
34#define TALK_APP_WEBRTC_MEDIACONSTRAINTSINTERFACE_H_
35
36#include <string>
37#include <vector>
38
39namespace webrtc {
40
41// MediaConstraintsInterface
42// Interface used for passing arguments about media constraints
43// to the MediaStream and PeerConnection implementation.
44class MediaConstraintsInterface {
45 public:
46 struct Constraint {
47 Constraint() {}
48 Constraint(const std::string& key, const std::string value)
49 : key(key), value(value) {
50 }
51 std::string key;
52 std::string value;
53 };
54
55 class Constraints : public std::vector<Constraint> {
56 public:
57 bool FindFirst(const std::string& key, std::string* value) const;
58 };
59
60 virtual const Constraints& GetMandatory() const = 0;
61 virtual const Constraints& GetOptional() const = 0;
62
henrike@webrtc.org28e20752013-07-10 00:45:36 +000063 // Constraint keys used by a local video source.
64 // Specified by draft-alvestrand-constraints-resolution-00b
65 static const char kMinAspectRatio[]; // minAspectRatio
66 static const char kMaxAspectRatio[]; // maxAspectRatio
67 static const char kMaxWidth[]; // maxWidth
68 static const char kMinWidth[]; // minWidth
69 static const char kMaxHeight[]; // maxHeight
70 static const char kMinHeight[]; // minHeight
71 static const char kMaxFrameRate[]; // maxFrameRate
72 static const char kMinFrameRate[]; // minFrameRate
73
74 // Constraint keys used by a local audio source.
75 // These keys are google specific.
76 static const char kEchoCancellation[]; // googEchoCancellation
Henrik Lundin5f4b7e22015-06-05 09:55:32 +020077 static const char kExtendedFilterEchoCancellation[]; // googEchoCancellation2
Bjorn Volckerbf395c12015-03-25 22:45:56 +010078 static const char kDAEchoCancellation[]; // googDAEchoCancellation
henrike@webrtc.org28e20752013-07-10 00:45:36 +000079 static const char kAutoGainControl[]; // googAutoGainControl
80 static const char kExperimentalAutoGainControl[]; // googAutoGainControl2
81 static const char kNoiseSuppression[]; // googNoiseSuppression
sergeyu@chromium.org9cf037b2014-02-07 19:03:26 +000082 static const char kExperimentalNoiseSuppression[]; // googNoiseSuppression2
henrike@webrtc.org28e20752013-07-10 00:45:36 +000083 static const char kHighpassFilter[]; // googHighpassFilter
sergeyu@chromium.orga59696b2013-09-13 23:48:58 +000084 static const char kTypingNoiseDetection[]; // googTypingNoiseDetection
wu@webrtc.org97077a32013-10-25 21:18:33 +000085 static const char kAudioMirroring[]; // googAudioMirroring
Bjorn Volcker1ba344a2015-04-29 07:28:10 +020086 static const char kAecDump[]; // audioDebugRecording
henrike@webrtc.org28e20752013-07-10 00:45:36 +000087
88 // Google-specific constraint keys for a local video source
89 static const char kNoiseReduction[]; // googNoiseReduction
henrike@webrtc.orgdce3feb2014-03-26 01:17:30 +000090
henrike@webrtc.org28e20752013-07-10 00:45:36 +000091 // Constraint keys for CreateOffer / CreateAnswer
92 // Specified by the W3C PeerConnection spec
93 static const char kOfferToReceiveVideo[]; // OfferToReceiveVideo
94 static const char kOfferToReceiveAudio[]; // OfferToReceiveAudio
95 static const char kVoiceActivityDetection[]; // VoiceActivityDetection
96 static const char kIceRestart[]; // IceRestart
97 // These keys are google specific.
98 static const char kUseRtpMux[]; // googUseRtpMUX
99
100 // Constraints values.
101 static const char kValueTrue[]; // true
102 static const char kValueFalse[]; // false
103
wu@webrtc.org14814912014-04-02 23:25:15 +0000104 // PeerConnection constraint keys.
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000105 // Temporary pseudo-constraints used to enable DTLS-SRTP
106 static const char kEnableDtlsSrtp[]; // Enable DTLS-SRTP
107 // Temporary pseudo-constraints used to enable DataChannels
108 static const char kEnableRtpDataChannels[]; // Enable RTP DataChannels
wu@webrtc.org14814912014-04-02 23:25:15 +0000109 // Google-specific constraint keys.
wu@webrtc.orgde305012013-10-31 15:40:38 +0000110 // Temporary pseudo-constraint for enabling DSCP through JS.
wu@webrtc.org14814912014-04-02 23:25:15 +0000111 static const char kEnableDscp[]; // googDscp
henrika@webrtc.orgaebb1ad2014-01-14 10:00:58 +0000112 // Constraint to enable IPv6 through JS.
wu@webrtc.org14814912014-04-02 23:25:15 +0000113 static const char kEnableIPv6[]; // googIPv6
henrike@webrtc.org6e3dbc22014-03-25 17:09:47 +0000114 // Temporary constraint to enable suspend below min bitrate feature.
115 static const char kEnableVideoSuspendBelowMinBitrate[];
wu@webrtc.org14814912014-04-02 23:25:15 +0000116 // googSuspendBelowMinBitrate
buildbot@webrtc.org53df88c2014-08-07 22:46:01 +0000117 static const char kNumUnsignalledRecvStreams[];
118 // googNumUnsignalledRecvStreams
buildbot@webrtc.orgb4c7b092014-08-25 12:11:58 +0000119 // Constraint to enable combined audio+video bandwidth estimation.
120 static const char kCombinedAudioVideoBwe[]; // googCombinedAudioVideoBwe
wu@webrtc.org14814912014-04-02 23:25:15 +0000121 static const char kScreencastMinBitrate[]; // googScreencastMinBitrate
wu@webrtc.org14814912014-04-02 23:25:15 +0000122 static const char kCpuOveruseDetection[]; // googCpuOveruseDetection
123 static const char kCpuUnderuseThreshold[]; // googCpuUnderuseThreshold
124 static const char kCpuOveruseThreshold[]; // googCpuOveruseThreshold
buildbot@webrtc.org27626a62014-06-16 13:39:40 +0000125 // Low cpu adaptation threshold for relative standard deviation of encode
126 // time.
127 static const char kCpuUnderuseEncodeRsdThreshold[];
128 // High cpu adaptation threshold for relative standard deviation of encode
129 // time.
130 static const char kCpuOveruseEncodeRsdThreshold[];
wu@webrtc.org14814912014-04-02 23:25:15 +0000131 static const char kCpuOveruseEncodeUsage[]; // googCpuOveruseEncodeUsage
132 static const char kHighStartBitrate[]; // googHighStartBitrate
133 static const char kHighBitrate[]; // googHighBitrate
134 static const char kVeryHighBitrate[]; // googVeryHighBitrate
buildbot@webrtc.org44a317a2014-06-17 07:49:15 +0000135 static const char kPayloadPadding[]; // googPayloadPadding
buildbot@webrtc.orgd27d9ae2014-06-19 01:56:46 +0000136
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000137 // The prefix of internal-only constraints whose JS set values should be
138 // stripped by Chrome before passed down to Libjingle.
139 static const char kInternalConstraintPrefix[];
140
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000141 protected:
142 // Dtor protected as objects shouldn't be deleted via this interface
143 virtual ~MediaConstraintsInterface() {}
144};
145
146bool FindConstraint(const MediaConstraintsInterface* constraints,
147 const std::string& key, bool* value,
148 size_t* mandatory_constraints);
149
150} // namespace webrtc
151
152#endif // TALK_APP_WEBRTC_MEDIACONSTRAINTSINTERFACE_H_