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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h

Issue 2969653002: Update includes for webrtc/{base => rtc_base} rename (1/3) (Closed)
Patch Set: Rebased onto 89c4a7e57d524b13fbe0c823a83a4c10c2e63bd0 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) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 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 11 matching lines...) Expand all
22 * false as long as there are more packets left to fetch. 22 * false as long as there are more packets left to fetch.
23 */ 23 */
24 24
25 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_H_ 25 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_H_
26 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_H_ 26 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_H_
27 27
28 #include <queue> 28 #include <queue>
29 #include <string> 29 #include <string>
30 #include <vector> 30 #include <vector>
31 31
32 #include "webrtc/base/constructormagic.h"
33 #include "webrtc/modules/include/module_common_types.h" 32 #include "webrtc/modules/include/module_common_types.h"
34 #include "webrtc/modules/rtp_rtcp/source/rtp_format.h" 33 #include "webrtc/modules/rtp_rtcp/source/rtp_format.h"
34 #include "webrtc/rtc_base/constructormagic.h"
35 #include "webrtc/typedefs.h" 35 #include "webrtc/typedefs.h"
36 36
37 namespace webrtc { 37 namespace webrtc {
38 38
39 enum VP8PacketizerMode { 39 enum VP8PacketizerMode {
40 kStrict = 0, // Split partitions if too large; 40 kStrict = 0, // Split partitions if too large;
41 // never aggregate, balance size. 41 // never aggregate, balance size.
42 kAggregate, // Split partitions if too large; aggregate whole partitions. 42 kAggregate, // Split partitions if too large; aggregate whole partitions.
43 kEqualSize, // Split entire payload without considering partition limits. 43 kEqualSize, // Split entire payload without considering partition limits.
44 // This will produce equal size packets for the whole frame. 44 // This will produce equal size packets for the whole frame.
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 class RtpDepacketizerVp8 : public RtpDepacketizer { 195 class RtpDepacketizerVp8 : public RtpDepacketizer {
196 public: 196 public:
197 virtual ~RtpDepacketizerVp8() {} 197 virtual ~RtpDepacketizerVp8() {}
198 198
199 bool Parse(ParsedPayload* parsed_payload, 199 bool Parse(ParsedPayload* parsed_payload,
200 const uint8_t* payload_data, 200 const uint8_t* payload_data,
201 size_t payload_data_length) override; 201 size_t payload_data_length) override;
202 }; 202 };
203 } // namespace webrtc 203 } // namespace webrtc
204 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_H_ 204 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_format_video_generic_unittest.cc ('k') | webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698