]> git.sesse.net Git - nageru/blobdiff - nageru/decklink_output.h
Newer drivers can seemingly send completions out-of-order on shutdown, so adjust...
[nageru] / nageru / decklink_output.h
index 8213f498a9d0677df7fe77b928acc7dce8951825..f008dc3b32bec8f0c1aba542c4d3de3a8167b047 100644 (file)
@@ -12,6 +12,7 @@
 #include <mutex>
 #include <queue>
 #include <thread>
+#include <unordered_set>
 #include <vector>
 
 #include "DeckLinkAPI.h"
@@ -38,6 +39,7 @@ class QSurface;
 class DeckLinkOutput : public IDeckLinkVideoOutputCallback {
 public:
        DeckLinkOutput(movit::ResourcePool *resource_pool, QSurface *surface, unsigned width, unsigned height, unsigned card_index);
+       ~DeckLinkOutput();
 
        // The IDecklinkInput argument is to work around a bug
        // in the 11.7 and newer drivers against older SDKs,
@@ -138,7 +140,7 @@ private:
        std::mutex frame_queue_mutex;
        std::queue<std::unique_ptr<Frame>> pending_video_frames;  // Under <frame_queue_mutex>.
        std::queue<std::unique_ptr<Frame>> frame_freelist;  // Under <frame_queue_mutex>.
-       std::deque<Frame *> scheduled_frames;  // Owned by the driver, so no unique_ptr. Under <frame_queue_mutex>.
+       std::unordered_set<Frame *> scheduled_frames;  // Owned by the driver, so no unique_ptr. Under <frame_queue_mutex>.
 
        std::condition_variable frame_queues_changed;
        bool playback_initiated = false, playback_started = false;