This commit is contained in:
Maxim Devaev
2022-11-19 04:21:37 +03:00
parent 7335a5d2df
commit 5bf8c97a1c
2 changed files with 3 additions and 3 deletions

View File

@@ -38,7 +38,7 @@
} }
#define US_ONCE(...) { \ #define US_ONCE(...) { \
const unsigned m_reported = __LINE__; \ const int m_reported = __LINE__; \
if (m_reported != once) { \ if (m_reported != once) { \
__VA_ARGS__; \ __VA_ARGS__; \
once = m_reported; \ once = m_reported; \

View File

@@ -118,7 +118,7 @@ static void *_video_sink_thread(UNUSED void *arg) {
atomic_store(&_g_video_sink_tid_created, true); atomic_store(&_g_video_sink_tid_created, true);
uint64_t frame_id = 0; uint64_t frame_id = 0;
unsigned once = 0; int once = 0;
while (!_STOP) { while (!_STOP) {
if (!_HAS_WATCHERS) { if (!_HAS_WATCHERS) {
@@ -181,7 +181,7 @@ static void *_audio_thread(UNUSED void *arg) {
assert(_g_config->audio_dev_name != NULL); assert(_g_config->audio_dev_name != NULL);
assert(_g_config->tc358743_dev_path != NULL); assert(_g_config->tc358743_dev_path != NULL);
unsigned once = 0; int once = 0;
while (!_STOP) { while (!_STOP) {
if (!_HAS_WATCHERS) { if (!_HAS_WATCHERS) {