| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_ | 5 #ifndef MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_ |
| 6 #define MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_ | 6 #define MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
| 8 #include <cmath> | 11 #include <cmath> |
| 9 #include <list> | 12 #include <list> |
| 10 #include <map> | 13 #include <map> |
| 11 | 14 |
| 12 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 13 #include "media/cast/net/rtp/packet_storage.h" | 16 #include "media/cast/net/rtp/packet_storage.h" |
| 14 | 17 |
| 15 namespace base { | 18 namespace base { |
| 16 class TickClock; | 19 class TickClock; |
| 17 } | 20 } |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 uint16_t packet_id_; | 70 uint16_t packet_id_; |
| 68 | 71 |
| 69 size_t send_packet_count_; | 72 size_t send_packet_count_; |
| 70 size_t send_octet_count_; | 73 size_t send_octet_count_; |
| 71 }; | 74 }; |
| 72 | 75 |
| 73 } // namespace cast | 76 } // namespace cast |
| 74 } // namespace media | 77 } // namespace media |
| 75 | 78 |
| 76 #endif // MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_ | 79 #endif // MEDIA_CAST_NET_RTP_RTP_PACKETIZER_H_ |
| OLD | NEW |