OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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/media/engine/webrtcvideoengine2.h" | 11 #include "webrtc/media/engine/webrtcvideoengine2.h" |
12 | 12 |
13 #include <algorithm> | 13 #include <algorithm> |
14 #include <set> | 14 #include <set> |
15 #include <string> | 15 #include <string> |
16 | 16 |
17 #include "webrtc/base/asyncinvoker.h" | |
17 #include "webrtc/base/buffer.h" | 18 #include "webrtc/base/buffer.h" |
18 #include "webrtc/base/logging.h" | 19 #include "webrtc/base/logging.h" |
19 #include "webrtc/base/stringutils.h" | 20 #include "webrtc/base/stringutils.h" |
20 #include "webrtc/base/timeutils.h" | 21 #include "webrtc/base/timeutils.h" |
21 #include "webrtc/base/trace_event.h" | 22 #include "webrtc/base/trace_event.h" |
22 #include "webrtc/call.h" | 23 #include "webrtc/call.h" |
23 #include "webrtc/media/base/videocapturer.h" | 24 #include "webrtc/media/base/videocapturer.h" |
24 #include "webrtc/media/base/videorenderer.h" | 25 #include "webrtc/media/base/videorenderer.h" |
25 #include "webrtc/media/engine/constants.h" | 26 #include "webrtc/media/engine/constants.h" |
26 #include "webrtc/media/engine/simulcast.h" | 27 #include "webrtc/media/engine/simulcast.h" |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
307 if (width * height <= 320 * 240) { | 308 if (width * height <= 320 * 240) { |
308 return 600; | 309 return 600; |
309 } else if (width * height <= 640 * 480) { | 310 } else if (width * height <= 640 * 480) { |
310 return 1700; | 311 return 1700; |
311 } else if (width * height <= 960 * 540) { | 312 } else if (width * height <= 960 * 540) { |
312 return 2000; | 313 return 2000; |
313 } else { | 314 } else { |
314 return 2500; | 315 return 2500; |
315 } | 316 } |
316 } | 317 } |
318 | |
317 } // namespace | 319 } // namespace |
318 | 320 |
319 // Constants defined in webrtc/media/engine/constants.h | 321 // Constants defined in webrtc/media/engine/constants.h |
320 // TODO(pbos): Move these to a separate constants.cc file. | 322 // TODO(pbos): Move these to a separate constants.cc file. |
321 const int kMinVideoBitrate = 30; | 323 const int kMinVideoBitrate = 30; |
322 const int kStartVideoBitrate = 300; | 324 const int kStartVideoBitrate = 300; |
323 | 325 |
324 const int kVideoMtu = 1200; | 326 const int kVideoMtu = 1200; |
325 const int kVideoRtpBufferSize = 65536; | 327 const int kVideoRtpBufferSize = 65536; |
326 | 328 |
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
987 | 989 |
988 rtc::CritScope stream_lock(&stream_crit_); | 990 rtc::CritScope stream_lock(&stream_crit_); |
989 | 991 |
990 if (!ValidateSendSsrcAvailability(sp)) | 992 if (!ValidateSendSsrcAvailability(sp)) |
991 return false; | 993 return false; |
992 | 994 |
993 for (uint32_t used_ssrc : sp.ssrcs) | 995 for (uint32_t used_ssrc : sp.ssrcs) |
994 send_ssrcs_.insert(used_ssrc); | 996 send_ssrcs_.insert(used_ssrc); |
995 | 997 |
996 webrtc::VideoSendStream::Config config(this); | 998 webrtc::VideoSendStream::Config config(this); |
997 config.overuse_callback = this; | |
998 | |
999 WebRtcVideoSendStream* stream = new WebRtcVideoSendStream( | 999 WebRtcVideoSendStream* stream = new WebRtcVideoSendStream( |
1000 call_, sp, config, external_encoder_factory_, options_, | 1000 call_, sp, config, external_encoder_factory_, options_, |
1001 bitrate_config_.max_bitrate_bps, send_codec_, send_rtp_extensions_, | 1001 signal_cpu_adaptation_, bitrate_config_.max_bitrate_bps, send_codec_, |
1002 send_params_); | 1002 send_rtp_extensions_, send_params_); |
1003 | |
1004 uint32_t ssrc = sp.first_ssrc(); | 1003 uint32_t ssrc = sp.first_ssrc(); |
1005 RTC_DCHECK(ssrc != 0); | 1004 RTC_DCHECK(ssrc != 0); |
1006 send_streams_[ssrc] = stream; | 1005 send_streams_[ssrc] = stream; |
1007 | 1006 |
1008 if (rtcp_receiver_report_ssrc_ == kDefaultRtcpReceiverReportSsrc) { | 1007 if (rtcp_receiver_report_ssrc_ == kDefaultRtcpReceiverReportSsrc) { |
1009 rtcp_receiver_report_ssrc_ = ssrc; | 1008 rtcp_receiver_report_ssrc_ = ssrc; |
1010 LOG(LS_INFO) << "SetLocalSsrc on all the receive streams because we added " | 1009 LOG(LS_INFO) << "SetLocalSsrc on all the receive streams because we added " |
1011 "a send stream."; | 1010 "a send stream."; |
1012 for (auto& kv : receive_streams_) | 1011 for (auto& kv : receive_streams_) |
1013 kv.second->SetLocalSsrc(ssrc); | 1012 kv.second->SetLocalSsrc(ssrc); |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1391 | 1390 |
1392 // Speculative change to increase the outbound socket buffer size. | 1391 // Speculative change to increase the outbound socket buffer size. |
1393 // In b/15152257, we are seeing a significant number of packets discarded | 1392 // In b/15152257, we are seeing a significant number of packets discarded |
1394 // due to lack of socket buffer space, although it's not yet clear what the | 1393 // due to lack of socket buffer space, although it's not yet clear what the |
1395 // ideal value should be. | 1394 // ideal value should be. |
1396 MediaChannel::SetOption(NetworkInterface::ST_RTP, | 1395 MediaChannel::SetOption(NetworkInterface::ST_RTP, |
1397 rtc::Socket::OPT_SNDBUF, | 1396 rtc::Socket::OPT_SNDBUF, |
1398 kVideoRtpBufferSize); | 1397 kVideoRtpBufferSize); |
1399 } | 1398 } |
1400 | 1399 |
1401 void WebRtcVideoChannel2::OnLoadUpdate(Load load) { | |
1402 // OnLoadUpdate can not take any locks that are held while creating streams | |
1403 // etc. Doing so establishes lock-order inversions between the webrtc process | |
1404 // thread on stream creation and locks such as stream_crit_ while calling out. | |
1405 rtc::CritScope stream_lock(&capturer_crit_); | |
1406 if (!signal_cpu_adaptation_) | |
1407 return; | |
1408 // Do not adapt resolution for screen content as this will likely result in | |
1409 // blurry and unreadable text. | |
1410 for (auto& kv : capturers_) { | |
1411 if (kv.second != nullptr | |
1412 && !kv.second->IsScreencast() | |
1413 && kv.second->video_adapter() != nullptr) { | |
1414 kv.second->video_adapter()->OnCpuResolutionRequest( | |
1415 load == kOveruse ? CoordinatedVideoAdapter::DOWNGRADE | |
1416 : CoordinatedVideoAdapter::UPGRADE); | |
1417 } | |
1418 } | |
1419 } | |
1420 | |
1421 bool WebRtcVideoChannel2::SendRtp(const uint8_t* data, | 1400 bool WebRtcVideoChannel2::SendRtp(const uint8_t* data, |
1422 size_t len, | 1401 size_t len, |
1423 const webrtc::PacketOptions& options) { | 1402 const webrtc::PacketOptions& options) { |
1424 rtc::Buffer packet(data, len, kMaxRtpPacketLen); | 1403 rtc::Buffer packet(data, len, kMaxRtpPacketLen); |
1425 rtc::PacketOptions rtc_options; | 1404 rtc::PacketOptions rtc_options; |
1426 rtc_options.packet_id = options.packet_id; | 1405 rtc_options.packet_id = options.packet_id; |
1427 return MediaChannel::SendPacket(&packet, rtc_options); | 1406 return MediaChannel::SendPacket(&packet, rtc_options); |
1428 } | 1407 } |
1429 | 1408 |
1430 bool WebRtcVideoChannel2::SendRtcp(const uint8_t* data, size_t len) { | 1409 bool WebRtcVideoChannel2::SendRtcp(const uint8_t* data, size_t len) { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1469 external_encoder(nullptr), | 1448 external_encoder(nullptr), |
1470 type(type), | 1449 type(type), |
1471 external(external) { | 1450 external(external) { |
1472 if (external) { | 1451 if (external) { |
1473 external_encoder = encoder; | 1452 external_encoder = encoder; |
1474 this->encoder = | 1453 this->encoder = |
1475 new webrtc::VideoEncoderSoftwareFallbackWrapper(type, encoder); | 1454 new webrtc::VideoEncoderSoftwareFallbackWrapper(type, encoder); |
1476 } | 1455 } |
1477 } | 1456 } |
1478 | 1457 |
1458 // Proxy class used for marshalling calls to webrtc::LoadObserver::OnLoadUpdate | |
1459 // from a media engine thread to the worker thread. | |
1460 class WebRtcVideoChannel2::WebRtcVideoSendStream::LoadObserverProxy { | |
1461 public: | |
1462 explicit LoadObserverProxy(webrtc::LoadObserver* observer) { | |
1463 helper_ = new rtc::RefCountedObject<Helper>(observer); | |
1464 } | |
1465 ~LoadObserverProxy() { helper_->Detach(); } | |
1466 | |
1467 webrtc::LoadObserver* proxy() { return helper_; } | |
1468 | |
1469 private: | |
1470 class Helper : public webrtc::LoadObserver, public rtc::RefCountInterface { | |
1471 public: | |
1472 explicit Helper(webrtc::LoadObserver* observer) | |
1473 : thread_(rtc::Thread::Current()), observer_(observer) {} | |
1474 void Detach() { | |
1475 RTC_DCHECK(thread_checker_.CalledOnValidThread()); | |
1476 observer_ = nullptr; | |
1477 } | |
1478 void OnLoadUpdate(webrtc::LoadObserver::Load load) override { | |
1479 if (rtc::Thread::Current() == thread_) { | |
1480 observer_->OnLoadUpdate(load); | |
1481 return; | |
1482 } | |
1483 invoker_.AsyncInvoke<void>( | |
1484 thread_, rtc::Bind(&Helper::OnLoadUpdateOnCorrectThread, this, load)); | |
1485 } | |
1486 void OnLoadUpdateOnCorrectThread(webrtc::LoadObserver::Load load) { | |
1487 RTC_DCHECK(thread_checker_.CalledOnValidThread()); | |
1488 if (observer_) { | |
1489 observer_->OnLoadUpdate(load); | |
1490 } | |
1491 } | |
1492 | |
1493 private: | |
1494 rtc::ThreadChecker thread_checker_; | |
1495 rtc::AsyncInvoker invoker_; | |
1496 rtc::Thread* thread_; | |
1497 webrtc::LoadObserver* observer_; | |
1498 }; | |
1499 | |
1500 rtc::scoped_refptr<Helper> helper_; | |
1501 }; | |
1502 | |
1479 WebRtcVideoChannel2::WebRtcVideoSendStream::WebRtcVideoSendStream( | 1503 WebRtcVideoChannel2::WebRtcVideoSendStream::WebRtcVideoSendStream( |
1480 webrtc::Call* call, | 1504 webrtc::Call* call, |
1481 const StreamParams& sp, | 1505 const StreamParams& sp, |
1482 const webrtc::VideoSendStream::Config& config, | 1506 const webrtc::VideoSendStream::Config& config, |
1483 WebRtcVideoEncoderFactory* external_encoder_factory, | 1507 WebRtcVideoEncoderFactory* external_encoder_factory, |
1484 const VideoOptions& options, | 1508 const VideoOptions& options, |
1509 bool enable_cpu_overuse_detection, | |
1485 int max_bitrate_bps, | 1510 int max_bitrate_bps, |
1486 const rtc::Optional<VideoCodecSettings>& codec_settings, | 1511 const rtc::Optional<VideoCodecSettings>& codec_settings, |
1487 const std::vector<webrtc::RtpExtension>& rtp_extensions, | 1512 const std::vector<webrtc::RtpExtension>& rtp_extensions, |
1488 // TODO(deadbeef): Don't duplicate information between send_params, | 1513 // TODO(deadbeef): Don't duplicate information between send_params, |
1489 // rtp_extensions, options, etc. | 1514 // rtp_extensions, options, etc. |
1490 const VideoSendParameters& send_params) | 1515 const VideoSendParameters& send_params) |
1491 : ssrcs_(sp.ssrcs), | 1516 : ssrcs_(sp.ssrcs), |
1492 ssrc_groups_(sp.ssrc_groups), | 1517 ssrc_groups_(sp.ssrc_groups), |
1493 call_(call), | 1518 call_(call), |
1519 load_proxy_(new LoadObserverProxy(this)), | |
1494 external_encoder_factory_(external_encoder_factory), | 1520 external_encoder_factory_(external_encoder_factory), |
1495 stream_(NULL), | 1521 stream_(NULL), |
1496 parameters_(config, options, max_bitrate_bps, codec_settings), | 1522 parameters_(config, options, max_bitrate_bps, codec_settings), |
1497 pending_encoder_reconfiguration_(false), | 1523 pending_encoder_reconfiguration_(false), |
1498 allocated_encoder_(NULL, webrtc::kVideoCodecUnknown, false), | 1524 allocated_encoder_(NULL, webrtc::kVideoCodecUnknown, false), |
1499 capturer_(NULL), | 1525 capturer_(NULL), |
1500 sending_(false), | 1526 sending_(false), |
1501 muted_(false), | 1527 muted_(false), |
1502 old_adapt_changes_(0), | 1528 old_adapt_changes_(0), |
1503 first_frame_timestamp_ms_(0), | 1529 first_frame_timestamp_ms_(0), |
1504 last_frame_timestamp_ms_(0) { | 1530 last_frame_timestamp_ms_(0) { |
1505 parameters_.config.rtp.max_packet_size = kVideoMtu; | 1531 parameters_.config.rtp.max_packet_size = kVideoMtu; |
1506 | 1532 |
1507 sp.GetPrimarySsrcs(¶meters_.config.rtp.ssrcs); | 1533 sp.GetPrimarySsrcs(¶meters_.config.rtp.ssrcs); |
1508 sp.GetFidSsrcs(parameters_.config.rtp.ssrcs, | 1534 sp.GetFidSsrcs(parameters_.config.rtp.ssrcs, |
1509 ¶meters_.config.rtp.rtx.ssrcs); | 1535 ¶meters_.config.rtp.rtx.ssrcs); |
1510 parameters_.config.rtp.c_name = sp.cname; | 1536 parameters_.config.rtp.c_name = sp.cname; |
1511 parameters_.config.rtp.extensions = rtp_extensions; | 1537 parameters_.config.rtp.extensions = rtp_extensions; |
1512 parameters_.config.rtp.rtcp_mode = send_params.rtcp.reduced_size | 1538 parameters_.config.rtp.rtcp_mode = send_params.rtcp.reduced_size |
1513 ? webrtc::RtcpMode::kReducedSize | 1539 ? webrtc::RtcpMode::kReducedSize |
1514 : webrtc::RtcpMode::kCompound; | 1540 : webrtc::RtcpMode::kCompound; |
1541 parameters_.config.overuse_callback = | |
1542 enable_cpu_overuse_detection ? load_proxy_->proxy() : nullptr; | |
1515 | 1543 |
1516 if (codec_settings) { | 1544 if (codec_settings) { |
1517 SetCodecAndOptions(*codec_settings, parameters_.options); | 1545 SetCodecAndOptions(*codec_settings, parameters_.options); |
1518 } | 1546 } |
1519 } | 1547 } |
1520 | 1548 |
1521 WebRtcVideoChannel2::WebRtcVideoSendStream::~WebRtcVideoSendStream() { | 1549 WebRtcVideoChannel2::WebRtcVideoSendStream::~WebRtcVideoSendStream() { |
1522 DisconnectCapturer(); | 1550 DisconnectCapturer(); |
1523 if (stream_ != NULL) { | 1551 if (stream_ != NULL) { |
1524 call_->DestroyVideoSendStream(stream_); | 1552 call_->DestroyVideoSendStream(stream_); |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1628 muted_ = mute; | 1656 muted_ = mute; |
1629 } | 1657 } |
1630 | 1658 |
1631 bool WebRtcVideoChannel2::WebRtcVideoSendStream::DisconnectCapturer() { | 1659 bool WebRtcVideoChannel2::WebRtcVideoSendStream::DisconnectCapturer() { |
1632 cricket::VideoCapturer* capturer; | 1660 cricket::VideoCapturer* capturer; |
1633 { | 1661 { |
1634 rtc::CritScope cs(&lock_); | 1662 rtc::CritScope cs(&lock_); |
1635 if (capturer_ == NULL) | 1663 if (capturer_ == NULL) |
1636 return false; | 1664 return false; |
1637 | 1665 |
1638 if (capturer_->video_adapter() != nullptr) | |
1639 old_adapt_changes_ += capturer_->video_adapter()->adaptation_changes(); | |
1640 | |
1641 capturer = capturer_; | 1666 capturer = capturer_; |
1642 capturer_ = NULL; | 1667 capturer_ = NULL; |
1643 } | 1668 } |
1644 capturer->RemoveSink(this); | 1669 capturer->RemoveSink(this); |
1645 | 1670 |
1646 return true; | 1671 return true; |
1647 } | 1672 } |
1648 | 1673 |
1649 const std::vector<uint32_t>& | 1674 const std::vector<uint32_t>& |
1650 WebRtcVideoChannel2::WebRtcVideoSendStream::GetSsrcs() const { | 1675 WebRtcVideoChannel2::WebRtcVideoSendStream::GetSsrcs() const { |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1922 } | 1947 } |
1923 | 1948 |
1924 void WebRtcVideoChannel2::WebRtcVideoSendStream::Stop() { | 1949 void WebRtcVideoChannel2::WebRtcVideoSendStream::Stop() { |
1925 rtc::CritScope cs(&lock_); | 1950 rtc::CritScope cs(&lock_); |
1926 if (stream_ != NULL) { | 1951 if (stream_ != NULL) { |
1927 stream_->Stop(); | 1952 stream_->Stop(); |
1928 } | 1953 } |
1929 sending_ = false; | 1954 sending_ = false; |
1930 } | 1955 } |
1931 | 1956 |
1957 void WebRtcVideoChannel2::WebRtcVideoSendStream::OnLoadUpdate(Load load) { | |
1958 RTC_DCHECK(thread_checker_.CalledOnValidThread()); | |
1959 LOG(LS_INFO) << "OnLoadUpdate " << load; | |
1960 rtc::CritScope cs(&lock_); | |
1961 if (!capturer_) { | |
1962 return; | |
1963 } | |
1964 | |
1965 rtc::VideoSinkWants::ResolutionRequest request; | |
1966 request.request = load == kOveruse | |
1967 ? rtc::VideoSinkWants::ResolutionRequest::kSmallerThan | |
1968 : rtc::VideoSinkWants::ResolutionRequest::kLargerThan; | |
1969 request.seen_number_of_pixels = | |
1970 last_dimensions_.height * last_dimensions_.width; | |
1971 | |
1972 sink_wants_.resolution = | |
1973 rtc::Optional<rtc::VideoSinkWants::ResolutionRequest>(request); | |
pthatcher1
2016/02/19 06:08:40
I think I liked what we had better before :(. Thi
| |
1974 capturer_->AddOrUpdateSink(this, sink_wants_); | |
1975 } | |
1976 | |
1932 VideoSenderInfo | 1977 VideoSenderInfo |
1933 WebRtcVideoChannel2::WebRtcVideoSendStream::GetVideoSenderInfo() { | 1978 WebRtcVideoChannel2::WebRtcVideoSendStream::GetVideoSenderInfo() { |
1934 VideoSenderInfo info; | 1979 VideoSenderInfo info; |
1935 webrtc::VideoSendStream::Stats stats; | 1980 webrtc::VideoSendStream::Stats stats; |
1936 { | 1981 { |
1937 rtc::CritScope cs(&lock_); | 1982 rtc::CritScope cs(&lock_); |
1938 for (uint32_t ssrc : parameters_.config.rtp.ssrcs) | 1983 for (uint32_t ssrc : parameters_.config.rtp.ssrcs) |
1939 info.add_ssrc(ssrc); | 1984 info.add_ssrc(ssrc); |
1940 | 1985 |
1941 if (parameters_.codec_settings) | 1986 if (parameters_.codec_settings) |
(...skipping 18 matching lines...) Expand all Loading... | |
1960 | 2005 |
1961 if (capturer_ != NULL) { | 2006 if (capturer_ != NULL) { |
1962 if (!capturer_->IsMuted()) { | 2007 if (!capturer_->IsMuted()) { |
1963 VideoFormat last_captured_frame_format; | 2008 VideoFormat last_captured_frame_format; |
1964 capturer_->GetStats(&info.adapt_frame_drops, &info.effects_frame_drops, | 2009 capturer_->GetStats(&info.adapt_frame_drops, &info.effects_frame_drops, |
1965 &info.capturer_frame_time, | 2010 &info.capturer_frame_time, |
1966 &last_captured_frame_format); | 2011 &last_captured_frame_format); |
1967 info.input_frame_width = last_captured_frame_format.width; | 2012 info.input_frame_width = last_captured_frame_format.width; |
1968 info.input_frame_height = last_captured_frame_format.height; | 2013 info.input_frame_height = last_captured_frame_format.height; |
1969 } | 2014 } |
1970 if (capturer_->video_adapter() != nullptr) { | |
1971 info.adapt_changes += capturer_->video_adapter()->adaptation_changes(); | |
1972 info.adapt_reason = capturer_->video_adapter()->adapt_reason(); | |
1973 } | |
1974 } | 2015 } |
1975 } | 2016 } |
1976 | 2017 |
1977 // Get bandwidth limitation info from stream_->GetStats(). | 2018 // Get bandwidth limitation info from stream_->GetStats(). |
1978 // Input resolution (output from video_adapter) can be further scaled down or | 2019 // Input resolution (output from video_adapter) can be further scaled down or |
1979 // higher video layer(s) can be dropped due to bitrate constraints. | 2020 // higher video layer(s) can be dropped due to bitrate constraints. |
1980 // Note, adapt_changes only include changes from the video_adapter. | 2021 // Note, adapt_changes only include changes from the video_adapter. |
1981 if (stats.bw_limited_resolution) | 2022 if (stats.bw_limited_resolution) |
1982 info.adapt_reason |= CoordinatedVideoAdapter::ADAPTREASON_BANDWIDTH; | 2023 info.adapt_reason |= CoordinatedVideoAdapter::ADAPTREASON_BANDWIDTH; |
1983 | 2024 |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2483 rtx_mapping[video_codecs[i].codec.id] != | 2524 rtx_mapping[video_codecs[i].codec.id] != |
2484 fec_settings.red_payload_type) { | 2525 fec_settings.red_payload_type) { |
2485 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; | 2526 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; |
2486 } | 2527 } |
2487 } | 2528 } |
2488 | 2529 |
2489 return video_codecs; | 2530 return video_codecs; |
2490 } | 2531 } |
2491 | 2532 |
2492 } // namespace cricket | 2533 } // namespace cricket |
OLD | NEW |