diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-11-04 15:58:22 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-11-04 15:58:22 +0000 |
| commit | 4fb0a5ab9eebc0f07981edc3a6813102520b8233 (patch) | |
| tree | 4651bda7e99e3214ce5af2a21e33141d7f308e4a /src/lib/ab_transcoder.h | |
| parent | c4362a7aa94d9340e38021a67a85635fc6cd4f7d (diff) | |
Various work on range setting.
Diffstat (limited to 'src/lib/ab_transcoder.h')
| -rw-r--r-- | src/lib/ab_transcoder.h | 5 |
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; }; |
