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

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

Issue 2451643002: Rename FecReceiver to UlpfecReceiver. (Closed)
Patch Set: Fix GYP. Created 4 years, 1 month 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/ulpfec_receiver_impl.cc
diff --git a/webrtc/modules/rtp_rtcp/source/fec_receiver_impl.cc b/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.cc
similarity index 92%
rename from webrtc/modules/rtp_rtcp/source/fec_receiver_impl.cc
rename to webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.cc
index c84ca5c9bebe03a0471edfa991f0cfeed6a98a16..8ba53b5a3ca3393c1160a6bdb80dbc8586375495 100644
--- a/webrtc/modules/rtp_rtcp/source/fec_receiver_impl.cc
+++ b/webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.cc
@@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "webrtc/modules/rtp_rtcp/source/fec_receiver_impl.h"
+#include "webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h"
#include <memory>
#include <utility>
@@ -20,20 +20,20 @@
namespace webrtc {
-FecReceiver* FecReceiver::Create(RtpData* callback) {
- return new FecReceiverImpl(callback);
+UlpfecReceiver* UlpfecReceiver::Create(RtpData* callback) {
+ return new UlpfecReceiverImpl(callback);
}
-FecReceiverImpl::FecReceiverImpl(RtpData* callback)
+UlpfecReceiverImpl::UlpfecReceiverImpl(RtpData* callback)
: recovered_packet_callback_(callback),
fec_(ForwardErrorCorrection::CreateUlpfec()) {}
-FecReceiverImpl::~FecReceiverImpl() {
+UlpfecReceiverImpl::~UlpfecReceiverImpl() {
received_packets_.clear();
fec_->ResetState(&recovered_packets_);
}
-FecPacketCounter FecReceiverImpl::GetPacketCounter() const {
+FecPacketCounter UlpfecReceiverImpl::GetPacketCounter() const {
rtc::CritScope cs(&crit_sect_);
return packet_counter_;
}
@@ -66,9 +66,11 @@ FecPacketCounter FecReceiverImpl::GetPacketCounter() const {
// block length: 10 bits Length in bytes of the corresponding data
// block excluding header.
-int32_t FecReceiverImpl::AddReceivedRedPacket(
- const RTPHeader& header, const uint8_t* incoming_rtp_packet,
- size_t packet_length, uint8_t ulpfec_payload_type) {
+int32_t UlpfecReceiverImpl::AddReceivedRedPacket(
+ const RTPHeader& header,
+ const uint8_t* incoming_rtp_packet,
+ size_t packet_length,
+ uint8_t ulpfec_payload_type) {
rtc::CritScope cs(&crit_sect_);
uint8_t red_header_length = 1;
@@ -100,8 +102,7 @@ int32_t FecReceiverImpl::AddReceivedRedPacket(
uint16_t timestamp_offset = incoming_rtp_packet[header.headerLength + 1]
<< 8;
- timestamp_offset +=
- incoming_rtp_packet[header.headerLength + 2];
+ timestamp_offset += incoming_rtp_packet[header.headerLength + 2];
timestamp_offset = timestamp_offset >> 2;
if (timestamp_offset != 0) {
LOG(LS_WARNING) << "Corrupt payload found.";
@@ -199,7 +200,7 @@ int32_t FecReceiverImpl::AddReceivedRedPacket(
return 0;
}
-int32_t FecReceiverImpl::ProcessReceivedFec() {
+int32_t UlpfecReceiverImpl::ProcessReceivedFec() {
crit_sect_.Enter();
if (!received_packets_.empty()) {
// Send received media packet to VCM.
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/ulpfec_receiver_impl.h ('k') | webrtc/modules/rtp_rtcp/source/ulpfec_receiver_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698