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

Unified Diff: webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc

Issue 1235433005: Add pcap support to bwe tools. Allow filtering on SSRCs. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: . Created 5 years, 5 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/remote_bitrate_estimator/tools/bwe_rtp_play.cc ('k') | webrtc/test/rtp_file_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp_play.cc ('k') | webrtc/test/rtp_file_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698