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
This commit is contained in:
henrik.lundin@webrtc.org 2014-12-01 14:23:01 +00:00
parent c93437ef96
commit 20446e7e56
2 changed files with 4 additions and 3 deletions

View File

@ -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',
],
},

View File

@ -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);
}