blob: b1813239111fe90070c9cab5d7b0e09d13ccc1d3 [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
Niels Möllerbe682d42018-03-27 08:31:45 +020027bool VideoDecoder::PrefersLateDecoding() const {
28 return true;
29}
30
31const char* VideoDecoder::ImplementationName() const {
32 return "unknown";
33}
34
Niels Möllerbe682d42018-03-27 08:31:45 +020035} // namespace webrtc