OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "media/cast/rtp_sender/packet_storage/packet_storage.h" | 5 #include "media/cast/net/rtp_sender/packet_storage/packet_storage.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "media/cast/cast_defines.h" | 10 #include "media/cast/cast_defines.h" |
11 | 11 |
12 namespace media { | 12 namespace media { |
13 namespace cast { | 13 namespace cast { |
14 | 14 |
15 // Limit the max time delay to avoid frame id wrap around; 256 / 60 fps. | 15 // Limit the max time delay to avoid frame id wrap around; 256 / 60 fps. |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 return false; | 165 return false; |
166 } | 166 } |
167 it->second->GetCopy(packets); | 167 it->second->GetCopy(packets); |
168 VLOG(1) << "Resend " << static_cast<int>(frame_id) | 168 VLOG(1) << "Resend " << static_cast<int>(frame_id) |
169 << ":" << packet_id; | 169 << ":" << packet_id; |
170 return true; | 170 return true; |
171 } | 171 } |
172 | 172 |
173 } // namespace cast | 173 } // namespace cast |
174 } // namespace media | 174 } // namespace media |
OLD | NEW |