OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/api/jsepsessiondescription.h" | 11 #include "webrtc/api/jsepsessiondescription.h" |
12 | 12 |
13 #include "webrtc/api/webrtcsdp.h" | 13 #include "webrtc/api/webrtcsdp.h" |
14 #include "talk/session/media/mediasession.h" | |
15 #include "webrtc/base/arraysize.h" | 14 #include "webrtc/base/arraysize.h" |
16 #include "webrtc/base/stringencode.h" | 15 #include "webrtc/base/stringencode.h" |
| 16 #include "webrtc/pc/mediasession.h" |
17 | 17 |
18 using rtc::scoped_ptr; | 18 using rtc::scoped_ptr; |
19 using cricket::SessionDescription; | 19 using cricket::SessionDescription; |
20 | 20 |
21 namespace webrtc { | 21 namespace webrtc { |
22 | 22 |
23 static const char* kSupportedTypes[] = { | 23 static const char* kSupportedTypes[] = { |
24 JsepSessionDescription::kOffer, | 24 JsepSessionDescription::kOffer, |
25 JsepSessionDescription::kPrAnswer, | 25 JsepSessionDescription::kPrAnswer, |
26 JsepSessionDescription::kAnswer | 26 JsepSessionDescription::kAnswer |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 if (!found) { | 177 if (!found) { |
178 // If the sdp_mid is presented but we can't find a match, we consider | 178 // If the sdp_mid is presented but we can't find a match, we consider |
179 // this as an error. | 179 // this as an error. |
180 return false; | 180 return false; |
181 } | 181 } |
182 } | 182 } |
183 return true; | 183 return true; |
184 } | 184 } |
185 | 185 |
186 } // namespace webrtc | 186 } // namespace webrtc |
OLD | NEW |