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 bb76257569595d110ba6f6c51430591bab227bba..ece93681bdba713d3421f9ff36e1132ffe9af98d 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 |
@@ -80,14 +80,14 @@ float IsacSpeedTest::EncodeABlock(int16_t* in_data, uint8_t* bit_stream, |
return 1000.0 * clocks / CLOCKS_PER_SEC; |
} |
-float IsacSpeedTest::DecodeABlock(const uint8_t* bit_stream, int encoded_bytes, |
+float IsacSpeedTest::DecodeABlock(const uint8_t* bit_stream, |
+ int encoded_bytes, |
int16_t* out_data) { |
int value; |
int16_t audio_type; |
clock_t clocks = clock(); |
- value = WebRtcIsacfix_Decode(ISACFIX_main_inst_, |
- bit_stream, |
- encoded_bytes, out_data, &audio_type); |
+ value = WebRtcIsacfix_Decode(ISACFIX_main_inst_, bit_stream, encoded_bytes, |
+ out_data, &audio_type); |
clocks = clock() - clocks; |
EXPECT_EQ(output_length_sample_, value); |
return 1000.0 * clocks / CLOCKS_PER_SEC; |