Remove A/B mode for now.
[dcpomatic.git] / src / lib / decoder.h
index cc4c87373616e6f4f469e4f3ce9018b4ee5aa929..391b9d19aa17380289db9f310f1174e9d2eaee81 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
  *  @brief Parent class for decoders of content.
  */
 
-#ifndef DVDOMATIC_DECODER_H
-#define DVDOMATIC_DECODER_H
+#ifndef DCPOMATIC_DECODER_H
+#define DCPOMATIC_DECODER_H
 
 #include <vector>
 #include <string>
 #include <stdint.h>
 #include <boost/shared_ptr.hpp>
 #include <boost/signals2.hpp>
-#include "util.h"
-#include "stream.h"
 #include "video_source.h"
 #include "audio_source.h"
 #include "film.h"
-#include "options.h"
 
-class Job;
 class Image;
 class Log;
 class DelayLine;
@@ -46,34 +42,48 @@ class FilterGraph;
 
 /** @class Decoder.
  *  @brief Parent class for decoders of content.
- *
- *  These classes can be instructed run through their content (by
- *  calling ::go), and they emit signals when video or audio data is
- *  ready for something else to process.
  */
 class Decoder
 {
 public:
-       Decoder (boost::shared_ptr<Film>, DecodeOptions, Job *);
+       Decoder (boost::shared_ptr<const Film>);
        virtual ~Decoder () {}
 
-       virtual bool pass () = 0;
-       virtual bool seek (double);
-       virtual bool seek_to_last ();
+       /** Perform one decode pass of the content, which may or may not
+        *  cause the object to emit some data.
+        */
+       virtual void pass () = 0;
 
-       boost::signals2::signal<void()> OutputChanged;
+       /** Seek this decoder to as close as possible to some time,
+        *  expressed relative to our source's start.
+        *  @param t Time.
+        *  @param a true to try hard to be accurate, otherwise false.
+        */
+       virtual void seek (Time) = 0;
+
+       /** Seek back one video frame */
+       virtual void seek_back () = 0;
+
+       /** Seek forward one video frame */
+       virtual void seek_forward () = 0;
+
+       /** @return Approximate time of the next content that we will emit,
+        *  expressed relative to the start of our source.
+        */
+       virtual Time position () const = 0;
+
+       virtual bool done () const = 0;
 
 protected:
-       /** our Film */
-       boost::shared_ptr<Film> _film;
-       /** our decode options */
-       DecodeOptions _opt;
-       /** associated Job, or 0 */
-       Job* _job;
+
+       /** The Film that we are decoding in */
+       boost::weak_ptr<const Film> _film;
 
 private:
+       /** This will be called when our Film emits Changed */
        virtual void film_changed (Film::Property) {}
-       
+
+       /** Connection to our Film */
        boost::signals2::scoped_connection _film_connection;
 };