| 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 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "webrtc/video/receive_statistics_proxy.h" | 24 #include "webrtc/video/receive_statistics_proxy.h" |
| 25 #include "webrtc/video/vie_channel.h" | 25 #include "webrtc/video/vie_channel.h" |
| 26 #include "webrtc/video/vie_encoder.h" | 26 #include "webrtc/video/vie_encoder.h" |
| 27 #include "webrtc/video_encoder.h" | 27 #include "webrtc/video_encoder.h" |
| 28 #include "webrtc/video_receive_stream.h" | 28 #include "webrtc/video_receive_stream.h" |
| 29 | 29 |
| 30 namespace webrtc { | 30 namespace webrtc { |
| 31 | 31 |
| 32 class CallStats; | 32 class CallStats; |
| 33 class CongestionController; | 33 class CongestionController; |
| 34 class IvfFileWriter; |
| 34 class ProcessThread; | 35 class ProcessThread; |
| 35 class VoiceEngine; | 36 class VoiceEngine; |
| 36 class VieRemb; | 37 class VieRemb; |
| 37 | 38 |
| 38 namespace internal { | 39 namespace internal { |
| 39 | 40 |
| 40 class VideoReceiveStream : public webrtc::VideoReceiveStream, | 41 class VideoReceiveStream : public webrtc::VideoReceiveStream, |
| 41 public I420FrameCallback, | 42 public I420FrameCallback, |
| 42 public VideoRenderCallback, | 43 public VideoRenderCallback, |
| 43 public EncodedImageCallback, | 44 public EncodedImageCallback, |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 CallStats* const call_stats_; | 104 CallStats* const call_stats_; |
| 104 VieRemb* const remb_; | 105 VieRemb* const remb_; |
| 105 | 106 |
| 106 std::unique_ptr<VideoCodingModule> vcm_; | 107 std::unique_ptr<VideoCodingModule> vcm_; |
| 107 IncomingVideoStream incoming_video_stream_; | 108 IncomingVideoStream incoming_video_stream_; |
| 108 ReceiveStatisticsProxy stats_proxy_; | 109 ReceiveStatisticsProxy stats_proxy_; |
| 109 ViEChannel vie_channel_; | 110 ViEChannel vie_channel_; |
| 110 ViEReceiver* const vie_receiver_; | 111 ViEReceiver* const vie_receiver_; |
| 111 ViESyncModule vie_sync_; | 112 ViESyncModule vie_sync_; |
| 112 RtpRtcp* const rtp_rtcp_; | 113 RtpRtcp* const rtp_rtcp_; |
| 114 |
| 115 std::unique_ptr<IvfFileWriter> ivf_writer_; |
| 113 }; | 116 }; |
| 114 } // namespace internal | 117 } // namespace internal |
| 115 } // namespace webrtc | 118 } // namespace webrtc |
| 116 | 119 |
| 117 #endif // WEBRTC_VIDEO_VIDEO_RECEIVE_STREAM_H_ | 120 #endif // WEBRTC_VIDEO_VIDEO_RECEIVE_STREAM_H_ |
| OLD | NEW |