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

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

Issue 1813173002: Deletes the class VideoRendererCallback. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Delete unused method IncomingVideoStream::ModuleCallback. 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
« no previous file with comments | « webrtc/video/video_receive_stream.cc ('k') | webrtc/video/vie_channel.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 24 matching lines...) Expand all
35 class Config; 35 class Config;
36 class EncodedImageCallback; 36 class EncodedImageCallback;
37 class I420FrameCallback; 37 class I420FrameCallback;
38 class IncomingVideoStream; 38 class IncomingVideoStream;
39 class PacedSender; 39 class PacedSender;
40 class PacketRouter; 40 class PacketRouter;
41 class PayloadRouter; 41 class PayloadRouter;
42 class ReceiveStatisticsProxy; 42 class ReceiveStatisticsProxy;
43 class RtcpRttStats; 43 class RtcpRttStats;
44 class ViERTPObserver; 44 class ViERTPObserver;
45 class VideoRenderCallback;
46 class VoEVideoSync; 45 class VoEVideoSync;
47 46
48 namespace vcm { 47 namespace vcm {
49 class VideoReceiver; 48 class VideoReceiver;
50 } // namespace vcm 49 } // namespace vcm
51 50
52 enum StreamType { 51 enum StreamType {
53 kViEStreamTypeNormal = 0, // Normal media stream 52 kViEStreamTypeNormal = 0, // Normal media stream
54 kViEStreamTypeRtx = 1 // Retransmission media stream 53 kViEStreamTypeRtx = 1 // Retransmission media stream
55 }; 54 };
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 151
153 int max_nack_reordering_threshold_; 152 int max_nack_reordering_threshold_;
154 I420FrameCallback* pre_render_callback_ GUARDED_BY(crit_); 153 I420FrameCallback* pre_render_callback_ GUARDED_BY(crit_);
155 154
156 int64_t last_rtt_ms_ GUARDED_BY(crit_); 155 int64_t last_rtt_ms_ GUARDED_BY(crit_);
157 }; 156 };
158 157
159 } // namespace webrtc 158 } // namespace webrtc
160 159
161 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_ 160 #endif // WEBRTC_VIDEO_VIE_CHANNEL_H_
OLDNEW
« no previous file with comments | « webrtc/video/video_receive_stream.cc ('k') | webrtc/video/vie_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698