Squashed 'external/toxcore/c-toxcore/' changes from 1701691d5..640e6cace
640e6cace fix(toxav): remove extra copy of video frame on encode Tested and works, but there might be alignment issues and other stuff. 6f7f51554 chore(toxav): use realtime deadline for vp8 encoder Technically all this does is choose a quality based on frame duration, which we always set to 1, and as such is always realtime. (In same timebase as pts, which we use as a frame counter...) 5047ae5a2 chore: make the source tarball exhibit the old behavior 14804a4b8 chore: Fix sonar-scan CI action. e2db7d946 cleanup: Exclude lan_discovery test from running on macos, instead of excluding it from the project. 3accade67 chore: Fix CI, disabling some tests that no longer run on CI. ef8d767e6 cleanup: Fix comment formatting errors. 34ec822da cleanup: Fix some clang-19 format warnings. 40b3f0b46 refactor: Use clang's nullability qualifiers instead of attributes. f81e30679 refactor: Use per-parameter nullability annotations. REVERT: 1701691d5 chore(toxav): use realtime deadline for vp8 encoder Technically all this does is choose a quality based on frame duration, which we always set to 1, and as such is always realtime. (In same timebase as pts, which we use as a frame counter...) REVERT: a87505867 fix(toxav): remove extra copy of video frame on encode Tested and works, but there might be alignment issues and other stuff. git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 640e6cace81b4412c45977b94eb9c41e53c54035
This commit is contained in:
@@ -10,8 +10,8 @@
|
||||
#include "logger.h"
|
||||
|
||||
/** state load/save */
|
||||
int state_load(const Logger *log, state_load_cb *state_load_callback, void *outer,
|
||||
const uint8_t *data, uint32_t length, uint16_t cookie_inner)
|
||||
int state_load(const Logger *_Nonnull log, state_load_cb *_Nonnull state_load_callback, void *_Nonnull outer,
|
||||
const uint8_t *_Nonnull data, uint32_t length, uint16_t cookie_inner)
|
||||
{
|
||||
if (state_load_callback == nullptr || data == nullptr) {
|
||||
LOGGER_ERROR(log, "state_load() called with invalid args.");
|
||||
@@ -70,7 +70,7 @@ int state_load(const Logger *log, state_load_cb *state_load_callback, void *oute
|
||||
return 0;
|
||||
}
|
||||
|
||||
uint8_t *state_write_section_header(uint8_t *data, uint16_t cookie_type, uint32_t len, uint32_t section_type)
|
||||
uint8_t *_Nonnull state_write_section_header(uint8_t *_Nonnull data, uint16_t cookie_type, uint32_t len, uint32_t section_type)
|
||||
{
|
||||
host_to_lendian_bytes32(data, len);
|
||||
data += sizeof(uint32_t);
|
||||
@@ -93,7 +93,7 @@ uint16_t host_to_lendian16(uint16_t host)
|
||||
return lendian_to_host16(host);
|
||||
}
|
||||
|
||||
void host_to_lendian_bytes64(uint8_t *dest, uint64_t num)
|
||||
void host_to_lendian_bytes64(uint8_t *_Nonnull dest, uint64_t num)
|
||||
{
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
num = ((num << 8) & 0xFF00FF00FF00FF00) | ((num >> 8) & 0xFF00FF00FF00FF);
|
||||
@@ -103,7 +103,7 @@ void host_to_lendian_bytes64(uint8_t *dest, uint64_t num)
|
||||
memcpy(dest, &num, sizeof(uint64_t));
|
||||
}
|
||||
|
||||
void lendian_bytes_to_host64(uint64_t *dest, const uint8_t *lendian)
|
||||
void lendian_bytes_to_host64(uint64_t *_Nonnull dest, const uint8_t *_Nonnull lendian)
|
||||
{
|
||||
uint64_t d;
|
||||
memcpy(&d, lendian, sizeof(uint64_t));
|
||||
@@ -115,7 +115,7 @@ void lendian_bytes_to_host64(uint64_t *dest, const uint8_t *lendian)
|
||||
*dest = d;
|
||||
}
|
||||
|
||||
void host_to_lendian_bytes32(uint8_t *dest, uint32_t num)
|
||||
void host_to_lendian_bytes32(uint8_t *_Nonnull dest, uint32_t num)
|
||||
{
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
num = ((num << 8) & 0xFF00FF00) | ((num >> 8) & 0xFF00FF);
|
||||
@@ -124,7 +124,7 @@ void host_to_lendian_bytes32(uint8_t *dest, uint32_t num)
|
||||
memcpy(dest, &num, sizeof(uint32_t));
|
||||
}
|
||||
|
||||
void lendian_bytes_to_host32(uint32_t *dest, const uint8_t *lendian)
|
||||
void lendian_bytes_to_host32(uint32_t *_Nonnull dest, const uint8_t *_Nonnull lendian)
|
||||
{
|
||||
uint32_t d;
|
||||
memcpy(&d, lendian, sizeof(uint32_t));
|
||||
@@ -135,7 +135,7 @@ void lendian_bytes_to_host32(uint32_t *dest, const uint8_t *lendian)
|
||||
*dest = d;
|
||||
}
|
||||
|
||||
void host_to_lendian_bytes16(uint8_t *dest, uint16_t num)
|
||||
void host_to_lendian_bytes16(uint8_t *_Nonnull dest, uint16_t num)
|
||||
{
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
num = (num << 8) | (num >> 8);
|
||||
@@ -143,7 +143,7 @@ void host_to_lendian_bytes16(uint8_t *dest, uint16_t num)
|
||||
memcpy(dest, &num, sizeof(uint16_t));
|
||||
}
|
||||
|
||||
void lendian_bytes_to_host16(uint16_t *dest, const uint8_t *lendian)
|
||||
void lendian_bytes_to_host16(uint16_t *_Nonnull dest, const uint8_t *_Nonnull lendian)
|
||||
{
|
||||
uint16_t d;
|
||||
memcpy(&d, lendian, sizeof(uint16_t));
|
||||
|
Reference in New Issue
Block a user