commit | efe46b6beea9c1f31d3e6686bb1fd0c7d5f35375 | [log] [tgz] |
---|---|---|
author | Byoungchan Lee <daniel.l@hpcnt.com> | Wed Nov 10 02:23:56 2021 |
committer | WebRTC LUCI CQ <webrtc-scoped@luci-project-accounts.iam.gserviceaccount.com> | Tue Nov 16 11:21:41 2021 |
tree | 6e25b162566bd969055a3f75fade64a64b42475e | |
parent | 45448e9c1c21cac0761bf6942ee26d952f7e4bab [diff] [blame] |
Change the type of RTCVideoSourceStats.framesPerSecond Spec: https://w3c.github.io/webrtc-stats/#dom-rtcvideosourcestats-framespersecond Bug: webrtc:12905 Change-Id: If53e2e480e2d6f687c3f8bb95a9e1d1e386fe9c2 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/237420 Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Reviewed-by: Henrik Boström <hbos@webrtc.org> Commit-Queue: Byoungchan Lee <daniel.l@hpcnt.com> Cr-Commit-Position: refs/heads/main@{#35352}
diff --git a/pc/rtc_stats_integrationtest.cc b/pc/rtc_stats_integrationtest.cc index 32c567e..ca0df26 100644 --- a/pc/rtc_stats_integrationtest.cc +++ b/pc/rtc_stats_integrationtest.cc
@@ -1112,7 +1112,7 @@ verifier.TestMemberIsUndefined(video_source.width); verifier.TestMemberIsUndefined(video_source.height); verifier.TestMemberIsNonNegative<uint32_t>(video_source.frames); - verifier.TestMemberIsNonNegative<uint32_t>(video_source.frames_per_second); + verifier.TestMemberIsNonNegative<double>(video_source.frames_per_second); return verifier.ExpectAllMembersSuccessfullyTested(); }