summaryrefslogtreecommitdiff
path: root/src/lib/decoder.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/decoder.cc')
-rw-r--r--src/lib/decoder.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/lib/decoder.cc b/src/lib/decoder.cc
index 2308bbd98..637e0ddb2 100644
--- a/src/lib/decoder.cc
+++ b/src/lib/decoder.cc
@@ -21,15 +21,11 @@
* @brief Parent class for decoders of content.
*/
-#include <iostream>
#include "film.h"
-#include "exceptions.h"
-#include "util.h"
#include "decoder.h"
#include "i18n.h"
-using std::string;
using boost::shared_ptr;
/** @param f Film.
@@ -40,10 +36,3 @@ Decoder::Decoder (shared_ptr<const Film> f)
{
_film_connection = f->Changed.connect (bind (&Decoder::film_changed, this, _1));
}
-
-/** @return true on error */
-bool
-Decoder::seek (Time)
-{
- throw DecodeError (N_("decoder does not support seek"));
-}