| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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 |
| 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_APP_H_ | 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_APP_H_ |
| 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_APP_H_ | 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_APP_H_ |
| 13 | 13 |
| 14 #include "webrtc/base/buffer.h" | |
| 15 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" | 14 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet.h" |
| 15 #include "webrtc/rtc_base/buffer.h" |
| 16 | 16 |
| 17 namespace webrtc { | 17 namespace webrtc { |
| 18 namespace rtcp { | 18 namespace rtcp { |
| 19 class CommonHeader; | 19 class CommonHeader; |
| 20 | 20 |
| 21 class App : public RtcpPacket { | 21 class App : public RtcpPacket { |
| 22 public: | 22 public: |
| 23 static constexpr uint8_t kPacketType = 204; | 23 static constexpr uint8_t kPacketType = 204; |
| 24 App(); | 24 App(); |
| 25 ~App() override; | 25 ~App() override; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 51 | 51 |
| 52 uint8_t sub_type_; | 52 uint8_t sub_type_; |
| 53 uint32_t ssrc_; | 53 uint32_t ssrc_; |
| 54 uint32_t name_; | 54 uint32_t name_; |
| 55 rtc::Buffer data_; | 55 rtc::Buffer data_; |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace rtcp | 58 } // namespace rtcp |
| 59 } // namespace webrtc | 59 } // namespace webrtc |
| 60 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_APP_H_ | 60 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_APP_H_ |
| OLD | NEW |