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

Side by Side Diff: webrtc/video_engine/vie_receiver.h

Issue 1335353005: Remove channel ids from various interfaces. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years, 3 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
« no previous file with comments | « webrtc/video_engine/vie_channel_group.cc ('k') | webrtc/video_engine/vie_receiver.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
(...skipping 18 matching lines...) Expand all
29 class RemoteBitrateEstimator; 29 class RemoteBitrateEstimator;
30 class RtpHeaderParser; 30 class RtpHeaderParser;
31 class RTPPayloadRegistry; 31 class RTPPayloadRegistry;
32 class RtpReceiver; 32 class RtpReceiver;
33 class RtpRtcp; 33 class RtpRtcp;
34 class VideoCodingModule; 34 class VideoCodingModule;
35 struct ReceiveBandwidthEstimatorStats; 35 struct ReceiveBandwidthEstimatorStats;
36 36
37 class ViEReceiver : public RtpData { 37 class ViEReceiver : public RtpData {
38 public: 38 public:
39 ViEReceiver(const int32_t channel_id, VideoCodingModule* module_vcm, 39 ViEReceiver(VideoCodingModule* module_vcm,
40 RemoteBitrateEstimator* remote_bitrate_estimator, 40 RemoteBitrateEstimator* remote_bitrate_estimator,
41 RtpFeedback* rtp_feedback); 41 RtpFeedback* rtp_feedback);
42 ~ViEReceiver(); 42 ~ViEReceiver();
43 43
44 bool SetReceiveCodec(const VideoCodec& video_codec); 44 bool SetReceiveCodec(const VideoCodec& video_codec);
45 bool RegisterPayload(const VideoCodec& video_codec); 45 bool RegisterPayload(const VideoCodec& video_codec);
46 46
47 void SetNackStatus(bool enable, int max_nack_reordering_threshold); 47 void SetNackStatus(bool enable, int max_nack_reordering_threshold);
48 void SetRtxPayloadType(int payload_type, int associated_payload_type); 48 void SetRtxPayloadType(int payload_type, int associated_payload_type);
49 void SetRtxSsrc(uint32_t ssrc); 49 void SetRtxSsrc(uint32_t ssrc);
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 bool restored_packet_in_use_; 117 bool restored_packet_in_use_;
118 bool receiving_ast_enabled_; 118 bool receiving_ast_enabled_;
119 bool receiving_cvo_enabled_; 119 bool receiving_cvo_enabled_;
120 bool receiving_tsn_enabled_; 120 bool receiving_tsn_enabled_;
121 int64_t last_packet_log_ms_; 121 int64_t last_packet_log_ms_;
122 }; 122 };
123 123
124 } // namespace webrt 124 } // namespace webrt
125 125
126 #endif // WEBRTC_VIDEO_ENGINE_VIE_RECEIVER_H_ 126 #endif // WEBRTC_VIDEO_ENGINE_VIE_RECEIVER_H_
OLDNEW
« no previous file with comments | « webrtc/video_engine/vie_channel_group.cc ('k') | webrtc/video_engine/vie_receiver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698