Niels Möller | be682d4 | 2018-03-27 08:31:45 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #include "api/video_codecs/video_decoder.h" |
| 12 | |
| 13 | namespace webrtc { |
| 14 | |
| 15 | int32_t DecodedImageCallback::Decoded(VideoFrame& decodedImage, |
| 16 | int64_t decode_time_ms) { |
| 17 | // The default implementation ignores custom decode time value. |
| 18 | return Decoded(decodedImage); |
| 19 | } |
| 20 | |
| 21 | void DecodedImageCallback::Decoded(VideoFrame& decodedImage, |
Danil Chapovalov | 0bc58cf | 2018-06-21 13:32:56 +0200 | [diff] [blame^] | 22 | absl::optional<int32_t> decode_time_ms, |
| 23 | absl::optional<uint8_t> qp) { |
Niels Möller | be682d4 | 2018-03-27 08:31:45 +0200 | [diff] [blame] | 24 | Decoded(decodedImage, decode_time_ms.value_or(-1)); |
| 25 | } |
| 26 | |
| 27 | int32_t DecodedImageCallback::ReceivedDecodedReferenceFrame( |
| 28 | const uint64_t pictureId) { |
| 29 | return -1; |
| 30 | } |
| 31 | |
| 32 | int32_t DecodedImageCallback::ReceivedDecodedFrame(const uint64_t pictureId) { |
| 33 | return -1; |
| 34 | } |
| 35 | |
| 36 | bool VideoDecoder::PrefersLateDecoding() const { |
| 37 | return true; |
| 38 | } |
| 39 | |
| 40 | const char* VideoDecoder::ImplementationName() const { |
| 41 | return "unknown"; |
| 42 | } |
| 43 | |
Niels Möller | be682d4 | 2018-03-27 08:31:45 +0200 | [diff] [blame] | 44 | } // namespace webrtc |