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

Unified Diff: webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc

Issue 2018473002: Fixing neteq_rtpplay (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « webrtc/modules/audio_coding/neteq/neteq_tests.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc
diff --git a/webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc b/webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc
index 756a9cf3f09c39f7c004e28b8b35764b72b54141..e9fdca507caa9d39e02ba9a495a9cf5a132b5cc4 100644
--- a/webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc
+++ b/webrtc/modules/audio_coding/neteq/tools/neteq_rtpplay.cc
@@ -370,7 +370,7 @@ size_t ReplacePayload(InputAudioFile* replacement_audio_file,
} // namespace
-int main(int argc, char* argv[]) {
+int RunTest(int argc, char* argv[]) {
ivoc 2016/05/26 08:38:11 Is it necessary for this function to be outside of
hlundin-webrtc 2016/05/26 11:20:59 No, you are right. I fixed that.
static const int kOutputBlockSizeMs = 10;
std::string program_name = argv[0];
@@ -634,3 +634,7 @@ int main(int argc, char* argv[]) {
} // namespace test
} // namespace webrtc
+
+int main(int argc, char* argv[]) {
+ webrtc::test::RunTest(argc, argv);
+}
« no previous file with comments | « webrtc/modules/audio_coding/neteq/neteq_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698