1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/*
* Copyright (c) 2022 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "modules/video_coding/video_receiver2.h"
#include <cstdint>
#include <memory>
#include <utility>
#include "api/test/mock_video_decoder.h"
#include "api/units/timestamp.h"
#include "api/video/encoded_frame.h"
#include "api/video/video_codec_type.h"
#include "api/video_codecs/video_decoder.h"
#include "common_video/test/utilities.h"
#include "modules/video_coding/include/video_coding_defines.h"
#include "modules/video_coding/include/video_error_codes.h"
#include "modules/video_coding/timing/timing.h"
#include "system_wrappers/include/clock.h"
#include "test/gmock.h"
#include "test/gtest.h"
#include "test/scoped_key_value_config.h"
namespace webrtc {
namespace {
using ::testing::_;
using ::testing::NiceMock;
using ::testing::Return;
class MockVCMReceiveCallback : public VCMReceiveCallback {
public:
MockVCMReceiveCallback() = default;
MOCK_METHOD(int32_t, OnFrameToRender, (const FrameToRender&), (override));
MOCK_METHOD(void, OnIncomingPayloadType, (int), (override));
MOCK_METHOD(void,
OnDecoderInfoChanged,
(const VideoDecoder::DecoderInfo&),
(override));
};
class TestEncodedFrame : public EncodedFrame {
public:
explicit TestEncodedFrame(int payload_type) {
_payloadType = payload_type;
SetPacketInfos(CreatePacketInfos(3));
}
void SetReceivedTime(Timestamp received_time) {
received_time_ = received_time;
}
int64_t ReceivedTime() const override { return received_time_.ms(); }
int64_t RenderTime() const override { return _renderTimeMs; }
private:
Timestamp received_time_ = Timestamp::Millis(0);
};
class VideoReceiver2Test : public ::testing::Test {
protected:
VideoReceiver2Test() {
receiver_.RegisterReceiveCallback(&receive_callback_);
}
void RegisterReceiveCodecSettings(
int payload_type,
VideoCodecType codec_type = kVideoCodecVP8) {
VideoDecoder::Settings settings;
settings.set_codec_type(codec_type);
settings.set_max_render_resolution({10, 10});
settings.set_number_of_cores(4);
receiver_.RegisterReceiveCodec(payload_type, settings);
}
test::ScopedKeyValueConfig field_trials_;
SimulatedClock clock_{Timestamp::Millis(1337)};
VCMTiming timing_{&clock_, field_trials_};
NiceMock<MockVCMReceiveCallback> receive_callback_;
VideoReceiver2 receiver_{&clock_, &timing_, field_trials_,
/*corruption_score_calculator=*/nullptr};
};
TEST_F(VideoReceiver2Test, RegisterExternalDecoder) {
constexpr int kPayloadType = 1;
ASSERT_FALSE(receiver_.IsExternalDecoderRegistered(kPayloadType));
// Register a decoder, check for correctness, then unregister and check again.
auto decoder = std::make_unique<NiceMock<MockVideoDecoder>>();
bool decoder_deleted = false;
EXPECT_CALL(*decoder, Destruct).WillOnce([&decoder_deleted] {
decoder_deleted = true;
});
receiver_.RegisterExternalDecoder(std::move(decoder), kPayloadType);
EXPECT_TRUE(receiver_.IsExternalDecoderRegistered(kPayloadType));
receiver_.RegisterExternalDecoder(nullptr, kPayloadType);
EXPECT_TRUE(decoder_deleted);
EXPECT_FALSE(receiver_.IsExternalDecoderRegistered(kPayloadType));
}
TEST_F(VideoReceiver2Test, RegisterReceiveCodecs) {
constexpr int kPayloadType = 1;
RegisterReceiveCodecSettings(kPayloadType);
TestEncodedFrame frame(kPayloadType);
// A decoder has not been registered yet, so an attempt to decode should fail.
EXPECT_EQ(receiver_.Decode(&frame), VCM_NO_CODEC_REGISTERED);
// Register a decoder that will accept the Decode operation.
auto decoder = std::make_unique<NiceMock<MockVideoDecoder>>();
EXPECT_CALL(*decoder, RegisterDecodeCompleteCallback)
.WillOnce(Return(WEBRTC_VIDEO_CODEC_OK));
EXPECT_CALL(*decoder, Decode(_, _)).WillOnce(Return(WEBRTC_VIDEO_CODEC_OK));
EXPECT_CALL(*decoder, Release).WillOnce(Return(WEBRTC_VIDEO_CODEC_OK));
// Register the decoder. Note that this moves ownership of the mock object
// to the `receiver_`.
receiver_.RegisterExternalDecoder(std::move(decoder), kPayloadType);
EXPECT_TRUE(receiver_.IsExternalDecoderRegistered(kPayloadType));
EXPECT_CALL(receive_callback_, OnIncomingPayloadType(kPayloadType));
EXPECT_CALL(receive_callback_, OnDecoderInfoChanged);
// Call `Decode`. This triggers the above call expectations.
EXPECT_EQ(receiver_.Decode(&frame), VCM_OK);
// Unregister the decoder and verify.
receiver_.RegisterExternalDecoder(nullptr, kPayloadType);
EXPECT_FALSE(receiver_.IsExternalDecoderRegistered(kPayloadType));
receiver_.DeregisterReceiveCodec(kPayloadType);
}
} // namespace
} // namespace webrtc
|