diff options
Diffstat (limited to 'src/input/Edi.h')
-rw-r--r-- | src/input/Edi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input/Edi.h b/src/input/Edi.h index 7b3dc04..66ff682 100644 --- a/src/input/Edi.h +++ b/src/input/Edi.h @@ -71,7 +71,8 @@ class Edi : public InputBase { EdiDecoder::STIDecoder m_sti_decoder; std::thread m_thread; std::atomic<bool> m_running = ATOMIC_VAR_INIT(false); - ThreadsafeQueue<std::vector<uint8_t> > m_frames; + ThreadsafeQueue<EdiDecoder::sti_frame_t> m_frames; + EdiDecoder::sti_frame_t m_pending_sti_frame; bool m_is_prebuffering = true; |