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

Unified Diff: webrtc/modules/rtp_rtcp/source/producer_fec_unittest.cc

Issue 2276473002: Rename FrameGenerator -> UlpfecPacketGenerator. (pt. 6b) (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@headers-pt5-add_flexfec
Patch Set: Rebase. Created 4 years, 3 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
Index: webrtc/modules/rtp_rtcp/source/producer_fec_unittest.cc
diff --git a/webrtc/modules/rtp_rtcp/source/producer_fec_unittest.cc b/webrtc/modules/rtp_rtcp/source/producer_fec_unittest.cc
index ae51605d68834c39d55fbcb0d0d2ba8111381ffc..e94b487a15a9065015dd5b0e7730f3b8113b1a66 100644
--- a/webrtc/modules/rtp_rtcp/source/producer_fec_unittest.cc
+++ b/webrtc/modules/rtp_rtcp/source/producer_fec_unittest.cc
@@ -25,8 +25,8 @@ constexpr uint8_t kFecPayloadType = 96;
constexpr uint8_t kRedPayloadType = 97;
} // namespace
-using ::webrtc::test::fec::FrameGenerator;
using ::webrtc::test::fec::RawRtpPacket;
danilchap 2016/09/21 11:26:45 move using inside unnamed namespace and remove ::w
brandtr 2016/09/21 12:54:07 Done.
+using ::webrtc::test::fec::UlpfecPacketGenerator;
void VerifyHeader(uint16_t seq_num,
uint32_t timestamp,
@@ -50,7 +50,7 @@ void VerifyHeader(uint16_t seq_num,
class ProducerFecTest : public ::testing::Test {
protected:
ProducerFec producer_;
- FrameGenerator generator_;
+ UlpfecPacketGenerator generator_;
};
// Verifies bug found via fuzzing, where a gap in the packet sequence caused us

Powered by Google App Engine
This is Rietveld 408576698