| 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/videodecodersoftwarefallbackwrapper.h" | 11 #include "webrtc/media/engine/videodecodersoftwarefallbackwrapper.h" |
| 12 | 12 |
| 13 #include <string> | 13 #include <string> |
| 14 | 14 |
| 15 #include "webrtc/media/engine/internaldecoderfactory.h" | 15 #include "webrtc/media/engine/internaldecoderfactory.h" |
| 16 #include "webrtc/modules/video_coding/include/video_error_codes.h" | 16 #include "webrtc/modules/video_coding/include/video_error_codes.h" |
| 17 #include "webrtc/rtc_base/checks.h" | 17 #include "webrtc/rtc_base/checks.h" |
| 18 #include "webrtc/rtc_base/logging.h" | 18 #include "webrtc/rtc_base/logging.h" |
| 19 #include "webrtc/rtc_base/trace_event.h" | 19 #include "webrtc/rtc_base/trace_event.h" |
| 20 | 20 |
| 21 namespace webrtc { | 21 namespace webrtc { |
| 22 | 22 |
| 23 VideoDecoderSoftwareFallbackWrapper::VideoDecoderSoftwareFallbackWrapper( | 23 VideoDecoderSoftwareFallbackWrapper::VideoDecoderSoftwareFallbackWrapper( |
| 24 VideoCodecType codec_type, | 24 VideoCodecType codec_type, |
| 25 std::unique_ptr<VideoDecoder> decoder) | 25 VideoDecoder* decoder) |
| 26 : codec_type_(codec_type), | 26 : codec_type_(codec_type), |
| 27 decoder_(std::move(decoder)), | 27 decoder_(decoder), |
| 28 decoder_initialized_(false), | 28 decoder_initialized_(false), |
| 29 callback_(nullptr) {} | 29 callback_(nullptr) {} |
| 30 | 30 |
| 31 int32_t VideoDecoderSoftwareFallbackWrapper::InitDecode( | 31 int32_t VideoDecoderSoftwareFallbackWrapper::InitDecode( |
| 32 const VideoCodec* codec_settings, | 32 const VideoCodec* codec_settings, |
| 33 int32_t number_of_cores) { | 33 int32_t number_of_cores) { |
| 34 RTC_DCHECK(!fallback_decoder_) << "Fallback decoder should never be " | 34 RTC_DCHECK(!fallback_decoder_) << "Fallback decoder should never be " |
| 35 "initialized here, it should've been " | 35 "initialized here, it should've been " |
| 36 "released."; | 36 "released."; |
| 37 codec_settings_ = *codec_settings; | 37 codec_settings_ = *codec_settings; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 return decoder_->PrefersLateDecoding(); | 138 return decoder_->PrefersLateDecoding(); |
| 139 } | 139 } |
| 140 | 140 |
| 141 const char* VideoDecoderSoftwareFallbackWrapper::ImplementationName() const { | 141 const char* VideoDecoderSoftwareFallbackWrapper::ImplementationName() const { |
| 142 if (fallback_decoder_) | 142 if (fallback_decoder_) |
| 143 return fallback_implementation_name_.c_str(); | 143 return fallback_implementation_name_.c_str(); |
| 144 return decoder_->ImplementationName(); | 144 return decoder_->ImplementationName(); |
| 145 } | 145 } |
| 146 | 146 |
| 147 } // namespace webrtc | 147 } // namespace webrtc |
| OLD | NEW |