blob: b5733c8fdac7acc42c5bd0a79c61dd3d4da20b15 [file] [log] [blame]
Ilya Nikolaevskiyb0588e62018-08-27 12:12:271/*
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#ifndef TEST_FAKE_VP8_ENCODER_H_
12#define TEST_FAKE_VP8_ENCODER_H_
13
Yves Gerey3e707812018-11-28 15:47:4914#include <stddef.h>
15#include <stdint.h>
Elad Aloncde8ab22019-03-20 10:56:2016
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2717#include <memory>
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2718
Yves Gerey3e707812018-11-28 15:47:4919#include "api/video/encoded_image.h"
20#include "api/video_codecs/video_codec.h"
21#include "api/video_codecs/video_encoder.h"
Elad Aloncde8ab22019-03-20 10:56:2022#include "api/video_codecs/vp8_frame_buffer_controller.h"
Erik Språng4529fbc2018-10-12 08:30:3123#include "api/video_codecs/vp8_temporal_layers.h"
Yves Gerey3e707812018-11-28 15:47:4924#include "modules/include/module_common_types.h"
25#include "modules/video_coding/include/video_codec_interface.h"
Sebastian Janssonb55015e2019-04-09 11:44:0426#include "rtc_base/synchronization/sequence_checker.h"
Yves Gerey3e707812018-11-28 15:47:4927#include "rtc_base/thread_annotations.h"
28#include "system_wrappers/include/clock.h"
29#include "test/fake_encoder.h"
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2730
31namespace webrtc {
32namespace test {
33
Niels Möllerd7380712019-03-06 09:09:4734class FakeVP8Encoder : public FakeEncoder {
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2735 public:
36 explicit FakeVP8Encoder(Clock* clock);
37 virtual ~FakeVP8Encoder() = default;
38
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2739 int32_t InitEncode(const VideoCodec* config,
40 int32_t number_of_cores,
41 size_t max_payload_size) override;
42
43 int32_t Release() override;
44
Erik Språng86336a52018-11-15 14:38:0545 EncoderInfo GetEncoderInfo() const override;
46
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2747 private:
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2748 void PopulateCodecSpecific(CodecSpecificInfo* codec_specific,
Erik Språng59021ba2018-10-03 09:05:1649 size_t size_bytes,
Niels Möller87e2d782019-03-07 09:18:2350 VideoFrameType frame_type,
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2751 int stream_idx,
52 uint32_t timestamp);
53
Niels Möllerd7380712019-03-06 09:09:4754 std::unique_ptr<RTPFragmentationHeader> EncodeHook(
55 EncodedImage* encoded_image,
56 CodecSpecificInfo* codec_specific) override;
57
Sebastian Janssonb55015e2019-04-09 11:44:0458 SequenceChecker sequence_checker_;
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2759
Elad Aloncde8ab22019-03-20 10:56:2060 std::unique_ptr<Vp8FrameBufferController> frame_buffer_controller_
Ilya Nikolaevskiyb0588e62018-08-27 12:12:2761 RTC_GUARDED_BY(sequence_checker_);
62};
63
64} // namespace test
65} // namespace webrtc
66
67#endif // TEST_FAKE_VP8_ENCODER_H_