Index: webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc |
diff --git a/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc b/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc |
index f2ff7dfb852845344b3aa18b641a353dc8cf5498..e2774818861b205f8851a78ad11794bbfbb48c37 100644 |
--- a/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc |
+++ b/webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc |
@@ -19,17 +19,6 @@ |
#include "webrtc/test/rtp_file_reader.h" |
int main(int argc, char** argv) { |
- if (argc < 4) { |
- fprintf(stderr, "Usage: rtp_to_text <extension type> <extension id>" |
- " <input_file.rtp> [-t]\n"); |
- fprintf(stderr, "<extension type> can either be:\n" |
- " abs for absolute send time or\n" |
- " tsoffset for timestamp offset.\n" |
- "<extension id> is the id associated with the extension.\n" |
- " -t is an optional flag, if set only packet arrival time will be" |
- " output.\n"); |
- return -1; |
- } |
webrtc::test::RtpFileReader* reader; |
webrtc::RtpHeaderParser* parser; |
if (!ParseArgsAndSetupEstimator(argc, argv, NULL, NULL, &reader, &parser, |