Allow repeat-frame to work with 3D.
[dcpomatic.git] / src / lib / cross.h
index 641900bc47922464b3447a59581c0c33f4faef91..02839eb68a5678bfbe2bed0fc98fd432720c6a73 100644 (file)
@@ -35,6 +35,7 @@
 #endif
 
 class Log;
+struct AVIOContext;
 
 void dcpomatic_sleep (int);
 extern std::string cpu_info ();
@@ -48,11 +49,13 @@ extern boost::filesystem::path shared_path ();
 extern FILE * fopen_boost (boost::filesystem::path, std::string);
 extern int dcpomatic_fseek (FILE *, int64_t, int);
 extern void start_batch_converter (boost::filesystem::path dcpomatic);
+extern uint64_t thread_id ();
+extern int avio_open_boost (AVIOContext** s, boost::filesystem::path file, int flags);
 
 /** @class Waker
  *  @brief A class which tries to keep the computer awake on various operating systems.
  *
- *  Create a Waker to prevent sleep, and call ::nudge every so often (every minute or so).
+ *  Create a Waker to prevent sleep, and call nudge() every so often (every minute or so).
  *  Destroy the Waker to allow sleep again.
  */
 class Waker