summaryrefslogtreecommitdiff
path: root/src/lib/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/encoder.h
parentd76a9783fcc97a8a833ae060f70b12c144994651 (diff)
Formatting, variable name tidying and some const correctness.
Diffstat (limited to 'src/lib/encoder.h')
-rw-r--r--src/lib/encoder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/encoder.h b/src/lib/encoder.h
index f921fcb51..aeaf7f620 100644
--- a/src/lib/encoder.h
+++ b/src/lib/encoder.h
@@ -58,8 +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) {}
+ virtual void pause() {}
+ virtual void resume() {}
protected:
std::shared_ptr<const Film> _film;