Cleanup: use auto.
[dcpomatic.git] / src / lib / cpu_j2k_encoder_thread.h
1 #include "j2k_sync_encoder_thread.h"
2 #include <dcp/data.h>
3
4
5 class DCPVideo;
6
7
8 class CPUJ2KEncoderThread : public J2KSyncEncoderThread
9 {
10 public:
11         CPUJ2KEncoderThread(J2KEncoder& encoder);
12
13         void log_thread_start() const override;
14         std::shared_ptr<dcp::ArrayData> encode(DCPVideo const& frame) override;
15 };
16