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

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

Issue 1905983002: Use vcm::VideoReceiver on the receive side. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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/vie_channel.cc ('k') | webrtc/video/vie_receiver.h » ('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 21 matching lines...) Expand all
32 class Config; 32 class Config;
33 class EncodedImageCallback; 33 class EncodedImageCallback;
34 class OveruseFrameDetector; 34 class OveruseFrameDetector;
35 class PacedSender; 35 class PacedSender;
36 class PayloadRouter; 36 class PayloadRouter;
37 class ProcessThread; 37 class ProcessThread;
38 class QMVideoSettingsCallback; 38 class QMVideoSettingsCallback;
39 class SendStatisticsProxy; 39 class SendStatisticsProxy;
40 class ViEBitrateObserver; 40 class ViEBitrateObserver;
41 class ViEEffectFilter; 41 class ViEEffectFilter;
42 class VideoCodingModule;
43 class VideoEncoder; 42 class VideoEncoder;
44 43
45 class ViEEncoder : public VideoEncoderRateObserver, 44 class ViEEncoder : public VideoEncoderRateObserver,
46 public EncodedImageCallback, 45 public EncodedImageCallback,
47 public VCMPacketizationCallback, 46 public VCMPacketizationCallback,
48 public VCMSendStatisticsCallback { 47 public VCMSendStatisticsCallback {
49 public: 48 public:
50 friend class ViEBitrateObserver; 49 friend class ViEBitrateObserver;
51 50
52 ViEEncoder(uint32_t number_of_cores, 51 ViEEncoder(uint32_t number_of_cores,
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 uint64_t picture_id_rpsi_ GUARDED_BY(data_cs_); 159 uint64_t picture_id_rpsi_ GUARDED_BY(data_cs_);
161 160
162 bool video_suspended_ GUARDED_BY(data_cs_); 161 bool video_suspended_ GUARDED_BY(data_cs_);
163 162
164 std::unique_ptr<IvfFileWriter> file_writers_[kMaxLayers] GUARDED_BY(data_cs_); 163 std::unique_ptr<IvfFileWriter> file_writers_[kMaxLayers] GUARDED_BY(data_cs_);
165 }; 164 };
166 165
167 } // namespace webrtc 166 } // namespace webrtc
168 167
169 #endif // WEBRTC_VIDEO_VIE_ENCODER_H_ 168 #endif // WEBRTC_VIDEO_VIE_ENCODER_H_
OLDNEW
« no previous file with comments | « webrtc/video/vie_channel.cc ('k') | webrtc/video/vie_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698