| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" | 23 #include "webrtc/modules/rtp_rtcp/source/rtp_header_extension.h" |
| 24 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" | 24 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" |
| 25 #include "webrtc/modules/rtp_rtcp/source/ulpfec_generator.h" | 25 #include "webrtc/modules/rtp_rtcp/source/ulpfec_generator.h" |
| 26 #include "webrtc/system_wrappers/include/clock.h" | 26 #include "webrtc/system_wrappers/include/clock.h" |
| 27 | 27 |
| 28 namespace webrtc { | 28 namespace webrtc { |
| 29 | 29 |
| 30 class RtpPacketToSend; | 30 class RtpPacketToSend; |
| 31 | 31 |
| 32 // Note that this class is not thread safe, and thus requires external | 32 // Note that this class is not thread safe, and thus requires external |
| 33 // synchronization. | 33 // synchronization. Currently, this is done using the lock in PayloadRouter. |
| 34 | 34 |
| 35 class FlexfecSender { | 35 class FlexfecSender { |
| 36 public: | 36 public: |
| 37 FlexfecSender(int payload_type, | 37 FlexfecSender(int payload_type, |
| 38 uint32_t ssrc, | 38 uint32_t ssrc, |
| 39 uint32_t protected_media_ssrc, | 39 uint32_t protected_media_ssrc, |
| 40 const std::vector<RtpExtension>& rtp_header_extensions, | 40 const std::vector<RtpExtension>& rtp_header_extensions, |
| 41 Clock* clock); | 41 Clock* clock); |
| 42 ~FlexfecSender(); | 42 ~FlexfecSender(); |
| 43 | 43 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 uint16_t seq_num_; | 77 uint16_t seq_num_; |
| 78 | 78 |
| 79 // Implementation. | 79 // Implementation. |
| 80 UlpfecGenerator ulpfec_generator_; | 80 UlpfecGenerator ulpfec_generator_; |
| 81 const RtpHeaderExtensionMap rtp_header_extension_map_; | 81 const RtpHeaderExtensionMap rtp_header_extension_map_; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace webrtc | 84 } // namespace webrtc |
| 85 | 85 |
| 86 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_SENDER_H_ | 86 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_FLEXFEC_SENDER_H_ |
| OLD | NEW |