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

Unified Diff: webrtc/modules/audio_processing/test/audio_processing_unittest.cc

Issue 1362503003: Use suffixed {uint,int}{8,16,32,64}_t types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: google::int32 Created 5 years, 3 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_processing/test/audio_processing_unittest.cc
diff --git a/webrtc/modules/audio_processing/test/audio_processing_unittest.cc b/webrtc/modules/audio_processing/test/audio_processing_unittest.cc
index d82ea31c24b1713f6f87ac0e76e00f19df33dc3e..ea4e178a1dfb9dd8816cd0ff50a399269119fcf0 100644
--- a/webrtc/modules/audio_processing/test/audio_processing_unittest.cc
+++ b/webrtc/modules/audio_processing/test/audio_processing_unittest.cc
@@ -306,7 +306,7 @@ void OpenFileAndReadMessage(const std::string filename,
fclose(file);
}
-// Reads a 10 ms chunk of int16 interleaved audio from the given (assumed
+// Reads a 10 ms chunk of int16_t interleaved audio from the given (assumed
// stereo) file, converts to deinterleaved float (optionally downmixing) and
// returns the result in |cb|. Returns false if the file ended (or on error) and
// true otherwise.
@@ -1757,7 +1757,7 @@ void ApmTest::ProcessDebugDump(const std::string& in_filename,
} else {
memcpy(revframe_->data_, msg.data().data(), msg.data().size());
if (format == kFloatFormat) {
- // We're using an int16 input file; convert to float.
+ // We're using an int16_t input file; convert to float.
ConvertToFloat(*revframe_, revfloat_cb_.get());
}
}
@@ -1787,7 +1787,7 @@ void ApmTest::ProcessDebugDump(const std::string& in_filename,
} else {
memcpy(frame_->data_, msg.input_data().data(), msg.input_data().size());
if (format == kFloatFormat) {
- // We're using an int16 input file; convert to float.
+ // We're using an int16_t input file; convert to float.
ConvertToFloat(*frame_, float_cb_.get());
}
}

Powered by Google App Engine
This is Rietveld 408576698