blob: 1176feb46c955ad86a13cfc8b330b016af42c7c2 [file] [log] [blame]
pbos@webrtc.org0181b5f2013-09-09 08:26:301/*
2 * Copyright (c) 2013 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
Mirko Bonadei92ea95e2017-09-15 04:47:3111#ifndef TEST_FAKE_DECODER_H_
12#define TEST_FAKE_DECODER_H_
pbos@webrtc.org0181b5f2013-09-09 08:26:3013
Yves Gerey3e707812018-11-28 15:47:4914#include <stdint.h>
pbos@webrtc.org0181b5f2013-09-09 08:26:3015
Yves Gerey3e707812018-11-28 15:47:4916#include "api/video/encoded_image.h"
17#include "api/video_codecs/video_codec.h"
18#include "api/video_codecs/video_decoder.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3119#include "modules/video_coding/include/video_codec_interface.h"
pbos@webrtc.org0181b5f2013-09-09 08:26:3020
21namespace webrtc {
22namespace test {
23
24class FakeDecoder : public VideoDecoder {
25 public:
26 FakeDecoder();
stefan@webrtc.org79c33592014-08-06 09:24:5327 virtual ~FakeDecoder() {}
pbos@webrtc.org0181b5f2013-09-09 08:26:3028
stefan@webrtc.org48ac2262015-03-02 16:18:5629 int32_t InitDecode(const VideoCodec* config,
30 int32_t number_of_cores) override;
pbos@webrtc.org0181b5f2013-09-09 08:26:3031
stefan@webrtc.org48ac2262015-03-02 16:18:5632 int32_t Decode(const EncodedImage& input,
33 bool missing_frames,
Jeroen de Borst2c7b9822019-03-07 19:40:0734 const CodecSpecificInfo* codec_specific_info,
stefan@webrtc.org48ac2262015-03-02 16:18:5635 int64_t render_time_ms) override;
pbos@webrtc.org0181b5f2013-09-09 08:26:3036
stefan@webrtc.org48ac2262015-03-02 16:18:5637 int32_t RegisterDecodeCompleteCallback(
38 DecodedImageCallback* callback) override;
pbos@webrtc.org0181b5f2013-09-09 08:26:3039
stefan@webrtc.org48ac2262015-03-02 16:18:5640 int32_t Release() override;
pbos@webrtc.org0181b5f2013-09-09 08:26:3041
Peter Boströmb7d9a972015-12-18 15:01:1142 const char* ImplementationName() const override;
43
44 static const char* kImplementationName;
45
pbos@webrtc.org0181b5f2013-09-09 08:26:3046 private:
pbos@webrtc.org0181b5f2013-09-09 08:26:3047 DecodedImageCallback* callback_;
philipel0e075722018-04-05 11:04:4248 int width_;
49 int height_;
pbos@webrtc.org0181b5f2013-09-09 08:26:3050};
stefan@webrtc.org79c33592014-08-06 09:24:5351
52class FakeH264Decoder : public FakeDecoder {
53 public:
54 virtual ~FakeH264Decoder() {}
55
stefan@webrtc.org48ac2262015-03-02 16:18:5656 int32_t Decode(const EncodedImage& input,
57 bool missing_frames,
Jeroen de Borst2c7b9822019-03-07 19:40:0758 const CodecSpecificInfo* codec_specific_info,
stefan@webrtc.org48ac2262015-03-02 16:18:5659 int64_t render_time_ms) override;
60};
61
pbos@webrtc.org0181b5f2013-09-09 08:26:3062} // namespace test
63} // namespace webrtc
64
Mirko Bonadei92ea95e2017-09-15 04:47:3165#endif // TEST_FAKE_DECODER_H_