blob: b5fff32e5fe52d0622a50bdeb966abdb11108b56 [file] [log] [blame]
Niels Möllerbe682d42018-03-27 08:31:45 +02001/*
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
13namespace webrtc {
14
15int32_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
21void DecodedImageCallback::Decoded(VideoFrame& decodedImage,
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +020022 absl::optional<int32_t> decode_time_ms,
23 absl::optional<uint8_t> qp) {
Niels Möllerbe682d42018-03-27 08:31:45 +020024 Decoded(decodedImage, decode_time_ms.value_or(-1));
25}
26
27int32_t DecodedImageCallback::ReceivedDecodedReferenceFrame(
28 const uint64_t pictureId) {
29 return -1;
30}
31
32int32_t DecodedImageCallback::ReceivedDecodedFrame(const uint64_t pictureId) {
33 return -1;
34}
35
36bool VideoDecoder::PrefersLateDecoding() const {
37 return true;
38}
39
40const char* VideoDecoder::ImplementationName() const {
41 return "unknown";
42}
43
Niels Möllerbe682d42018-03-27 08:31:45 +020044} // namespace webrtc