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

Side by Side Diff: webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.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
11 // This file contains the class RtpFormatVp8TestHelper. The class is 11 // This file contains the class RtpFormatVp8TestHelper. The class is
12 // responsible for setting up a fake VP8 bitstream according to the 12 // responsible for setting up a fake VP8 bitstream according to the
13 // RTPVideoHeaderVP8 header, and partition information. After initialization, 13 // RTPVideoHeaderVP8 header, and partition information. After initialization,
14 // an RTPFragmentationHeader is provided so that the tester can create a 14 // an RTPFragmentationHeader is provided so that the tester can create a
15 // packetizer. The packetizer can then be provided to this helper class, which 15 // packetizer. The packetizer can then be provided to this helper class, which
16 // will then extract all packets and compare to the expected outcome. 16 // will then extract all packets and compare to the expected outcome.
17 17
18 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_TEST_HELPER_H_ 18 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_TEST_HELPER_H_
19 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_TEST_HELPER_H_ 19 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_TEST_HELPER_H_
20 20
21 #include "webrtc/base/constructormagic.h"
22 #include "webrtc/modules/include/module_common_types.h" 21 #include "webrtc/modules/include/module_common_types.h"
23 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h" 22 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h"
24 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h" 23 #include "webrtc/modules/rtp_rtcp/source/rtp_packet_to_send.h"
24 #include "webrtc/rtc_base/constructormagic.h"
25 #include "webrtc/typedefs.h" 25 #include "webrtc/typedefs.h"
26 26
27 namespace webrtc { 27 namespace webrtc {
28 28
29 namespace test { 29 namespace test {
30 30
31 class RtpFormatVp8TestHelper { 31 class RtpFormatVp8TestHelper {
32 public: 32 public:
33 explicit RtpFormatVp8TestHelper(const RTPVideoHeaderVP8* hdr); 33 explicit RtpFormatVp8TestHelper(const RTPVideoHeaderVP8* hdr);
34 ~RtpFormatVp8TestHelper(); 34 ~RtpFormatVp8TestHelper();
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 bool inited_; 68 bool inited_;
69 69
70 RTC_DISALLOW_COPY_AND_ASSIGN(RtpFormatVp8TestHelper); 70 RTC_DISALLOW_COPY_AND_ASSIGN(RtpFormatVp8TestHelper);
71 }; 71 };
72 72
73 } // namespace test 73 } // namespace test
74 74
75 } // namespace webrtc 75 } // namespace webrtc
76 76
77 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_TEST_HELPER_H_ 77 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_FORMAT_VP8_TEST_HELPER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_format_vp8.cc ('k') | webrtc/modules/rtp_rtcp/source/rtp_format_vp9.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698