Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: webrtc/pc/mediasession.cc

Issue 1956343002: Initial asymmetric codec support in MediaSessionDescription (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added unit tests Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2004 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
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 case MEDIA_TYPE_DATA: 1166 case MEDIA_TYPE_DATA:
1167 type_str = "data"; 1167 type_str = "data";
1168 break; 1168 break;
1169 default: 1169 default:
1170 ASSERT(false); 1170 ASSERT(false);
1171 break; 1171 break;
1172 } 1172 }
1173 return type_str; 1173 return type_str;
1174 } 1174 }
1175 1175
1176 std::string MediaContentDirectionToString(MediaContentDirection direction) {
1177 switch (direction) {
1178 case MD_INACTIVE:
1179 return "inactive";
1180 case MD_SENDONLY:
1181 return "sendonly";
1182 case MD_RECVONLY:
1183 return "recvonly";
1184 case MD_SENDRECV:
1185 return "sendrecv";
1186 default:
1187 ASSERT(false);
1188 break;
1189 }
1190 }
1191
1176 void MediaSessionOptions::AddSendStream(MediaType type, 1192 void MediaSessionOptions::AddSendStream(MediaType type,
1177 const std::string& id, 1193 const std::string& id,
1178 const std::string& sync_label) { 1194 const std::string& sync_label) {
1179 AddSendStreamInternal(type, id, sync_label, 1); 1195 AddSendStreamInternal(type, id, sync_label, 1);
1180 } 1196 }
1181 1197
1182 void MediaSessionOptions::AddSendVideoStream( 1198 void MediaSessionOptions::AddSendVideoStream(
1183 const std::string& id, 1199 const std::string& id,
1184 const std::string& sync_label, 1200 const std::string& sync_label,
1185 int num_sim_layers) { 1201 int num_sim_layers) {
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 add_legacy_(true), 1243 add_legacy_(true),
1228 transport_desc_factory_(transport_desc_factory) { 1244 transport_desc_factory_(transport_desc_factory) {
1229 } 1245 }
1230 1246
1231 MediaSessionDescriptionFactory::MediaSessionDescriptionFactory( 1247 MediaSessionDescriptionFactory::MediaSessionDescriptionFactory(
1232 ChannelManager* channel_manager, 1248 ChannelManager* channel_manager,
1233 const TransportDescriptionFactory* transport_desc_factory) 1249 const TransportDescriptionFactory* transport_desc_factory)
1234 : secure_(SEC_DISABLED), 1250 : secure_(SEC_DISABLED),
1235 add_legacy_(true), 1251 add_legacy_(true),
1236 transport_desc_factory_(transport_desc_factory) { 1252 transport_desc_factory_(transport_desc_factory) {
1237 channel_manager->GetSupportedAudioCodecs(&audio_codecs_); 1253 channel_manager->GetSupportedAudioCodecs(&audio_sendrecv_codecs_);
1238 channel_manager->GetSupportedAudioRtpHeaderExtensions(&audio_rtp_extensions_); 1254 channel_manager->GetSupportedAudioRtpHeaderExtensions(&audio_rtp_extensions_);
1239 channel_manager->GetSupportedVideoCodecs(&video_codecs_); 1255 channel_manager->GetSupportedVideoCodecs(&video_codecs_);
1240 channel_manager->GetSupportedVideoRtpHeaderExtensions(&video_rtp_extensions_); 1256 channel_manager->GetSupportedVideoRtpHeaderExtensions(&video_rtp_extensions_);
1241 channel_manager->GetSupportedDataCodecs(&data_codecs_); 1257 channel_manager->GetSupportedDataCodecs(&data_codecs_);
1258 audio_send_codecs_ = audio_sendrecv_codecs_;
1259 audio_recv_codecs_ = audio_sendrecv_codecs_;
1260 }
1261
1262 const AudioCodecs& MediaSessionDescriptionFactory::audio_codecs() const {
1263 return audio_sendrecv_codecs_;
1264 }
1265
1266 const AudioCodecs& MediaSessionDescriptionFactory::audio_send_codecs() const {
1267 return audio_send_codecs_;
1268 }
1269
1270 const AudioCodecs& MediaSessionDescriptionFactory::audio_recv_codecs() const {
1271 return audio_recv_codecs_;
1272 }
1273
1274 void MediaSessionDescriptionFactory::set_audio_codecs(
1275 const AudioCodecs& send_and_recv_codecs) {
1276 audio_send_codecs_ = send_and_recv_codecs;
1277 audio_recv_codecs_ = send_and_recv_codecs;
1278 audio_sendrecv_codecs_ = send_and_recv_codecs;
1279 }
1280
1281 void MediaSessionDescriptionFactory::set_audio_codecs(
1282 const AudioCodecs& send_codecs, const AudioCodecs& recv_codecs) {
1283 audio_send_codecs_ = send_codecs;
1284 audio_recv_codecs_ = recv_codecs;
1285 audio_sendrecv_codecs_.clear();
1286
1287 // Intersect the two lists of codecs, preserving the order of the send codecs.
1288 // If there's any difference in priorities, chances are encoding is more
1289 // expensive than decoding, and high-priority send codecs are likely handled
1290 // better (e.g. through hardware encoder support) than low-priority ones.
1291 // TODO(ossu): This is O(n^2). However, each list should generally be small
1292 // enough for this to not be a problem. They are also nicely local in memory
1293 // like this.
1294 for (const auto& sc : audio_send_codecs_) {
1295 for (const auto& rc : audio_recv_codecs_) {
1296 const size_t send_channels = (sc.channels == 0) ? 1 : sc.channels;
1297 const size_t recv_channels = (rc.channels == 0) ? 1 : rc.channels;
1298 if (sc.clockrate == rc.clockrate &&
1299 sc.bitrate == rc.bitrate &&
1300 send_channels == recv_channels &&
1301 (_stricmp(sc.name.c_str(), rc.name.c_str()) == 0) &&
1302 sc.params == rc.params &&
1303 sc.feedback_params == rc.feedback_params) {
1304 AudioCodec out_codec = sc;
1305 out_codec.channels = send_channels;
1306 audio_sendrecv_codecs_.push_back(out_codec);
1307 break;
1308 }
1309 }
1310 }
1242 } 1311 }
1243 1312
1244 SessionDescription* MediaSessionDescriptionFactory::CreateOffer( 1313 SessionDescription* MediaSessionDescriptionFactory::CreateOffer(
1245 const MediaSessionOptions& options, 1314 const MediaSessionOptions& options,
1246 const SessionDescription* current_description) const { 1315 const SessionDescription* current_description) const {
1247 std::unique_ptr<SessionDescription> offer(new SessionDescription()); 1316 std::unique_ptr<SessionDescription> offer(new SessionDescription());
1248 1317
1249 StreamParamsVec current_streams; 1318 StreamParamsVec current_streams;
1250 GetCurrentStreamParams(current_description, &current_streams); 1319 GetCurrentStreamParams(current_description, &current_streams);
1251 1320
1321 const AudioCodecs *supported_audio_codecs;
1322 if (options.HasSendMediaStream(MEDIA_TYPE_AUDIO)) {
1323 if (options.recv_audio) {
1324 // sendrecv
1325 supported_audio_codecs = &audio_sendrecv_codecs_;
1326 } else {
1327 // sendonly
1328 supported_audio_codecs = &audio_send_codecs_;
1329 }
1330 } else if (options.recv_audio) {
1331 // recvonly
1332 supported_audio_codecs = &audio_recv_codecs_;
1333 } else {
1334 // Stream is inactive - generate list as if sendrecv.
1335 // See RFC 3264 Section 6.1.
1336 supported_audio_codecs = &audio_sendrecv_codecs_;
1337 }
1338
1252 AudioCodecs audio_codecs; 1339 AudioCodecs audio_codecs;
1253 VideoCodecs video_codecs; 1340 VideoCodecs video_codecs;
1254 DataCodecs data_codecs; 1341 DataCodecs data_codecs;
1255 GetCodecsToOffer(current_description, &audio_codecs, &video_codecs, 1342 GetCodecsToOffer(current_description, *supported_audio_codecs,
1256 &data_codecs); 1343 video_codecs_, data_codecs_,
1344 &audio_codecs, &video_codecs, &data_codecs);
1257 1345
1258 if (!options.vad_enabled) { 1346 if (!options.vad_enabled) {
1259 // If application doesn't want CN codecs in offer. 1347 // If application doesn't want CN codecs in offer.
1260 StripCNCodecs(&audio_codecs); 1348 StripCNCodecs(&audio_codecs);
1261 } 1349 }
1262 1350
1263 RtpHeaderExtensions audio_rtp_extensions; 1351 RtpHeaderExtensions audio_rtp_extensions;
1264 RtpHeaderExtensions video_rtp_extensions; 1352 RtpHeaderExtensions video_rtp_extensions;
1265 GetRtpHdrExtsToOffer(current_description, &audio_rtp_extensions, 1353 GetRtpHdrExtsToOffer(current_description, &audio_rtp_extensions,
1266 &video_rtp_extensions); 1354 &video_rtp_extensions);
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
1407 return NULL; 1495 return NULL;
1408 } 1496 }
1409 } 1497 }
1410 } 1498 }
1411 1499
1412 return answer.release(); 1500 return answer.release();
1413 } 1501 }
1414 1502
1415 void MediaSessionDescriptionFactory::GetCodecsToOffer( 1503 void MediaSessionDescriptionFactory::GetCodecsToOffer(
1416 const SessionDescription* current_description, 1504 const SessionDescription* current_description,
1505 const AudioCodecs& supported_audio_codecs,
1506 const VideoCodecs& supported_video_codecs,
1507 const DataCodecs& supported_data_codecs,
1417 AudioCodecs* audio_codecs, 1508 AudioCodecs* audio_codecs,
1418 VideoCodecs* video_codecs, 1509 VideoCodecs* video_codecs,
1419 DataCodecs* data_codecs) const { 1510 DataCodecs* data_codecs) const {
1420 UsedPayloadTypes used_pltypes; 1511 UsedPayloadTypes used_pltypes;
1421 audio_codecs->clear(); 1512 audio_codecs->clear();
1422 video_codecs->clear(); 1513 video_codecs->clear();
1423 data_codecs->clear(); 1514 data_codecs->clear();
1424 1515
1425 1516
1426 // First - get all codecs from the current description if the media type 1517 // First - get all codecs from the current description if the media type
(...skipping 15 matching lines...) Expand all
1442 } 1533 }
1443 const DataContentDescription* data = 1534 const DataContentDescription* data =
1444 GetFirstDataContentDescription(current_description); 1535 GetFirstDataContentDescription(current_description);
1445 if (data) { 1536 if (data) {
1446 *data_codecs = data->codecs(); 1537 *data_codecs = data->codecs();
1447 used_pltypes.FindAndSetIdUsed<DataCodec>(data_codecs); 1538 used_pltypes.FindAndSetIdUsed<DataCodec>(data_codecs);
1448 } 1539 }
1449 } 1540 }
1450 1541
1451 // Add our codecs that are not in |current_description|. 1542 // Add our codecs that are not in |current_description|.
1452 FindCodecsToOffer<AudioCodec>(audio_codecs_, audio_codecs, &used_pltypes); 1543 FindCodecsToOffer<AudioCodec>(supported_audio_codecs, audio_codecs,
1453 FindCodecsToOffer<VideoCodec>(video_codecs_, video_codecs, &used_pltypes); 1544 &used_pltypes);
1454 FindCodecsToOffer<DataCodec>(data_codecs_, data_codecs, &used_pltypes); 1545 FindCodecsToOffer<VideoCodec>(supported_video_codecs, video_codecs,
1546 &used_pltypes);
1547 FindCodecsToOffer<DataCodec>(supported_data_codecs, data_codecs,
1548 &used_pltypes);
1455 } 1549 }
1456 1550
1457 void MediaSessionDescriptionFactory::GetRtpHdrExtsToOffer( 1551 void MediaSessionDescriptionFactory::GetRtpHdrExtsToOffer(
1458 const SessionDescription* current_description, 1552 const SessionDescription* current_description,
1459 RtpHeaderExtensions* audio_extensions, 1553 RtpHeaderExtensions* audio_extensions,
1460 RtpHeaderExtensions* video_extensions) const { 1554 RtpHeaderExtensions* video_extensions) const {
1461 // All header extensions allocated from the same range to avoid potential 1555 // All header extensions allocated from the same range to avoid potential
1462 // issues when using BUNDLE. 1556 // issues when using BUNDLE.
1463 UsedRtpHeaderExtensionIds used_ids; 1557 UsedRtpHeaderExtensionIds used_ids;
1464 RtpHeaderExtensions all_extensions; 1558 RtpHeaderExtensions all_extensions;
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
1726 return true; 1820 return true;
1727 } 1821 }
1728 1822
1729 bool MediaSessionDescriptionFactory::AddAudioContentForAnswer( 1823 bool MediaSessionDescriptionFactory::AddAudioContentForAnswer(
1730 const SessionDescription* offer, 1824 const SessionDescription* offer,
1731 const MediaSessionOptions& options, 1825 const MediaSessionOptions& options,
1732 const SessionDescription* current_description, 1826 const SessionDescription* current_description,
1733 StreamParamsVec* current_streams, 1827 StreamParamsVec* current_streams,
1734 SessionDescription* answer) const { 1828 SessionDescription* answer) const {
1735 const ContentInfo* audio_content = GetFirstAudioContent(offer); 1829 const ContentInfo* audio_content = GetFirstAudioContent(offer);
1830 const AudioContentDescription* audio_content_description =
1831 static_cast<const AudioContentDescription*>(audio_content->description);
1736 1832
1737 std::unique_ptr<TransportDescription> audio_transport(CreateTransportAnswer( 1833 std::unique_ptr<TransportDescription> audio_transport(CreateTransportAnswer(
1738 audio_content->name, offer, 1834 audio_content->name, offer,
1739 GetTransportOptions(options, audio_content->name), current_description)); 1835 GetTransportOptions(options, audio_content->name), current_description));
1740 if (!audio_transport) { 1836 if (!audio_transport) {
1741 return false; 1837 return false;
1742 } 1838 }
1743 1839
1744 AudioCodecs audio_codecs = audio_codecs_; 1840 // Pick codecs based on the requested communications direction in the offer.
1841 // According to RFC 3264 Section 6.1, inactive is to be treated as sendrecv
1842 // when constructing the list of supported formats.
1843 AudioCodecs audio_codecs;
1844 switch (audio_content_description->direction()) {
1845 case MD_INACTIVE:
1846 audio_codecs = audio_sendrecv_codecs_;
1847 break;
1848 case MD_SENDRECV:
1849 if (options.HasSendMediaStream(MEDIA_TYPE_AUDIO))
1850 audio_codecs = audio_sendrecv_codecs_;
1851 else
1852 audio_codecs = audio_recv_codecs_;
1853 break;
1854 case MD_RECVONLY:
1855 if (options.HasSendMediaStream(MEDIA_TYPE_AUDIO))
1856 audio_codecs = audio_send_codecs_;
1857 else
1858 audio_codecs = audio_sendrecv_codecs_; // inactive
1859 break;
1860 case MD_SENDONLY:
1861 audio_codecs = audio_recv_codecs_;
1862 break;
1863 }
1864
1745 if (!options.vad_enabled) { 1865 if (!options.vad_enabled) {
1746 StripCNCodecs(&audio_codecs); 1866 StripCNCodecs(&audio_codecs);
1747 } 1867 }
1748 1868
1749 bool bundle_enabled = 1869 bool bundle_enabled =
1750 offer->HasGroup(GROUP_TYPE_BUNDLE) && options.bundle_enabled; 1870 offer->HasGroup(GROUP_TYPE_BUNDLE) && options.bundle_enabled;
1751 std::unique_ptr<AudioContentDescription> audio_answer( 1871 std::unique_ptr<AudioContentDescription> audio_answer(
1752 new AudioContentDescription()); 1872 new AudioContentDescription());
1753 // Do not require or create SDES cryptos if DTLS is used. 1873 // Do not require or create SDES cryptos if DTLS is used.
1754 cricket::SecurePolicy sdes_policy = 1874 cricket::SecurePolicy sdes_policy =
1755 audio_transport->secure() ? cricket::SEC_DISABLED : secure(); 1875 audio_transport->secure() ? cricket::SEC_DISABLED : secure();
1756 if (!CreateMediaContentAnswer( 1876 if (!CreateMediaContentAnswer(
1757 static_cast<const AudioContentDescription*>( 1877 audio_content_description,
1758 audio_content->description),
1759 options, 1878 options,
1760 audio_codecs, 1879 audio_codecs,
1761 sdes_policy, 1880 sdes_policy,
1762 GetCryptos(GetFirstAudioContentDescription(current_description)), 1881 GetCryptos(GetFirstAudioContentDescription(current_description)),
1763 audio_rtp_extensions_, 1882 audio_rtp_extensions_,
1764 current_streams, 1883 current_streams,
1765 add_legacy_, 1884 add_legacy_,
1766 bundle_enabled, 1885 bundle_enabled,
1767 audio_answer.get())) { 1886 audio_answer.get())) {
1768 return false; // Fails the session setup. 1887 return false; // Fails the session setup.
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
1980 GetFirstMediaContentDescription(sdesc, MEDIA_TYPE_VIDEO)); 2099 GetFirstMediaContentDescription(sdesc, MEDIA_TYPE_VIDEO));
1981 } 2100 }
1982 2101
1983 const DataContentDescription* GetFirstDataContentDescription( 2102 const DataContentDescription* GetFirstDataContentDescription(
1984 const SessionDescription* sdesc) { 2103 const SessionDescription* sdesc) {
1985 return static_cast<const DataContentDescription*>( 2104 return static_cast<const DataContentDescription*>(
1986 GetFirstMediaContentDescription(sdesc, MEDIA_TYPE_DATA)); 2105 GetFirstMediaContentDescription(sdesc, MEDIA_TYPE_DATA));
1987 } 2106 }
1988 2107
1989 } // namespace cricket 2108 } // namespace cricket
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698