From 20446e7e56081612635dffcc034c3907caae1f03 Mon Sep 17 00:00:00 2001 From: "henrik.lundin@webrtc.org" Date: Mon, 1 Dec 2014 14:23:01 +0000 Subject: [PATCH] Move and rename neteq/test/RTPcat to neteq/tools/rtpcat BUG=2692 TBR=minyue@webrtc.org Review URL: https://webrtc-codereview.appspot.com/25249004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7770 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_coding/neteq/neteq_tests.gypi | 4 ++-- .../audio_coding/neteq/{test/RTPcat.cc => tools/rtpcat.cc} | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) rename webrtc/modules/audio_coding/neteq/{test/RTPcat.cc => tools/rtpcat.cc} (91%) diff --git a/webrtc/modules/audio_coding/neteq/neteq_tests.gypi b/webrtc/modules/audio_coding/neteq/neteq_tests.gypi index 2905232e16..ed0cd4bdfc 100644 --- a/webrtc/modules/audio_coding/neteq/neteq_tests.gypi +++ b/webrtc/modules/audio_coding/neteq/neteq_tests.gypi @@ -119,14 +119,14 @@ }, { - 'target_name': 'RTPcat', + 'target_name': 'rtpcat', 'type': 'executable', 'dependencies': [ '<(DEPTH)/testing/gtest.gyp:gtest', '<(webrtc_root)/test/test.gyp:rtp_test_utils', ], 'sources': [ - 'test/RTPcat.cc', + 'tools/rtpcat.cc', ], }, diff --git a/webrtc/modules/audio_coding/neteq/test/RTPcat.cc b/webrtc/modules/audio_coding/neteq/tools/rtpcat.cc similarity index 91% rename from webrtc/modules/audio_coding/neteq/test/RTPcat.cc rename to webrtc/modules/audio_coding/neteq/tools/rtpcat.cc index f954b1bfb7..089d4ca965 100644 --- a/webrtc/modules/audio_coding/neteq/test/RTPcat.cc +++ b/webrtc/modules/audio_coding/neteq/tools/rtpcat.cc @@ -21,7 +21,8 @@ using webrtc::test::RtpFileWriter; int main(int argc, char* argv[]) { if (argc < 3) { - printf("Usage: RTPcat in1.rtp int2.rtp [...] out.rtp\n"); + printf("Concatenates multiple rtpdump files into one.\n"); + printf("Usage: rtpcat in1.rtp int2.rtp [...] out.rtp\n"); exit(1); }