Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [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 | #ifndef TEST_FAKE_VP8_ENCODER_H_ |
| 12 | #define TEST_FAKE_VP8_ENCODER_H_ |
| 13 | |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 14 | #include <stddef.h> |
| 15 | #include <stdint.h> |
Elad Alon | cde8ab2 | 2019-03-20 10:56:20 | [diff] [blame] | 16 | |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 17 | #include <memory> |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 18 | |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 19 | #include "api/video/encoded_image.h" |
| 20 | #include "api/video_codecs/video_codec.h" |
| 21 | #include "api/video_codecs/video_encoder.h" |
Elad Alon | cde8ab2 | 2019-03-20 10:56:20 | [diff] [blame] | 22 | #include "api/video_codecs/vp8_frame_buffer_controller.h" |
Erik Språng | 4529fbc | 2018-10-12 08:30:31 | [diff] [blame] | 23 | #include "api/video_codecs/vp8_temporal_layers.h" |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 24 | #include "modules/include/module_common_types.h" |
| 25 | #include "modules/video_coding/include/video_codec_interface.h" |
Sebastian Jansson | b55015e | 2019-04-09 11:44:04 | [diff] [blame] | 26 | #include "rtc_base/synchronization/sequence_checker.h" |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 27 | #include "rtc_base/thread_annotations.h" |
| 28 | #include "system_wrappers/include/clock.h" |
| 29 | #include "test/fake_encoder.h" |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 30 | |
| 31 | namespace webrtc { |
| 32 | namespace test { |
| 33 | |
Niels Möller | d738071 | 2019-03-06 09:09:47 | [diff] [blame] | 34 | class FakeVP8Encoder : public FakeEncoder { |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 35 | public: |
| 36 | explicit FakeVP8Encoder(Clock* clock); |
| 37 | virtual ~FakeVP8Encoder() = default; |
| 38 | |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 39 | 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ång | 86336a5 | 2018-11-15 14:38:05 | [diff] [blame] | 45 | EncoderInfo GetEncoderInfo() const override; |
| 46 | |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 47 | private: |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 48 | void PopulateCodecSpecific(CodecSpecificInfo* codec_specific, |
Erik Språng | 59021ba | 2018-10-03 09:05:16 | [diff] [blame] | 49 | size_t size_bytes, |
Niels Möller | 87e2d78 | 2019-03-07 09:18:23 | [diff] [blame] | 50 | VideoFrameType frame_type, |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 51 | int stream_idx, |
| 52 | uint32_t timestamp); |
| 53 | |
Niels Möller | d738071 | 2019-03-06 09:09:47 | [diff] [blame] | 54 | std::unique_ptr<RTPFragmentationHeader> EncodeHook( |
| 55 | EncodedImage* encoded_image, |
| 56 | CodecSpecificInfo* codec_specific) override; |
| 57 | |
Sebastian Jansson | b55015e | 2019-04-09 11:44:04 | [diff] [blame] | 58 | SequenceChecker sequence_checker_; |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 59 | |
Elad Alon | cde8ab2 | 2019-03-20 10:56:20 | [diff] [blame] | 60 | std::unique_ptr<Vp8FrameBufferController> frame_buffer_controller_ |
Ilya Nikolaevskiy | b0588e6 | 2018-08-27 12:12:27 | [diff] [blame] | 61 | RTC_GUARDED_BY(sequence_checker_); |
| 62 | }; |
| 63 | |
| 64 | } // namespace test |
| 65 | } // namespace webrtc |
| 66 | |
| 67 | #endif // TEST_FAKE_VP8_ENCODER_H_ |