diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-07-08 00:20:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-11-29 21:19:55 +0100 |
| commit | 240a2e44f7ac22d43137e9d149013a8ba8a5b1d0 (patch) | |
| tree | f1d5729b6468b1893d0ae01f001b91d2a43cf1d7 /src/lib/j2k_encoder.h | |
| parent | 308ca5ab6641d3e460a12bd42e42e196c2150ff9 (diff) | |
Formatting, variable name tidying and some const correctness.
Diffstat (limited to 'src/lib/j2k_encoder.h')
| -rw-r--r-- | src/lib/j2k_encoder.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/j2k_encoder.h b/src/lib/j2k_encoder.h index a3ea9f3e8..1d31274b3 100644 --- a/src/lib/j2k_encoder.h +++ b/src/lib/j2k_encoder.h @@ -70,8 +70,8 @@ public: /** Called to pass a bit of video to be encoded as the next DCP frame */ void encode (std::shared_ptr<PlayerVideo> pv, dcpomatic::DCPTime time); - void pause(void); - void resume(void); + void pause(); + void resume(); /** Called when a processing run has finished */ void end (bool isFinal); @@ -111,8 +111,8 @@ private: boost::signals2::scoped_connection _server_found_connection; - grk_plugin::DcpomaticContext dcpomaticContext_; - grk_plugin::GrokContext *context_; + grk_plugin::DcpomaticContext _dcpomatic_context; + grk_plugin::GrokContext *_context; }; |
