diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-07-06 23:09:08 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-10-18 13:46:37 +0200 |
| commit | 60e83cc208083b7759fded7302c193d34c02cb1a (patch) | |
| tree | cbd2223a9dabf4751ad7fa9629633577aadec98d /src/lib/encoder.h | |
| parent | 6eba9bffa2371aa71b8981b1a7bcde0448d7623e (diff) | |
Patch from Aaron Boxer adding initial support for GPU-powered J2K encoding via his tool "grok".
Diffstat (limited to 'src/lib/encoder.h')
| -rw-r--r-- | src/lib/encoder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/encoder.h b/src/lib/encoder.h index 9b67720d3..f921fcb51 100644 --- a/src/lib/encoder.h +++ b/src/lib/encoder.h @@ -58,6 +58,8 @@ public: /** @return the number of frames that are done */ virtual Frame frames_done () const = 0; virtual bool finishing () const = 0; + virtual void pause(void) {} + virtual void resume(void) {} protected: std::shared_ptr<const Film> _film; |
