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

Unified Diff: webrtc/modules/video_coding/packet.cc

Issue 2110663004: Remove unused constructor from VCMPacket. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 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/video_coding/packet.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_coding/packet.cc
diff --git a/webrtc/modules/video_coding/packet.cc b/webrtc/modules/video_coding/packet.cc
index aa27c5da6b868c73e7fa6fe65b136314d3d7b706..643a10a346f0ab6f1146eb361155f85eeacf4a23 100644
--- a/webrtc/modules/video_coding/packet.cc
+++ b/webrtc/modules/video_coding/packet.cc
@@ -68,28 +68,6 @@ VCMPacket::VCMPacket(const uint8_t* ptr,
}
}
-VCMPacket::VCMPacket(const uint8_t* ptr,
- size_t size,
- uint16_t seq,
- uint32_t ts,
- bool mBit)
- : payloadType(0),
- timestamp(ts),
- ntp_time_ms_(0),
- seqNum(seq),
- dataPtr(ptr),
- sizeBytes(size),
- markerBit(mBit),
- timesNacked(-1),
- frameType(kVideoFrameDelta),
- codec(kVideoCodecUnknown),
- isFirstPacket(false),
- completeNALU(kNaluComplete),
- insertStartCode(false),
- width(0),
- height(0),
- video_header() {}
-
void VCMPacket::Reset() {
payloadType = 0;
timestamp = 0;
« no previous file with comments | « webrtc/modules/video_coding/packet.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698