diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-08-13 00:20:28 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-08-13 00:20:28 +0200 |
| commit | 66cf5e6f9201183a15d325dd0d779fc7f53efc84 (patch) | |
| tree | 57b89082e1c919428af90ff96a751d588f3d4079 /src/lib/ffmpeg_encoder.h | |
| parent | 19e47294d1de485a12dccf2c25bec0c8144049e8 (diff) | |
Some missing override statements.
Diffstat (limited to 'src/lib/ffmpeg_encoder.h')
| -rw-r--r-- | src/lib/ffmpeg_encoder.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ffmpeg_encoder.h b/src/lib/ffmpeg_encoder.h index 710364b01..f450c8022 100644 --- a/src/lib/ffmpeg_encoder.h +++ b/src/lib/ffmpeg_encoder.h @@ -42,11 +42,11 @@ public: int x264_crf ); - void go (); + void go () override; - boost::optional<float> current_rate () const; - Frame frames_done () const; - bool finishing () const { + boost::optional<float> current_rate () const override; + Frame frames_done () const override; + bool finishing () const override { return false; } |
