Merge commit '596ea37298252ce239cfb6fd9c0f459574bd54e3'

This commit is contained in:
Green Sky
2025-11-04 21:18:05 +01:00
117 changed files with 1409 additions and 697 deletions

View File

@@ -68,6 +68,19 @@ cc_library(
],
)
cc_test(
name = "rtp_test",
size = "small",
srcs = ["rtp_test.cc"],
deps = [
":toxav",
"//c-toxcore/toxcore:crypto_core",
"//c-toxcore/toxcore:os_random",
"@com_google_googletest//:gtest",
"@com_google_googletest//:gtest_main",
],
)
sh_library(
name = "cimple_files",
srcs = glob([

View File

@@ -3,6 +3,7 @@
#include <gtest/gtest.h>
#include "../toxcore/crypto_core.h"
#include "../toxcore/os_random.h"
namespace {

View File

@@ -77,7 +77,7 @@ typedef struct DecodeTimeStats {
} DecodeTimeStats;
struct ToxAV {
const Memory *mem;
const struct Tox_Memory *mem;
Logger *log;
Tox *tox;
MSISession *msi;