Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(869)

Unified Diff: webrtc/modules/audio_coding/main/test/opus_test.cc

Issue 1172163004: Reformat existing code. There should be no functional effects. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/main/test/opus_test.cc
diff --git a/webrtc/modules/audio_coding/main/test/opus_test.cc b/webrtc/modules/audio_coding/main/test/opus_test.cc
index ad7e2f9be8a002dd4506d2b5b9f8a73148ee77f9..c61d25ad19acd026b11bca7dd528f87a3a19d4be 100644
--- a/webrtc/modules/audio_coding/main/test/opus_test.cc
+++ b/webrtc/modules/audio_coding/main/test/opus_test.cc
@@ -276,7 +276,7 @@ void OpusTest::Run(TestPackStereo* channel, int channels, int bitrate,
int bitstream_len_byte_int = WebRtcOpus_Encode(
(channels == 1) ? opus_mono_encoder_ : opus_stereo_encoder_,
&audio[read_samples], frame_length, kMaxBytes, bitstream);
- ASSERT_GT(bitstream_len_byte_int, -1);
+ ASSERT_GE(bitstream_len_byte_int, 0);
bitstream_len_byte = static_cast<int16_t>(bitstream_len_byte_int);
// Simulate packet loss by setting |packet_loss_| to "true" in

Powered by Google App Engine
This is Rietveld 408576698