mirror of
https://github.com/pikvm/ustreamer.git
synced 2026-02-18 02:55:46 +00:00
int once
This commit is contained in:
parent
7335a5d2df
commit
5bf8c97a1c
@ -38,7 +38,7 @@
|
||||
}
|
||||
|
||||
#define US_ONCE(...) { \
|
||||
const unsigned m_reported = __LINE__; \
|
||||
const int m_reported = __LINE__; \
|
||||
if (m_reported != once) { \
|
||||
__VA_ARGS__; \
|
||||
once = m_reported; \
|
||||
|
||||
@ -118,7 +118,7 @@ static void *_video_sink_thread(UNUSED void *arg) {
|
||||
atomic_store(&_g_video_sink_tid_created, true);
|
||||
|
||||
uint64_t frame_id = 0;
|
||||
unsigned once = 0;
|
||||
int once = 0;
|
||||
|
||||
while (!_STOP) {
|
||||
if (!_HAS_WATCHERS) {
|
||||
@ -181,7 +181,7 @@ static void *_audio_thread(UNUSED void *arg) {
|
||||
assert(_g_config->audio_dev_name != NULL);
|
||||
assert(_g_config->tc358743_dev_path != NULL);
|
||||
|
||||
unsigned once = 0;
|
||||
int once = 0;
|
||||
|
||||
while (!_STOP) {
|
||||
if (!_HAS_WATCHERS) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user