aboutsummaryrefslogtreecommitdiffstats
path: root/test/FakeDecoderAPI.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/FakeDecoderAPI.hxx')
-rw-r--r--test/FakeDecoderAPI.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/FakeDecoderAPI.hxx b/test/FakeDecoderAPI.hxx
index 134e77117..6f1933977 100644
--- a/test/FakeDecoderAPI.hxx
+++ b/test/FakeDecoderAPI.hxx
@@ -21,8 +21,13 @@
#define FAKE_DECODER_API_HXX
#include "check.h"
+#include "thread/Mutex.hxx"
+#include "thread/Cond.hxx"
struct Decoder {
+ Mutex mutex;
+ Cond cond;
+
bool initialized;
Decoder()