Remove more dependencies on openssl, add dependency on boringssl. Continues on r6798
R=andrew@webrtc.org, fbarchard@chromium.org, kjellander@webrtc.org Review URL: https://webrtc-codereview.appspot.com/14029004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6867 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -348,8 +348,9 @@ class RtpPlayerImpl : public RtpPlayerInterface {
|
||||
|
||||
virtual int NextPacket(int64_t time_now) {
|
||||
// Send any packets ready to be resent.
|
||||
RawRtpPacket* packet;
|
||||
while ((packet = lost_packets_.NextPacketToResend(time_now))) {
|
||||
for (RawRtpPacket* packet = lost_packets_.NextPacketToResend(time_now);
|
||||
packet != NULL;
|
||||
packet = lost_packets_.NextPacketToResend(time_now)) {
|
||||
int ret = SendPacket(packet->data(), packet->length());
|
||||
if (ret > 0) {
|
||||
printf("Resend: %08x:%u\n", packet->ssrc(), packet->seq_num());
|
||||
|
||||
Reference in New Issue
Block a user