Remove unused constructor from VCMPacket.

BUG=
R=pbos@webrtc.org, sprang@webrtc.org

Review URL: https://codereview.webrtc.org/2110663004 .

Cr-Commit-Position: refs/heads/master@{#13325}
This commit is contained in:
Johan Ahlers
2016-06-29 18:02:54 +02:00
parent df6ecea8ac
commit 37f93af032
3 changed files with 21 additions and 31 deletions

View File

@ -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;