summaryrefslogtreecommitdiff
path: root/src/lib/transcoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/transcoder.h')
-rw-r--r--src/lib/transcoder.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/transcoder.h b/src/lib/transcoder.h
index 37710d883..413b4d9be 100644
--- a/src/lib/transcoder.h
+++ b/src/lib/transcoder.h
@@ -41,8 +41,10 @@ public:
virtual void go () = 0;
- virtual float current_encoding_rate () const = 0;
- virtual int video_frames_enqueued () const = 0;
+ /** @return the current frame rate over the last short while */
+ virtual float current_rate () const = 0;
+ /** @return the number of frames that are done */
+ virtual Frame frames_done () const = 0;
virtual bool finishing () const = 0;
protected: