| Index: webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc
|
| diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc b/webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc
|
| index 632a4fe825b7b35cfc4434e053e41bd78e05a2fe..32f36c52617ff50b429ff1a48a9f045606b68037 100644
|
| --- a/webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc
|
| +++ b/webrtc/modules/audio_coding/codecs/isac/fix/test/isac_speed_test.cc
|
| @@ -92,7 +92,7 @@ float IsacSpeedTest::DecodeABlock(const uint8_t* bit_stream,
|
| value = WebRtcIsacfix_Decode(ISACFIX_main_inst_, bit_stream, encoded_bytes,
|
| out_data, &audio_type);
|
| clocks = clock() - clocks;
|
| - EXPECT_EQ(output_length_sample_, value);
|
| + EXPECT_EQ(output_length_sample_, static_cast<size_t>(value));
|
| return 1000.0 * clocks / CLOCKS_PER_SEC;
|
| }
|
|
|
|
|