OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |