OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 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 |
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 case kStatsValueNameTransportId: | 386 case kStatsValueNameTransportId: |
387 return "transportId"; | 387 return "transportId"; |
388 case kStatsValueNameSelectedCandidatePairId: | 388 case kStatsValueNameSelectedCandidatePairId: |
389 return "selectedCandidatePairId"; | 389 return "selectedCandidatePairId"; |
390 case kStatsValueNameSsrc: | 390 case kStatsValueNameSsrc: |
391 return "ssrc"; | 391 return "ssrc"; |
392 case kStatsValueNameState: | 392 case kStatsValueNameState: |
393 return "state"; | 393 return "state"; |
394 case kStatsValueNameDataChannelId: | 394 case kStatsValueNameDataChannelId: |
395 return "datachannelid"; | 395 return "datachannelid"; |
| 396 case kStatsValueNameFramesDecoded: |
| 397 return "framesDecoded"; |
396 case kStatsValueNameFramesEncoded: | 398 case kStatsValueNameFramesEncoded: |
397 return "framesEncoded"; | 399 return "framesEncoded"; |
398 case kStatsValueNameCodecImplementationName: | 400 case kStatsValueNameCodecImplementationName: |
399 return "codecImplementationName"; | 401 return "codecImplementationName"; |
400 case kStatsValueNameMediaType: | 402 case kStatsValueNameMediaType: |
401 return "mediaType"; | 403 return "mediaType"; |
402 // 'goog' prefixed constants. | 404 // 'goog' prefixed constants. |
403 case kStatsValueNameAccelerateRate: | 405 case kStatsValueNameAccelerateRate: |
404 return "googAccelerateRate"; | 406 return "googAccelerateRate"; |
405 case kStatsValueNameActiveConnection: | 407 case kStatsValueNameActiveConnection: |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 // Looks for a report with the given |id|. If one is not found, NULL | 776 // Looks for a report with the given |id|. If one is not found, NULL |
775 // will be returned. | 777 // will be returned. |
776 StatsReport* StatsCollection::Find(const StatsReport::Id& id) { | 778 StatsReport* StatsCollection::Find(const StatsReport::Id& id) { |
777 RTC_DCHECK(thread_checker_.CalledOnValidThread()); | 779 RTC_DCHECK(thread_checker_.CalledOnValidThread()); |
778 Container::iterator it = std::find_if(list_.begin(), list_.end(), | 780 Container::iterator it = std::find_if(list_.begin(), list_.end(), |
779 [&id](const StatsReport* r)->bool { return r->id()->Equals(id); }); | 781 [&id](const StatsReport* r)->bool { return r->id()->Equals(id); }); |
780 return it == list_.end() ? nullptr : *it; | 782 return it == list_.end() ? nullptr : *it; |
781 } | 783 } |
782 | 784 |
783 } // namespace webrtc | 785 } // namespace webrtc |
OLD | NEW |