OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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_VIDEO_CODING_TEST_RTP_PLAYER_H_ | 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_TEST_RTP_PLAYER_H_ |
12 #define WEBRTC_MODULES_VIDEO_CODING_TEST_RTP_PLAYER_H_ | 12 #define WEBRTC_MODULES_VIDEO_CODING_TEST_RTP_PLAYER_H_ |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h" | 17 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
18 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h" | 18 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h" |
19 | 19 |
20 namespace webrtc { | 20 namespace webrtc { |
21 class Clock; | 21 class Clock; |
22 | 22 |
23 namespace rtpplayer { | 23 namespace rtpplayer { |
24 | 24 |
25 class PayloadCodecTuple { | 25 class PayloadCodecTuple { |
26 public: | 26 public: |
27 PayloadCodecTuple(uint8_t payload_type, const std::string& codec_name, | 27 PayloadCodecTuple(uint8_t payload_type, const std::string& codec_name, |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 RtpPlayerInterface* Create(const std::string& inputFilename, | 89 RtpPlayerInterface* Create(const std::string& inputFilename, |
90 PayloadSinkFactoryInterface* payloadSinkFactory, Clock* clock, | 90 PayloadSinkFactoryInterface* payloadSinkFactory, Clock* clock, |
91 const PayloadTypes& payload_types, float lossRate, int64_t rttMs, | 91 const PayloadTypes& payload_types, float lossRate, int64_t rttMs, |
92 bool reordering); | 92 bool reordering); |
93 | 93 |
94 } // namespace rtpplayer | 94 } // namespace rtpplayer |
95 } // namespace webrtc | 95 } // namespace webrtc |
96 | 96 |
97 #endif // WEBRTC_MODULES_VIDEO_CODING_TEST_RTP_PLAYER_H_ | 97 #endif // WEBRTC_MODULES_VIDEO_CODING_TEST_RTP_PLAYER_H_ |
OLD | NEW |