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 3089f58261027836c367393e83a910b9fb244576..8f073adf7ebeda9d530a91ce2b05db7f609f00a0 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 |
@@ -83,14 +83,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; |