summaryrefslogtreecommitdiff
path: root/src/lib/j2k_encoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-07-08 00:20:15 +0200
committerCarl Hetherington <cth@carlh.net>2024-01-28 02:01:57 +0100
commitb054a6fe8359d91ed6afd5a250abd766cfafa196 (patch)
tree9259fe00b1f7fec6df0ae04d58896df61f1ea8ee /src/lib/j2k_encoder.h
parentd76a9783fcc97a8a833ae060f70b12c144994651 (diff)
Formatting, variable name tidying and some const correctness.
Diffstat (limited to 'src/lib/j2k_encoder.h')
-rw-r--r--src/lib/j2k_encoder.h8
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;
};