summaryrefslogtreecommitdiff
path: root/src/lib/ab_transcoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-11-04 15:58:22 +0000
committerCarl Hetherington <cth@carlh.net>2012-11-04 15:58:22 +0000
commit4fb0a5ab9eebc0f07981edc3a6813102520b8233 (patch)
tree4651bda7e99e3214ce5af2a21e33141d7f308e4a /src/lib/ab_transcoder.h
parentc4362a7aa94d9340e38021a67a85635fc6cd4f7d (diff)
Various work on range setting.
Diffstat (limited to 'src/lib/ab_transcoder.h')
-rw-r--r--src/lib/ab_transcoder.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/ab_transcoder.h b/src/lib/ab_transcoder.h
index 7bf5dd4a1..a136fd270 100644
--- a/src/lib/ab_transcoder.h
+++ b/src/lib/ab_transcoder.h
@@ -24,6 +24,7 @@
#include <boost/shared_ptr.hpp>
#include <stdint.h>
+#include "util.h"
class Job;
class Encoder;
@@ -54,7 +55,7 @@ public:
void go ();
private:
- void process_video (boost::shared_ptr<Image>, int, boost::shared_ptr<Subtitle>, int);
+ void process_video (boost::shared_ptr<Image>, SourceFrame, boost::shared_ptr<Subtitle>, int);
boost::shared_ptr<Film> _film_a;
boost::shared_ptr<Film> _film_b;
@@ -63,6 +64,6 @@ private:
boost::shared_ptr<Encoder> _encoder;
boost::shared_ptr<Decoder> _da;
boost::shared_ptr<Decoder> _db;
- int _last_frame;
+ SourceFrame _last_frame;
boost::shared_ptr<Image> _image;
};