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

Unified Diff: webrtc/test/rtp_file_reader.h

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/rtp_to_text.cc ('k') | webrtc/test/rtp_file_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/rtp_file_reader.h
diff --git a/webrtc/test/rtp_file_reader.h b/webrtc/test/rtp_file_reader.h
index c302d4fbde40f24ccc78e8fafd0635a36b05302c..c132d318fdc744574308452c0a717dc49d530d8b 100644
--- a/webrtc/test/rtp_file_reader.h
+++ b/webrtc/test/rtp_file_reader.h
@@ -10,6 +10,7 @@
#ifndef WEBRTC_TEST_RTP_FILE_READER_H_
#define WEBRTC_TEST_RTP_FILE_READER_H_
+#include <set>
#include <string>
#include "webrtc/common_types.h"
@@ -37,6 +38,9 @@ class RtpFileReader {
virtual ~RtpFileReader() {}
static RtpFileReader* Create(FileFormat format,
const std::string& filename);
+ static RtpFileReader* Create(FileFormat format,
+ const std::string& filename,
+ const std::set<uint32_t>& ssrc_filter);
virtual bool NextPacket(RtpPacket* packet) = 0;
};
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/tools/rtp_to_text.cc ('k') | webrtc/test/rtp_file_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698