OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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_VCM_PAYLOAD_SINK_FACTORY_H_ |
| 12 #define WEBRTC_MODULES_VIDEO_CODING_TEST_VCM_PAYLOAD_SINK_FACTORY_H_ |
| 13 |
11 #include <string> | 14 #include <string> |
12 #include <vector> | 15 #include <vector> |
13 | 16 |
14 #include "webrtc/base/constructormagic.h" | 17 #include "webrtc/base/constructormagic.h" |
15 #include "webrtc/base/scoped_ptr.h" | 18 #include "webrtc/base/scoped_ptr.h" |
16 #include "webrtc/modules/video_coding/main/interface/video_coding_defines.h" | 19 #include "webrtc/modules/video_coding/include/video_coding_defines.h" |
17 #include "webrtc/modules/video_coding/main/test/rtp_player.h" | 20 #include "webrtc/modules/video_coding/test/rtp_player.h" |
18 | 21 |
19 class NullEventFactory; | 22 class NullEventFactory; |
20 | 23 |
21 namespace webrtc { | 24 namespace webrtc { |
22 class Clock; | 25 class Clock; |
23 class CriticalSectionWrapper; | 26 class CriticalSectionWrapper; |
24 | 27 |
25 namespace rtpplayer { | 28 namespace rtpplayer { |
26 class VcmPayloadSinkFactory : public PayloadSinkFactoryInterface { | 29 class VcmPayloadSinkFactory : public PayloadSinkFactoryInterface { |
27 public: | 30 public: |
(...skipping 26 matching lines...) Expand all Loading... |
54 uint32_t render_delay_ms_; | 57 uint32_t render_delay_ms_; |
55 uint32_t min_playout_delay_ms_; | 58 uint32_t min_playout_delay_ms_; |
56 rtc::scoped_ptr<NullEventFactory> null_event_factory_; | 59 rtc::scoped_ptr<NullEventFactory> null_event_factory_; |
57 rtc::scoped_ptr<CriticalSectionWrapper> crit_sect_; | 60 rtc::scoped_ptr<CriticalSectionWrapper> crit_sect_; |
58 Sinks sinks_; | 61 Sinks sinks_; |
59 | 62 |
60 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(VcmPayloadSinkFactory); | 63 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(VcmPayloadSinkFactory); |
61 }; | 64 }; |
62 } // namespace rtpplayer | 65 } // namespace rtpplayer |
63 } // namespace webrtc | 66 } // namespace webrtc |
| 67 |
| 68 #endif // WEBRTC_MODULES_VIDEO_CODING_TEST_VCM_PAYLOAD_SINK_FACTORY_H_ |
OLD | NEW |