commit | 737e073f8da15cd05db43ca7da22ba030e14d27a | [log] [tgz] |
---|---|---|
author | Mirko Bonadei <mbonadei@webrtc.org> | Thu Oct 19 09:00:17 2017 +0200 |
committer | Commit Bot <commit-bot@chromium.org> | Thu Oct 19 07:39:22 2017 +0000 |
tree | b02d3bbcfac0257723d162ae1d0b2aa6a92b1e0b | |
parent | 117c48291cbf2f584da975b5275b352acdf8d052 [diff] [blame] |
Fixing warning C4267 on Win (more_configs). This is a follow-up of https://webrtc-review.googlesource.com/c/src/+/12921. Bug: chromium:759980 Change-Id: Ifd39adb6541c0c7e0337f587a8b34b84a07331ed Reviewed-on: https://webrtc-review.googlesource.com/13122 Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20341}
diff --git a/modules/audio_coding/neteq/expand_unittest.cc b/modules/audio_coding/neteq/expand_unittest.cc index b52d626..aeaa07b 100644 --- a/modules/audio_coding/neteq/expand_unittest.cc +++ b/modules/audio_coding/neteq/expand_unittest.cc
@@ -88,8 +88,8 @@ void SetUp() override { // Fast-forward the input file until there is speech (about 1.1 second into // the file). - const size_t speech_start_samples = - static_cast<size_t>(test_sample_rate_hz_ * 1.1f); + const int speech_start_samples = + static_cast<int>(test_sample_rate_hz_ * 1.1f); ASSERT_TRUE(input_file_.Seek(speech_start_samples)); // Pre-load the sync buffer with speech data.