forked from Green-Sky/tomato
c9cdae001 fix(toxav): remove extra copy of video frame on encode 4f6d4546b test: Improve the fake network library. a2581e700 refactor(toxcore): generate `Friend_Request` and `Dht_Nodes_Response` 2aaa11770 refactor(toxcore): use Tox_Memory in generated events 5c367452b test(toxcore): fix incorrect mutex in tox_scenario_get_time 8f92e710f perf: Add a timed limit of number of cookie requests. 695b6417a test: Add some more simulated network support. 815ae9ce9 test(toxcore): fix thread-safety in scenario framework 6d85c754e test(toxcore): add unit tests for net_crypto 9c22e79cc test(support): add SimulatedEnvironment for deterministic testing f34fcb195 chore: Update windows Dockerfile to debian stable (trixie). ece0e8980 fix(group_moderation): allow validating unsorted sanction list signatures a4fa754d7 refactor: rename struct Packet to struct Net_Packet d6f330f85 cleanup: Fix some warnings from coverity. e206bffa2 fix(group_chats): fix sync packets reverting topics 0e4715598 test: Add new scenario testing framework. 668291f44 refactor(toxcore): decouple Network_Funcs from sockaddr via IP_Port fc4396cef fix: potential division by zero in toxav and unsafe hex parsing 8e8b352ab refactor: Add nullable annotations to struct members. 7740bb421 refactor: decouple net_crypto from DHT 1936d4296 test: add benchmark for toxav audio and video 46bfdc2df fix: correct printf format specifiers for unsigned integers REVERT: 1828c5356 fix(toxav): remove extra copy of video frame on encode git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: c9cdae001341e701fca980c9bb9febfeb95d2902
172 lines
5.3 KiB
C++
172 lines
5.3 KiB
C++
#include "av_test_support.hh"
|
|
|
|
#include <algorithm>
|
|
#include <cmath>
|
|
#include <cstring>
|
|
|
|
#include "../toxcore/os_memory.h"
|
|
|
|
// Mock Time
|
|
uint64_t mock_time_cb(void *ud) { return static_cast<MockTime *>(ud)->t; }
|
|
|
|
// RTP Mock
|
|
int RtpMock::send_packet(void *user_data, const uint8_t *data, uint16_t length)
|
|
{
|
|
auto *self = static_cast<RtpMock *>(user_data);
|
|
if (self->capture_packets) {
|
|
if (self->store_last_packet_only) {
|
|
if (self->captured_packets.empty()) {
|
|
self->captured_packets.emplace_back(data, data + length);
|
|
} else {
|
|
self->captured_packets[0].assign(data, data + length);
|
|
}
|
|
} else {
|
|
self->captured_packets.push_back(std::vector<uint8_t>(data, data + length));
|
|
}
|
|
}
|
|
if (self->auto_forward && self->recv_session) {
|
|
rtp_receive_packet(self->recv_session, data, length);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int RtpMock::audio_cb(const Mono_Time *mono_time, void *cs, RTPMessage *msg)
|
|
{
|
|
return ac_queue_message(mono_time, cs, msg);
|
|
}
|
|
|
|
int RtpMock::video_cb(const Mono_Time *mono_time, void *cs, RTPMessage *msg)
|
|
{
|
|
return vc_queue_message(mono_time, cs, msg);
|
|
}
|
|
|
|
int RtpMock::noop_cb(const Mono_Time * /*mono_time*/, void * /*cs*/, RTPMessage *msg)
|
|
{
|
|
std::free(msg);
|
|
return 0;
|
|
}
|
|
|
|
// Audio Helpers
|
|
void fill_audio_frame(uint32_t sampling_rate, uint8_t channels, int frame_index,
|
|
size_t sample_count, std::vector<int16_t> &pcm)
|
|
{
|
|
const double pi = std::acos(-1.0);
|
|
double amplitude = 10000.0;
|
|
|
|
for (size_t i = 0; i < sample_count; ++i) {
|
|
double t = static_cast<double>(frame_index * sample_count + i) / sampling_rate;
|
|
// Linear frequency sweep from 50Hz to 440Hz over 1 second (50 frames)
|
|
// f(t) = 50 + 390t
|
|
// phi(t) = 2*pi * (50t + 195t^2)
|
|
double phi = 2.0 * pi * (50.0 * t + 195.0 * t * t);
|
|
int16_t val = static_cast<int16_t>(std::sin(phi) * amplitude);
|
|
for (uint8_t c = 0; c < channels; ++c) {
|
|
pcm[i * channels + c] = val;
|
|
}
|
|
}
|
|
}
|
|
|
|
void fill_silent_frame(uint8_t channels, size_t sample_count, std::vector<int16_t> &pcm)
|
|
{
|
|
for (size_t i = 0; i < sample_count * channels; ++i) {
|
|
// Very low amplitude white noise (simulating silence with background hiss)
|
|
pcm[i] = (std::rand() % 21) - 10;
|
|
}
|
|
}
|
|
|
|
AudioTestData::AudioTestData() = default;
|
|
AudioTestData::~AudioTestData() = default;
|
|
|
|
void AudioTestData::receive_frame(uint32_t friend_number, const int16_t *pcm, size_t sample_count,
|
|
uint8_t channels, uint32_t sampling_rate, void *user_data)
|
|
{
|
|
auto *self = static_cast<AudioTestData *>(user_data);
|
|
self->friend_number = friend_number;
|
|
self->last_pcm.assign(pcm, pcm + sample_count * channels);
|
|
self->sample_count = sample_count;
|
|
self->channels = channels;
|
|
self->sampling_rate = sampling_rate;
|
|
}
|
|
|
|
// Video Helpers
|
|
void fill_video_frame(uint16_t width, uint16_t height, int frame_index, std::vector<uint8_t> &y,
|
|
std::vector<uint8_t> &u, std::vector<uint8_t> &v)
|
|
{
|
|
// Background (dark gray)
|
|
std::fill(y.begin(), y.end(), 32);
|
|
std::fill(u.begin(), u.end(), 128);
|
|
std::fill(v.begin(), v.end(), 128);
|
|
|
|
// Moving square (light gray)
|
|
int sq_size = height / 4;
|
|
if (sq_size < 16)
|
|
sq_size = 16;
|
|
int x0 = (frame_index * 8) % (width - sq_size);
|
|
int y0 = (frame_index * 4) % (height - sq_size);
|
|
for (int r = 0; r < sq_size; ++r) {
|
|
for (int c = 0; c < sq_size; ++c) {
|
|
y[(y0 + r) * width + (x0 + c)] = 200;
|
|
}
|
|
}
|
|
}
|
|
|
|
double calculate_video_mse(uint16_t width, uint16_t height, int32_t ystride,
|
|
const std::vector<uint8_t> &y_recv, const std::vector<uint8_t> &y_orig)
|
|
{
|
|
if (y_recv.empty() || y_orig.size() != static_cast<size_t>(width) * height) {
|
|
return 1e10;
|
|
}
|
|
|
|
double mse = 0;
|
|
for (int r = 0; r < height; ++r) {
|
|
for (int c = 0; c < width; ++c) {
|
|
int diff = static_cast<int>(y_orig[r * width + c]) - y_recv[r * std::abs(ystride) + c];
|
|
mse += diff * diff;
|
|
}
|
|
}
|
|
return mse / (static_cast<size_t>(width) * height);
|
|
}
|
|
|
|
// Video Test Data Helper
|
|
VideoTestData::VideoTestData() = default;
|
|
VideoTestData::~VideoTestData() = default;
|
|
|
|
void VideoTestData::receive_frame(uint32_t friend_number, uint16_t width, uint16_t height,
|
|
const uint8_t *y, const uint8_t *u, const uint8_t *v, int32_t ystride, int32_t ustride,
|
|
int32_t vstride, void *user_data)
|
|
{
|
|
auto *self = static_cast<VideoTestData *>(user_data);
|
|
self->friend_number = friend_number;
|
|
self->width = width;
|
|
self->height = height;
|
|
self->ystride = ystride;
|
|
self->ustride = ustride;
|
|
self->vstride = vstride;
|
|
|
|
self->y.assign(y, y + static_cast<size_t>(std::abs(ystride)) * height);
|
|
self->u.assign(u, u + static_cast<size_t>(std::abs(ustride)) * (height / 2));
|
|
self->v.assign(v, v + static_cast<size_t>(std::abs(vstride)) * (height / 2));
|
|
}
|
|
|
|
double VideoTestData::calculate_mse(const std::vector<uint8_t> &y_orig) const
|
|
{
|
|
return calculate_video_mse(width, height, ystride, y, y_orig);
|
|
}
|
|
|
|
// Common Test Fixture
|
|
void AvTest::SetUp()
|
|
{
|
|
const Memory *mem = os_memory();
|
|
log = logger_new(mem);
|
|
tm.t = 1000;
|
|
mono_time = mono_time_new(mem, mock_time_cb, &tm);
|
|
mono_time_update(mono_time);
|
|
}
|
|
|
|
void AvTest::TearDown()
|
|
{
|
|
const Memory *mem = os_memory();
|
|
mono_time_free(mem, mono_time);
|
|
logger_kill(log);
|
|
}
|