| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 |
| 11 #include "webrtc/media/engine/videoencodersoftwarefallbackwrapper.h" | 11 #include "webrtc/media/engine/videoencodersoftwarefallbackwrapper.h" |
| 12 | 12 |
| 13 #include "webrtc/base/logging.h" | |
| 14 #include "webrtc/media/engine/internalencoderfactory.h" | 13 #include "webrtc/media/engine/internalencoderfactory.h" |
| 15 #include "webrtc/modules/video_coding/include/video_error_codes.h" | 14 #include "webrtc/modules/video_coding/include/video_error_codes.h" |
| 15 #include "webrtc/rtc_base/logging.h" |
| 16 | 16 |
| 17 namespace webrtc { | 17 namespace webrtc { |
| 18 | 18 |
| 19 VideoEncoderSoftwareFallbackWrapper::VideoEncoderSoftwareFallbackWrapper( | 19 VideoEncoderSoftwareFallbackWrapper::VideoEncoderSoftwareFallbackWrapper( |
| 20 const cricket::VideoCodec& codec, | 20 const cricket::VideoCodec& codec, |
| 21 webrtc::VideoEncoder* encoder) | 21 webrtc::VideoEncoder* encoder) |
| 22 : number_of_cores_(0), | 22 : number_of_cores_(0), |
| 23 max_payload_size_(0), | 23 max_payload_size_(0), |
| 24 rates_set_(false), | 24 rates_set_(false), |
| 25 framerate_(0), | 25 framerate_(0), |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 return encoder_->GetScalingSettings(); | 170 return encoder_->GetScalingSettings(); |
| 171 } | 171 } |
| 172 | 172 |
| 173 const char *VideoEncoderSoftwareFallbackWrapper::ImplementationName() const { | 173 const char *VideoEncoderSoftwareFallbackWrapper::ImplementationName() const { |
| 174 if (fallback_encoder_) | 174 if (fallback_encoder_) |
| 175 return fallback_encoder_->ImplementationName(); | 175 return fallback_encoder_->ImplementationName(); |
| 176 return encoder_->ImplementationName(); | 176 return encoder_->ImplementationName(); |
| 177 } | 177 } |
| 178 | 178 |
| 179 } // namespace webrtc | 179 } // namespace webrtc |
| OLD | NEW |