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

Side by Side Diff: webrtc/video/rtp_video_stream_receiver.h

Issue 3000253002: Move video send/receive stream headers to webrtc/call. (Closed)
Patch Set: Headers moved to 'webrtc/call' instead of 'webrtc/api'. Created 3 years, 4 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) 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_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_ 11 #ifndef WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_
12 #define WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_ 12 #define WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_
13 13
14 #include <list> 14 #include <list>
15 #include <map> 15 #include <map>
16 #include <memory> 16 #include <memory>
17 #include <string> 17 #include <string>
18 #include <vector> 18 #include <vector>
19 19
20 #include "webrtc/call/rtp_packet_sink_interface.h" 20 #include "webrtc/call/rtp_packet_sink_interface.h"
21 #include "webrtc/call/video_receive_stream.h"
21 #include "webrtc/modules/include/module_common_types.h" 22 #include "webrtc/modules/include/module_common_types.h"
22 #include "webrtc/modules/rtp_rtcp/include/receive_statistics.h" 23 #include "webrtc/modules/rtp_rtcp/include/receive_statistics.h"
23 #include "webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h" 24 #include "webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h"
24 #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h" 25 #include "webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h"
25 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" 26 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h"
26 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" 27 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
27 #include "webrtc/modules/video_coding/h264_sps_pps_tracker.h" 28 #include "webrtc/modules/video_coding/h264_sps_pps_tracker.h"
28 #include "webrtc/modules/video_coding/include/video_coding_defines.h" 29 #include "webrtc/modules/video_coding/include/video_coding_defines.h"
29 #include "webrtc/modules/video_coding/packet_buffer.h" 30 #include "webrtc/modules/video_coding/packet_buffer.h"
30 #include "webrtc/modules/video_coding/rtp_frame_reference_finder.h" 31 #include "webrtc/modules/video_coding/rtp_frame_reference_finder.h"
31 #include "webrtc/modules/video_coding/sequence_number_util.h" 32 #include "webrtc/modules/video_coding/sequence_number_util.h"
32 #include "webrtc/rtc_base/constructormagic.h" 33 #include "webrtc/rtc_base/constructormagic.h"
33 #include "webrtc/rtc_base/criticalsection.h" 34 #include "webrtc/rtc_base/criticalsection.h"
34 #include "webrtc/rtc_base/thread_checker.h" 35 #include "webrtc/rtc_base/thread_checker.h"
35 #include "webrtc/typedefs.h" 36 #include "webrtc/typedefs.h"
36 #include "webrtc/video_receive_stream.h"
37 37
38 namespace webrtc { 38 namespace webrtc {
39 39
40 class NackModule; 40 class NackModule;
41 class PacedSender; 41 class PacedSender;
42 class PacketRouter; 42 class PacketRouter;
43 class ProcessThread; 43 class ProcessThread;
44 class ReceiveStatistics; 44 class ReceiveStatistics;
45 class ReceiveStatisticsProxy; 45 class ReceiveStatisticsProxy;
46 class RemoteNtpTimeEstimator; 46 class RemoteNtpTimeEstimator;
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 212
213 // TODO(eladalon): https://bugs.chromium.org/p/webrtc/issues/detail?id=8056 213 // TODO(eladalon): https://bugs.chromium.org/p/webrtc/issues/detail?id=8056
214 // rtc::ThreadChecker worker_thread_checker_; 214 // rtc::ThreadChecker worker_thread_checker_;
215 std::vector<RtpPacketSinkInterface*> secondary_sinks_; // This needs 215 std::vector<RtpPacketSinkInterface*> secondary_sinks_; // This needs
216 // to be GUARDED_BY(worker_thread_checker_). 216 // to be GUARDED_BY(worker_thread_checker_).
217 }; 217 };
218 218
219 } // namespace webrtc 219 } // namespace webrtc
220 220
221 #endif // WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_ 221 #endif // WEBRTC_VIDEO_RTP_VIDEO_STREAM_RECEIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698