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

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

Issue 1917363005: Rename ViEReceiver and move ownership to VideoReceiveStream. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Changed comment. Created 4 years, 7 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) 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 100
101 rtc::PlatformThread decode_thread_; 101 rtc::PlatformThread decode_thread_;
102 102
103 CongestionController* const congestion_controller_; 103 CongestionController* const congestion_controller_;
104 CallStats* const call_stats_; 104 CallStats* const call_stats_;
105 VieRemb* const remb_; 105 VieRemb* const remb_;
106 106
107 vcm::VideoReceiver video_receiver_; 107 vcm::VideoReceiver video_receiver_;
108 IncomingVideoStream incoming_video_stream_; 108 IncomingVideoStream incoming_video_stream_;
109 ReceiveStatisticsProxy stats_proxy_; 109 ReceiveStatisticsProxy stats_proxy_;
110 RtpStreamReceiver rtp_stream_receiver_;
110 ViEChannel vie_channel_; 111 ViEChannel vie_channel_;
111 ViEReceiver* const vie_receiver_;
112 ViESyncModule vie_sync_; 112 ViESyncModule vie_sync_;
113 RtpRtcp* const rtp_rtcp_; 113 RtpRtcp* const rtp_rtcp_;
114 114
115 std::unique_ptr<IvfFileWriter> ivf_writer_; 115 std::unique_ptr<IvfFileWriter> ivf_writer_;
116 }; 116 };
117 } // namespace internal 117 } // namespace internal
118 } // namespace webrtc 118 } // namespace webrtc
119 119
120 #endif // WEBRTC_VIDEO_VIDEO_RECEIVE_STREAM_H_ 120 #endif // WEBRTC_VIDEO_VIDEO_RECEIVE_STREAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698