Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h

Issue 2964773002: Revert "Update includes for webrtc/{base => rtc_base} rename (1/3)" (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ 10 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_
11 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ 11 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_
12 12
13 #include "webrtc/base/basictypes.h"
13 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h" 14 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/psfb.h"
14 #include "webrtc/rtc_base/basictypes.h"
15 15
16 namespace webrtc { 16 namespace webrtc {
17 namespace rtcp { 17 namespace rtcp {
18 class CommonHeader; 18 class CommonHeader;
19 // Picture loss indication (PLI) (RFC 4585). 19 // Picture loss indication (PLI) (RFC 4585).
20 class Pli : public Psfb { 20 class Pli : public Psfb {
21 public: 21 public:
22 static constexpr uint8_t kFeedbackMessageType = 1; 22 static constexpr uint8_t kFeedbackMessageType = 1;
23 23
24 Pli() {} 24 Pli() {}
25 ~Pli() override {} 25 ~Pli() override {}
26 26
27 bool Parse(const CommonHeader& packet); 27 bool Parse(const CommonHeader& packet);
28 28
29 size_t BlockLength() const override; 29 size_t BlockLength() const override;
30 30
31 bool Create(uint8_t* packet, 31 bool Create(uint8_t* packet,
32 size_t* index, 32 size_t* index,
33 size_t max_length, 33 size_t max_length,
34 RtcpPacket::PacketReadyCallback* callback) const override; 34 RtcpPacket::PacketReadyCallback* callback) const override;
35 }; 35 };
36 36
37 } // namespace rtcp 37 } // namespace rtcp
38 } // namespace webrtc 38 } // namespace webrtc
39 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_ 39 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtcp_packet/nack.cc ('k') | webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698