Skip to content

Commit

Permalink
Merge pull request #735 from awjackson/fixbuild
Browse files Browse the repository at this point in the history
Fix Linux build
  • Loading branch information
thor2016 authored May 29, 2024
2 parents 14df08d + d94157e commit c919de0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/drivers/Qt/AviRecord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ extern "C"
static gwavi_t *gwavi = NULL;
static bool recordEnable = false;
static bool recordAudio = true;
static std::atomic<int> vbufHead = 0;
static std::atomic<int> vbufTail = 0;
static std::atomic<int> vbufHead(0);
static std::atomic<int> vbufTail(0);
static constexpr int vbufSize = 1024 * 1024 * 64;
static std::atomic<int> abufHead = 0;
static std::atomic<int> abufTail = 0;
static std::atomic<int> abufHead(0);
static std::atomic<int> abufTail(0);
static constexpr int abufSize = 256 * 1024;
static uint32_t *rawVideoBuf = NULL;
static int16_t *rawAudioBuf = NULL;
Expand Down

0 comments on commit c919de0

Please sign in to comment.