Add H.264 export.
[dcpomatic.git] / src / lib / transcoder.h
index 37710d8836fc6c99e65369a2e5ae4d21eadd5dc7..413b4d9bedec73de666b3b01a54d71e75c209e75 100644 (file)
@@ -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: