#include "remoting/codec/video_encoder_vpx.h"
#include <stdint.h>
#include <limits>
#include <memory>
#include <vector>
#include "base/compiler_specific.h"
#include "remoting/codec/codec_test.h"
#include "remoting/proto/video.pb.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
namespace remoting {
const uint32_t kBlueColor = 0x0000ff;
const uint32_t kGreenColor = 0x00ff00;
static std::unique_ptr<webrtc::DesktopFrame> CreateTestFrame(
const webrtc::DesktopSize& frame_size) {
auto frame = std::make_unique<webrtc::BasicDesktopFrame>(frame_size,
webrtc::FOURCC_ARGB);
for (int x = 0; x < frame_size.width(); ++x) {
for (int y = 0; y < frame_size.height(); ++y) {
uint8_t* pixel_u8 =
UNSAFE_TODO(frame->data() + (y * frame->stride()) +
(x * webrtc::DesktopFrame::kBytesPerPixel));
*(reinterpret_cast<uint32_t*>(pixel_u8)) =
((x + y) & 1) ? kGreenColor : kBlueColor;
}
}
frame->mutable_updated_region()->SetRect(
webrtc::DesktopRect::MakeSize(frame_size));
return frame;
}
TEST(VideoEncoderVpxTest, Vp8) {
std::unique_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP8());
TestVideoEncoder(encoder.get(), false);
}
TEST(VideoEncoderVpxTest, Vp9) {
std::unique_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP9());
TestVideoEncoder(encoder.get(), false);
}
TEST(VideoEncoderVpxTest, Vp9LossyColorSwitching) {
std::unique_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP9());
webrtc::DesktopSize frame_size(100, 100);
std::unique_ptr<webrtc::DesktopFrame> frame(CreateTestFrame(frame_size));
encoder->SetLosslessColor(false);
std::unique_ptr<VideoPacket> lossy_packet = encoder->Encode(*frame);
encoder->SetLosslessColor(true);
std::unique_ptr<VideoPacket> lossless_packet = encoder->Encode(*frame);
encoder->SetLosslessColor(false);
lossy_packet = encoder->Encode(*frame);
}
TEST(VideoEncoderVpxTest, Vp8IgnoreLossy) {
std::unique_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP8());
webrtc::DesktopSize frame_size(100, 100);
std::unique_ptr<webrtc::DesktopFrame> frame(CreateTestFrame(frame_size));
encoder->SetLosslessColor(true);
std::unique_ptr<VideoPacket> packet = encoder->Encode(*frame);
EXPECT_TRUE(packet);
}
TEST(VideoEncoderVpxTest, Vp8SizeChangeNoCrash) {
webrtc::DesktopSize frame_size(100, 100);
std::unique_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP8());
std::unique_ptr<webrtc::DesktopFrame> frame(CreateTestFrame(frame_size));
std::unique_ptr<VideoPacket> packet = encoder->Encode(*frame);
EXPECT_TRUE(packet);
frame_size.set(frame_size.width() * 2, frame_size.height() * 2);
frame = CreateTestFrame(frame_size);
packet = encoder->Encode(*frame);
EXPECT_TRUE(packet);
}
TEST(VideoEncoderVpxTest, Vp9SizeChangeNoCrash) {
webrtc::DesktopSize frame_size(100, 100);
std::unique_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP9());
std::unique_ptr<webrtc::DesktopFrame> frame(CreateTestFrame(frame_size));
std::unique_ptr<VideoPacket> packet = encoder->Encode(*frame);
EXPECT_TRUE(packet);
frame_size.set(frame_size.width() * 2, frame_size.height() * 2);
frame = CreateTestFrame(frame_size);
packet = encoder->Encode(*frame);
EXPECT_TRUE(packet);
}
TEST(VideoEncoderVpxTest, DpiPropagation) {
webrtc::DesktopSize frame_size(32, 32);
std::unique_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP8());
std::unique_ptr<webrtc::DesktopFrame> frame(CreateTestFrame(frame_size));
frame->set_dpi(webrtc::DesktopVector(96, 97));
std::unique_ptr<VideoPacket> packet = encoder->Encode(*frame);
EXPECT_EQ(packet->format().x_dpi(), 96);
EXPECT_EQ(packet->format().y_dpi(), 97);
}
TEST(VideoEncoderVpxTest, Vp8EncodeUnchangedFrame) {
std::unique_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP8());
TestVideoEncoderEmptyFrames(encoder.get(), 0);
}
TEST(VideoEncoderVpxTest, Vp9LossyUnchangedFrame) {
std::unique_ptr<VideoEncoderVpx> encoder(VideoEncoderVpx::CreateForVP9());
TestVideoEncoderEmptyFrames(encoder.get(), 20);
}
}